/external/icu/icu4c/source/common/ |
D | ucharstrieiterator.cpp | 117 pos=branchNext(pos, length, errorCode); in next() 165 pos=branchNext(pos, node+1, errorCode); in next() 184 UCharsTrie::Iterator::branchNext(const UChar *pos, int32_t length, UErrorCode &errorCode) { in branchNext() function in UCharsTrie::Iterator
|
D | bytestrieiterator.cpp | 118 pos=branchNext(pos, length, errorCode); in next() 152 pos=branchNext(pos, node+1, errorCode); in next() 180 BytesTrie::Iterator::branchNext(const uint8_t *pos, int32_t length, UErrorCode &errorCode) { in branchNext() function in BytesTrie::Iterator
|
D | ucharstrie.cpp | 60 UCharsTrie::branchNext(const UChar *pos, int32_t length, int32_t uchar) { in branchNext() function in UCharsTrie 126 return branchNext(pos, node, uchar); in nextImpl() 236 UStringTrieResult result=branchNext(pos, node, uchar); in next()
|
D | bytestrie.cpp | 79 BytesTrie::branchNext(const uint8_t *pos, int32_t length, int32_t inByte) { in branchNext() function in BytesTrie 153 return branchNext(pos, node, inByte); in nextImpl() 267 UStringTrieResult result=branchNext(pos, node, inByte); in next()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | BytesTrie.java | 305 Result result=branchNext(pos, node, inByte&0xff); in next() 592 pos=branchNext(pos, length); in next() 625 pos=branchNext(pos, node+1); in next() 657 private int branchNext(int pos, int length) { in branchNext() method 779 private Result branchNext(int pos, int length, int inByte) { in branchNext() method 853 return branchNext(pos, node, inByte); in nextImpl()
|
D | CharsTrie.java | 267 Result result=branchNext(pos, node, inUnit); in next() 508 pos=branchNext(pos, length); in next() 557 pos=branchNext(pos, node+1); in next() 592 private int branchNext(int pos, int length) { in branchNext() method in CharsTrie.Iterator 725 private Result branchNext(int pos, int length, int inUnit) { in branchNext() method in CharsTrie 791 return branchNext(pos, node, inUnit); in nextImpl()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | BytesTrie.java | 287 Result result=branchNext(pos, node, inByte&0xff); in next() 558 pos=branchNext(pos, length); in next() 591 pos=branchNext(pos, node+1); in next() 622 private int branchNext(int pos, int length) { in branchNext() method 744 private Result branchNext(int pos, int length, int inByte) { in branchNext() method 818 return branchNext(pos, node, inByte); in nextImpl()
|
D | CharsTrie.java | 255 Result result=branchNext(pos, node, inUnit); in next() 483 pos=branchNext(pos, length); in next() 532 pos=branchNext(pos, node+1); in next() 566 private int branchNext(int pos, int length) { in branchNext() method in CharsTrie.Iterator 699 private Result branchNext(int pos, int length, int inUnit) { in branchNext() method in CharsTrie 765 return branchNext(pos, node, inUnit); in nextImpl()
|
/external/icu/icu4c/source/common/unicode/ |
D | bytestrie.h | 319 const uint8_t *branchNext(const uint8_t *pos, int32_t length, UErrorCode &errorCode); 406 UStringTrieResult branchNext(const uint8_t *pos, int32_t length, int32_t inByte);
|
D | ucharstrie.h | 337 const UChar *branchNext(const UChar *pos, int32_t length, UErrorCode &errorCode); 462 UStringTrieResult branchNext(const UChar *pos, int32_t length, int32_t uchar);
|