mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
61
intl/icu/source/i18n/ufieldpositer.cpp
Normal file
61
intl/icu/source/i18n/ufieldpositer.cpp
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
// Copyright (C) 2016 and later: Unicode, Inc. and others.
|
||||
// License & terms of use: http://www.unicode.org/copyright.html
|
||||
/*
|
||||
*****************************************************************************************
|
||||
* Copyright (C) 2015, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*****************************************************************************************
|
||||
*/
|
||||
|
||||
#include "unicode/utypes.h"
|
||||
|
||||
#if !UCONFIG_NO_FORMATTING
|
||||
|
||||
#include "unicode/ufieldpositer.h"
|
||||
#include "unicode/fpositer.h"
|
||||
#include "unicode/localpointer.h"
|
||||
|
||||
U_NAMESPACE_USE
|
||||
|
||||
|
||||
U_CAPI UFieldPositionIterator* U_EXPORT2
|
||||
ufieldpositer_open(UErrorCode* status)
|
||||
{
|
||||
if (U_FAILURE(*status)) {
|
||||
return NULL;
|
||||
}
|
||||
FieldPositionIterator* fpositer = new FieldPositionIterator();
|
||||
if (fpositer == NULL) {
|
||||
*status = U_MEMORY_ALLOCATION_ERROR;
|
||||
}
|
||||
return (UFieldPositionIterator*)fpositer;
|
||||
}
|
||||
|
||||
|
||||
U_CAPI void U_EXPORT2
|
||||
ufieldpositer_close(UFieldPositionIterator *fpositer)
|
||||
{
|
||||
delete (FieldPositionIterator*)fpositer;
|
||||
}
|
||||
|
||||
|
||||
U_CAPI int32_t U_EXPORT2
|
||||
ufieldpositer_next(UFieldPositionIterator *fpositer,
|
||||
int32_t *beginIndex, int32_t *endIndex)
|
||||
{
|
||||
FieldPosition fp;
|
||||
int32_t field = -1;
|
||||
if (((FieldPositionIterator*)fpositer)->next(fp)) {
|
||||
field = fp.getField();
|
||||
if (beginIndex) {
|
||||
*beginIndex = fp.getBeginIndex();
|
||||
}
|
||||
if (endIndex) {
|
||||
*endIndex = fp.getEndIndex();
|
||||
}
|
||||
}
|
||||
return field;
|
||||
}
|
||||
|
||||
|
||||
#endif /* #if !UCONFIG_NO_FORMATTING */
|
||||
Loading…
Add table
Add a link
Reference in a new issue