Searched refs:nativeIndex (Results 1 - 8 of 8) sorted by relevance
/third_party/icu/icu4c/source/common/unicode/ |
H A D | utext.h | 426 * @param nativeIndex the native index of the character to be accessed. If the index points 433 utext_char32At(UText *ut, int64_t nativeIndex); 506 * @param nativeIndex Iteration index, in the native units of the text provider. 512 utext_next32From(UText *ut, int64_t nativeIndex); 525 * @param nativeIndex Iteration index in the native units of the text provider. 532 utext_previous32From(UText *ut, int64_t nativeIndex); 569 * @param nativeIndex the native unit index of the new iteration position. 573 utext_setNativeIndex(UText *ut, int64_t nativeIndex); 1010 * @param nativeIndex Requested index of the text to be accessed. 1024 UTextAccess(UText *ut, int64_t nativeIndex, UBoo [all...] |
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | utext.h | 426 * @param nativeIndex the native index of the character to be accessed. If the index points 433 utext_char32At(UText *ut, int64_t nativeIndex); 506 * @param nativeIndex Iteration index, in the native units of the text provider. 512 utext_next32From(UText *ut, int64_t nativeIndex); 525 * @param nativeIndex Iteration index in the native units of the text provider. 532 utext_previous32From(UText *ut, int64_t nativeIndex); 569 * @param nativeIndex the native unit index of the new iteration position. 573 utext_setNativeIndex(UText *ut, int64_t nativeIndex); 1010 * @param nativeIndex Requested index of the text to be accessed. 1024 UTextAccess(UText *ut, int64_t nativeIndex, UBoo [all...] |
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | utext.h | 426 * @param nativeIndex the native index of the character to be accessed. If the index points 433 utext_char32At(UText *ut, int64_t nativeIndex); 506 * @param nativeIndex Iteration index, in the native units of the text provider. 512 utext_next32From(UText *ut, int64_t nativeIndex); 525 * @param nativeIndex Iteration index in the native units of the text provider. 532 utext_previous32From(UText *ut, int64_t nativeIndex); 569 * @param nativeIndex the native unit index of the new iteration position. 573 utext_setNativeIndex(UText *ut, int64_t nativeIndex); 1010 * @param nativeIndex Requested index of the text to be accessed. 1024 UTextAccess(UText *ut, int64_t nativeIndex, UBoo [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | utxttest.cpp | 1448 int64_t nativeIndex = UTEXT_GETNATIVEINDEX(ut); in Ticket6847() local 1449 TEST_ASSERT(nativeIndex == 0); in Ticket6847() 1457 nativeIndex = UTEXT_GETNATIVEINDEX(ut); in Ticket6847() 1458 TEST_ASSERT(nativeIndex == count); in Ticket6847() 1461 nativeIndex = UTEXT_GETNATIVEINDEX(ut); in Ticket6847() 1462 TEST_ASSERT(nativeIndex == STRLEN); in Ticket6847()
|
H A D | regextst.cpp | 3322 static UBool utextOffsetToNative(UText *utext, int32_t unistrOffset, int32_t& nativeIndex) in utextOffsetToNative() argument 3336 nativeIndex = (int32_t)UTEXT_GETNATIVEINDEX(utext); in utextOffsetToNative()
|
/third_party/icu/icu4c/source/common/ |
H A D | utext.cpp | 242 utext_char32At(UText *ut, int64_t nativeIndex) { in utext_char32At() argument 246 if (nativeIndex>=ut->chunkNativeStart && nativeIndex < ut->chunkNativeStart + ut->nativeIndexingLimit) { in utext_char32At() 247 ut->chunkOffset = (int32_t)(nativeIndex - ut->chunkNativeStart); in utext_char32At() 255 utext_setNativeIndex(ut, nativeIndex); in utext_char32At() 256 if (nativeIndex>=ut->chunkNativeStart && ut->chunkOffset<ut->chunkLength) { in utext_char32At()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | utext.cpp | 245 utext_char32At(UText *ut, int64_t nativeIndex) { in utext_char32At() argument 249 if (nativeIndex>=ut->chunkNativeStart && nativeIndex < ut->chunkNativeStart + ut->nativeIndexingLimit) { in utext_char32At() 250 ut->chunkOffset = (int32_t)(nativeIndex - ut->chunkNativeStart); in utext_char32At() 258 utext_setNativeIndex(ut, nativeIndex); in utext_char32At() 259 if (nativeIndex>=ut->chunkNativeStart && ut->chunkOffset<ut->chunkLength) { in utext_char32At()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | utext.cpp | 242 utext_char32At(UText *ut, int64_t nativeIndex) { in utext_char32At() argument 246 if (nativeIndex>=ut->chunkNativeStart && nativeIndex < ut->chunkNativeStart + ut->nativeIndexingLimit) { in utext_char32At() 247 ut->chunkOffset = (int32_t)(nativeIndex - ut->chunkNativeStart); in utext_char32At() 255 utext_setNativeIndex(ut, nativeIndex); in utext_char32At() 256 if (nativeIndex>=ut->chunkNativeStart && ut->chunkOffset<ut->chunkLength) { in utext_char32At()
|
Completed in 28 milliseconds