HomeSort by relevance Sort by last modified time
    Searched defs:BytesTrie (Results 1 - 6 of 6) sorted by null

  /external/icu/icu4c/source/common/
bytestrie.cpp 6 * file name: bytestrie.cpp
17 #include "unicode/bytestrie.h"
24 BytesTrie::~BytesTrie() {
30 BytesTrie::readValue(const uint8_t *pos, int32_t leadByte) {
47 BytesTrie::jumpByDelta(const uint8_t *pos) {
67 BytesTrie::current() const {
79 BytesTrie::branchNext(const uint8_t *pos, int32_t length, int32_t inByte) {
149 BytesTrie::nextImpl(const uint8_t *pos, int32_t inByte) {
181 BytesTrie::next(int32_t inByte)
    [all...]
  /external/icu/icu4c/source/common/unicode/
bytestrie.h 6 * file name: bytestrie.h
36 * Light-weight, non-const reader class for a BytesTrie.
48 class U_COMMON_API BytesTrie : public UMemory {
51 * Constructs a BytesTrie reader instance.
55 * The BytesTrie object will not read more bytes than
59 * the BytesTrie object is in use.
64 BytesTrie(const void *trieBytes)
72 ~BytesTrie();
77 * @param other Another BytesTrie object.
80 BytesTrie(const BytesTrie &other
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BytesTrie.java 8 * ported from ICU4C bytestrie.h/.cpp
18 * Light-weight, non-const reader class for a BytesTrie.
27 public final class BytesTrie implements Cloneable, Iterable<BytesTrie.Entry> {
29 * Constructs a BytesTrie reader instance.
33 * The BytesTrie object will not read more bytes than
37 * the BytesTrie object is in use.
43 public BytesTrie(byte[] trieBytes, int offset) {
65 public BytesTrie reset() {
72 * BytesTrie state object, for saving a trie's current stat
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
BytesTrieTest.java 17 import com.ibm.icu.util.BytesTrie;
209 public BytesTrie buildMonthsTrie(StringTrieBuilder.Option buildOption) {
250 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST);
267 if(trie.next('n')!=BytesTrie.Result.INTERMEDIATE_VALUE || 6!=trie.getValue()) {
283 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.SMALL);
299 trie.getValue(); // next() had returned BytesTrie.Result.INTERMEDIATE_VALUE.
329 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST);
334 BytesTrie.Iterator iter=trie.iterator();
371 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.SMALL);
378 BytesTrie.Iterator iter=trie.iterator()
    [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 209 milliseconds