Home
last modified time | relevance | path

Searched refs:nativeIndex (Results 1 – 6 of 6) sorted by relevance

/external/icu/libandroidicu/include/unicode/
Dutext.h452 utext_char32At(UText *ut, int64_t nativeIndex);
531 utext_next32From(UText *ut, int64_t nativeIndex);
551 utext_previous32From(UText *ut, int64_t nativeIndex);
592 utext_setNativeIndex(UText *ut, int64_t nativeIndex);
1041 UTextAccess(UText *ut, int64_t nativeIndex, UBool forward);
1178 UTextMapNativeIndexToUTF16(const UText *ut, int64_t nativeIndex);
/external/icu/icu4c/source/common/unicode/
Dutext.h452 utext_char32At(UText *ut, int64_t nativeIndex);
531 utext_next32From(UText *ut, int64_t nativeIndex);
551 utext_previous32From(UText *ut, int64_t nativeIndex);
592 utext_setNativeIndex(UText *ut, int64_t nativeIndex);
1041 UTextAccess(UText *ut, int64_t nativeIndex, UBool forward);
1178 UTextMapNativeIndexToUTF16(const UText *ut, int64_t nativeIndex);
/external/icu/icu4c/source/test/intltest/
Dutxttest.cpp1444 int64_t nativeIndex = UTEXT_GETNATIVEINDEX(ut); in Ticket6847() local
1445 TEST_ASSERT(nativeIndex == 0); in Ticket6847()
1453 nativeIndex = UTEXT_GETNATIVEINDEX(ut); in Ticket6847()
1454 TEST_ASSERT(nativeIndex == count); in Ticket6847()
1457 nativeIndex = UTEXT_GETNATIVEINDEX(ut); in Ticket6847()
1458 TEST_ASSERT(nativeIndex == STRLEN); in Ticket6847()
Dregextst.cpp3289 static UBool utextOffsetToNative(UText *utext, int32_t unistrOffset, int32_t& nativeIndex) in utextOffsetToNative() argument
3303 nativeIndex = (int32_t)UTEXT_GETNATIVEINDEX(utext); in utextOffsetToNative()
/external/icu/icu4c/source/common/
Dutext.cpp240 utext_char32At(UText *ut, int64_t nativeIndex) { in utext_char32At() argument
244 …if (nativeIndex>=ut->chunkNativeStart && nativeIndex < ut->chunkNativeStart + ut->nativeIndexingLi… in utext_char32At()
245 ut->chunkOffset = (int32_t)(nativeIndex - ut->chunkNativeStart); in utext_char32At()
253 utext_setNativeIndex(ut, nativeIndex); in utext_char32At()
254 if (nativeIndex>=ut->chunkNativeStart && ut->chunkOffset<ut->chunkLength) { in utext_char32At()
/external/icu/libandroidicu/static_shim/
Dshim.cpp2829 UChar32 utext_char32At_android(UText * ut, int64_t nativeIndex) { in utext_char32At_android() argument
2830 return utext_char32At(ut, nativeIndex); in utext_char32At_android()
2877 UChar32 utext_next32From_android(UText * ut, int64_t nativeIndex) { in utext_next32From_android() argument
2878 return utext_next32From(ut, nativeIndex); in utext_next32From_android()
2889 UChar32 utext_previous32From_android(UText * ut, int64_t nativeIndex) { in utext_previous32From_android() argument
2890 return utext_previous32From(ut, nativeIndex); in utext_previous32From_android()
2895 void utext_setNativeIndex_android(UText * ut, int64_t nativeIndex) { in utext_setNativeIndex_android() argument
2896 utext_setNativeIndex(ut, nativeIndex); in utext_setNativeIndex_android()