Searched defs:bytesTrie (Results 1 - 2 of 2) sorted by relevance

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DTrieMap.java116 private final BytesTrie bytesTrie; field in class:TrieMap.BytesTrieMap
119 private BytesTrieMap(BytesTrie bytesTrie, V[] intToValue, int size) { argument
121 this.bytesTrie = bytesTrie;
126 bytesTrie.reset();
128 return bytesTrie.current().hasValue() ? intToValue[bytesTrie.getValue()] : null;
137 result = limit == 1 ? bytesTrie.next(bytes[0]) : bytesTrie.next(bytes, 0, limit);
139 return result.hasValue() ? intToValue[bytesTrie
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTrieMap.java115 private final BytesTrie bytesTrie; field in class:TrieMap.BytesTrieMap
118 private BytesTrieMap(BytesTrie bytesTrie, V[] intToValue, int size) { argument
120 this.bytesTrie = bytesTrie;
125 bytesTrie.reset();
127 return bytesTrie.current().hasValue() ? intToValue[bytesTrie.getValue()] : null;
136 result = limit == 1 ? bytesTrie.next(bytes[0]) : bytesTrie.next(bytes, 0, limit);
138 return result.hasValue() ? intToValue[bytesTrie
[all...]

Completed in 91 milliseconds