/external/icu/icu4c/source/common/ |
D | ucharstrieiterator.cpp | 119 pos=branchNext(pos, length, errorCode); in next() 167 pos=branchNext(pos, node+1, errorCode); in next() 186 UCharsTrie::Iterator::branchNext(const UChar *pos, int32_t length, UErrorCode &errorCode) { in branchNext() function in UCharsTrie::Iterator
|
D | bytestrieiterator.cpp | 120 pos=branchNext(pos, length, errorCode); in next() 153 pos=branchNext(pos, node+1, errorCode); in next() 185 BytesTrie::Iterator::branchNext(const uint8_t *pos, int32_t length, UErrorCode &errorCode) { in branchNext() function in BytesTrie::Iterator
|
D | ucharstrie.cpp | 62 UCharsTrie::branchNext(const UChar *pos, int32_t length, int32_t uchar) { in branchNext() function in UCharsTrie 128 return branchNext(pos, node, uchar); in nextImpl() 239 UStringTrieResult result=branchNext(pos, node, uchar); in next()
|
D | bytestrie.cpp | 81 BytesTrie::branchNext(const uint8_t *pos, int32_t length, int32_t inByte) { in branchNext() function in BytesTrie 155 return branchNext(pos, node, inByte); in nextImpl() 269 UStringTrieResult result=branchNext(pos, node, inByte); in next()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | BytesTrie.java | 291 Result result=branchNext(pos, node, inByte&0xff); in next() 567 pos=branchNext(pos, length); in next() 600 pos=branchNext(pos, node+1); in next() 632 private int branchNext(int pos, int length) { in branchNext() method 754 private Result branchNext(int pos, int length, int inByte) { in branchNext() method 828 return branchNext(pos, node, inByte); in nextImpl()
|
D | CharsTrie.java | 258 Result result=branchNext(pos, node, inUnit); in next() 491 pos=branchNext(pos, length); in next() 540 pos=branchNext(pos, node+1); in next() 575 private int branchNext(int pos, int length) { in branchNext() method in CharsTrie.Iterator 708 private Result branchNext(int pos, int length, int inUnit) { in branchNext() method in CharsTrie 774 return branchNext(pos, node, inUnit); in nextImpl()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | BytesTrie.java | 307 Result result=branchNext(pos, node, inByte&0xff); in next() 597 pos=branchNext(pos, length); in next() 630 pos=branchNext(pos, node+1); in next() 663 private int branchNext(int pos, int length) { in branchNext() method 785 private Result branchNext(int pos, int length, int inByte) { in branchNext() method 859 return branchNext(pos, node, inByte); in nextImpl()
|
D | CharsTrie.java | 269 Result result=branchNext(pos, node, inUnit); in next() 513 pos=branchNext(pos, length); in next() 562 pos=branchNext(pos, node+1); in next() 598 private int branchNext(int pos, int length) { in branchNext() method in CharsTrie.Iterator 731 private Result branchNext(int pos, int length, int inUnit) { in branchNext() method in CharsTrie 797 return branchNext(pos, node, inUnit); in nextImpl()
|
/external/icu/icu4c/source/common/unicode/ |
D | bytestrie.h | 321 const uint8_t *branchNext(const uint8_t *pos, int32_t length, UErrorCode &errorCode); 407 UStringTrieResult branchNext(const uint8_t *pos, int32_t length, int32_t inByte);
|
D | ucharstrie.h | 339 const char16_t *branchNext(const char16_t *pos, int32_t length, UErrorCode &errorCode); 464 UStringTrieResult branchNext(const char16_t *pos, int32_t length, int32_t uchar);
|