Searched refs:nativeIndex (Results 1 – 5 of 5) sorted by relevance
/external/icu4c/common/unicode/ |
D | utext.h | 450 utext_char32At(UText *ut, int64_t nativeIndex); 529 utext_next32From(UText *ut, int64_t nativeIndex); 549 utext_previous32From(UText *ut, int64_t nativeIndex); 590 utext_setNativeIndex(UText *ut, int64_t nativeIndex); 1178 UTextAccess(UText *ut, int64_t nativeIndex, UBool forward); 1315 UTextMapNativeIndexToUTF16(const UText *ut, int64_t nativeIndex);
|
/external/icu4c/test/intltest/ |
D | utxttest.cpp | 1913 int64_t nativeIndex = UTEXT_GETNATIVEINDEX(ut); in Ticket6847() local 1914 TEST_ASSERT(nativeIndex == 0); in Ticket6847() 1922 nativeIndex = UTEXT_GETNATIVEINDEX(ut); in Ticket6847() 1923 TEST_ASSERT(nativeIndex == count); in Ticket6847() 1926 nativeIndex = UTEXT_GETNATIVEINDEX(ut); in Ticket6847() 1927 TEST_ASSERT(nativeIndex == STRLEN); in Ticket6847()
|
D | regextst.cpp | 3252 static UBool utextOffsetToNative(UText *utext, int32_t unistrOffset, int32_t& nativeIndex) in utextOffsetToNative() argument 3266 nativeIndex = (int32_t)UTEXT_GETNATIVEINDEX(utext); in utextOffsetToNative()
|
/external/icu4c/common/ |
D | utext.cpp | 235 utext_char32At(UText *ut, int64_t nativeIndex) { in utext_char32At() argument 239 …if (nativeIndex>=ut->chunkNativeStart && nativeIndex < ut->chunkNativeStart + ut->nativeIndexingLi… in utext_char32At() 240 ut->chunkOffset = (int32_t)(nativeIndex - ut->chunkNativeStart); in utext_char32At() 248 utext_setNativeIndex(ut, nativeIndex); in utext_char32At() 249 if (nativeIndex>=ut->chunkNativeStart && ut->chunkOffset<ut->chunkLength) { in utext_char32At()
|
/external/icu4c/test/cintltst/ |
D | reapits.c | 1750 int64_t nativeIndex; in TestUTextAPI() local 1757 nativeIndex = utext_getNativeIndex(actual); in TestUTextAPI() 1763 … utext_extract(actual, nativeIndex, nativeIndex + group_len, groupChars, len16+1, &shallowStatus); in TestUTextAPI()
|