HomeSort by relevance Sort by last modified time
    Searched refs:nativeIndex (Results 1 - 5 of 5) sorted by null

  /external/icu4c/common/unicode/
utext.h 443 * @param nativeIndex the native index of the character to be accessed. If the index points
450 utext_char32At(UText *ut, int64_t nativeIndex);
523 * @param nativeIndex Iteration index, in the native units of the text provider.
529 utext_next32From(UText *ut, int64_t nativeIndex);
542 * @param nativeIndex Iteration index in the native units of the text provider.
549 utext_previous32From(UText *ut, int64_t nativeIndex);
586 * @param nativeIndex the native unit index of the new iteration position.
590 utext_setNativeIndex(UText *ut, int64_t nativeIndex);
    [all...]
  /external/icu4c/common/
utext.cpp 235 utext_char32At(UText *ut, int64_t nativeIndex) {
239 if (nativeIndex>=ut->chunkNativeStart && nativeIndex < ut->chunkNativeStart + ut->nativeIndexingLimit) {
240 ut->chunkOffset = (int32_t)(nativeIndex - ut->chunkNativeStart);
248 utext_setNativeIndex(ut, nativeIndex);
249 if (nativeIndex>=ut->chunkNativeStart && ut->chunkOffset<ut->chunkLength) {
    [all...]
  /external/icu4c/test/intltest/
utxttest.cpp     [all...]
regextst.cpp     [all...]
  /external/icu4c/test/cintltst/
reapits.c     [all...]

Completed in 109 milliseconds