HomeSort by relevance Sort by last modified time
    Searched defs:trie (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/icu/icu4c/source/i18n/
uspoof_wsconf.h 44 UTrie2 *trie; // Any-case or Lower-case Trie. member in class:BuilderScriptSet
45 // These Trie tables are the final result of the
collationtailoring.h 80 UTrie2 *trie; member in struct:CollationTailoring
88 * It is immutable, and the data trie cannot be copied either.
collationdatabuilder.h 237 UTrie2 *trie; member in class:CollationDataBuilder
collationdata.h 54 : trie(NULL),
67 return UTRIE2_GET32(trie, c);
71 return UTRIE2_GET32_FROM_SUPP(trie, c);
172 /** Main lookup trie. */
173 const UTrie2 *trie; member in struct:CollationData
collationiterator.h 86 : trie(d->trie),
248 * Returns the CE32 from the data trie.
259 // Main lookup trie of the data object.
260 const UTrie2 *trie; member in class:CollationIterator
  /external/icu/icu4c/source/common/
propsvec.h 154 * vectors array, and freeze the trie.
160 UTrie2 *trie; member in struct:UPVecToUTrie2Context
167 /* context=UPVecToUTrie2Context, creates the trie and stores the rowIndex values */
ubidi_props.c 37 UTrie2 trie; member in struct:UBiDiProps
74 /* add the start code point of each same-value range of the trie */
75 utrie2_enum(&bdp->trie, NULL, _enumPropertyStartsRange, sa);
144 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
150 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
188 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
194 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
200 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
206 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
229 uint16_t props=UTRIE2_GET16(&bdp->trie, c)
    [all...]
  /external/icu/icu4c/source/test/perf/unisetperf/draft/
trieset.cpp 16 * Modifies the trie index to make the BMP linear, and uses the original set
23 #define UTRIE_GET8_LATIN1(trie) ((const uint8_t *)(trie)->data32+UTRIE_DATA_BLOCK_LENGTH)
25 #define UTRIE_GET8_FROM_LEAD(trie, c16) \
26 ((const uint8_t *)(trie)->data32)[ \
27 ((int32_t)((trie)->index[(c16)>>UTRIE_SHIFT])<<UTRIE_INDEX_SHIFT)+ \
63 // Preflight the trie length.
77 utrie_unserialize(&trie, trieData, length, &errorCode); // TODO: Implement for 8-bit UTrie!
82 uprv_memcpy((uint16_t *)trie.index+(0xd800>>UTRIE_SHIFT),
83 trie.index+UTRIE_BMP_INDEX_LENGTH
109 UTrie trie; member in class:TrieSet
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
BytesTrieTest.java 254 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
256 if((uniqueValue=trie.getUniqueValue())!=0) {
259 trie.next('j');
260 trie.next('a');
261 trie.next('n');
263 if((uniqueValue=trie.getUniqueValue())!=((1<<1)|1)) {
266 trie.first('j');
267 trie.next('u');
268 if((uniqueValue=trie.getUniqueValue())!=0) {
271 if(trie.next('n')!=BytesTrie.Result.INTERMEDIATE_VALUE || 6!=trie.getValue())
287 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.SMALL); local
333 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
375 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.SMALL); local
396 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
440 BytesTrie trie=buildTrie(data, data.length, StringTrieBuilder.Option.FAST); local
461 BytesTrie trie=buildTrie(data, data.length, StringTrieBuilder.Option.FAST); local
507 BytesTrie trie=buildTrie(data, dataLength, buildOption); local
536 BytesTrie trie=builder_.build(buildOption); local
    [all...]
CharsTrieTest.java 232 CharsTrie trie=buildTrie(data, data.length, StringTrieBuilder.Option.FAST); local
234 if( (result=trie.nextForCodePoint(0x4dff))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
235 (result=trie.nextForCodePoint(0x10000))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
236 (result=trie.nextForCodePoint(0x9999))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
237 (result=trie.nextForCodePoint(0x20000))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
238 (result=trie.nextForCodePoint(0xdfff))!=BytesTrie.Result.NO_VALUE || result!=trie.current() |
312 CharsTrie trie=buildLargeTrie(1111); local
380 CharsTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
413 CharsTrie trie=buildMonthsTrie(StringTrieBuilder.Option.SMALL); local
459 CharsTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
501 CharsTrie trie=buildMonthsTrie(StringTrieBuilder.Option.SMALL); local
522 CharsTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
566 CharsTrie trie=buildTrie(data, data.length, StringTrieBuilder.Option.FAST); local
587 CharsTrie trie=buildTrie(data, data.length, StringTrieBuilder.Option.FAST); local
631 CharsTrie trie=buildTrie(data, dataLength, buildOption); local
660 CharsTrie trie=builder_.build(buildOption); local
    [all...]
Trie2Test.java 61 Trie2Writable trie = new Trie2Writable(0,0); local
63 trie.toTrie2_16().serialize(os);
95 Trie2Writable trie = new Trie2Writable(17,0); local
97 it = trie.iterator();
113 for (Trie2.Range rr: trie) {
137 Trie2Writable trie = new Trie2Writable(0xbadfeed, 0); local
138 trie.set(0x10123, 42);
148 Iterator<Trie2.Range> it = trie.iterator(vm);
160 Trie2Writable trie = new Trie2Writable(0xdefa17, 0); local
161 trie.set(0x2f810, 10)
187 Trie2Writable trie = new Trie2Writable(0xdefa17, 0); local
211 Trie2Writable trie = new Trie2Writable(101, 0); local
596 Trie2Writable trie = new Trie2Writable(initialValue, errorValue); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
BytesTrieTest.java 250 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
252 if((uniqueValue=trie.getUniqueValue())!=0) {
255 trie.next('j');
256 trie.next('a');
257 trie.next('n');
259 if((uniqueValue=trie.getUniqueValue())!=((1<<1)|1)) {
262 trie.first('j');
263 trie.next('u');
264 if((uniqueValue=trie.getUniqueValue())!=0) {
267 if(trie.next('n')!=BytesTrie.Result.INTERMEDIATE_VALUE || 6!=trie.getValue())
283 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.SMALL); local
329 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
371 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.SMALL); local
392 BytesTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
436 BytesTrie trie=buildTrie(data, data.length, StringTrieBuilder.Option.FAST); local
457 BytesTrie trie=buildTrie(data, data.length, StringTrieBuilder.Option.FAST); local
503 BytesTrie trie=buildTrie(data, dataLength, buildOption); local
532 BytesTrie trie=builder_.build(buildOption); local
    [all...]
CharsTrieTest.java 228 CharsTrie trie=buildTrie(data, data.length, StringTrieBuilder.Option.FAST); local
230 if( (result=trie.nextForCodePoint(0x4dff))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
231 (result=trie.nextForCodePoint(0x10000))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
232 (result=trie.nextForCodePoint(0x9999))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
233 (result=trie.nextForCodePoint(0x20000))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
234 (result=trie.nextForCodePoint(0xdfff))!=BytesTrie.Result.NO_VALUE || result!=trie.current() |
308 CharsTrie trie=buildLargeTrie(1111); local
376 CharsTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
409 CharsTrie trie=buildMonthsTrie(StringTrieBuilder.Option.SMALL); local
455 CharsTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
497 CharsTrie trie=buildMonthsTrie(StringTrieBuilder.Option.SMALL); local
518 CharsTrie trie=buildMonthsTrie(StringTrieBuilder.Option.FAST); local
562 CharsTrie trie=buildTrie(data, data.length, StringTrieBuilder.Option.FAST); local
583 CharsTrie trie=buildTrie(data, data.length, StringTrieBuilder.Option.FAST); local
627 CharsTrie trie=buildTrie(data, dataLength, buildOption); local
656 CharsTrie trie=builder_.build(buildOption); local
    [all...]
Trie2Test.java 57 Trie2Writable trie = new Trie2Writable(0,0); local
59 trie.toTrie2_16().serialize(os);
91 Trie2Writable trie = new Trie2Writable(17,0); local
93 it = trie.iterator();
109 for (Trie2.Range rr: trie) {
133 Trie2Writable trie = new Trie2Writable(0xbadfeed, 0); local
134 trie.set(0x10123, 42);
144 Iterator<Trie2.Range> it = trie.iterator(vm);
156 Trie2Writable trie = new Trie2Writable(0xdefa17, 0); local
157 trie.set(0x2f810, 10)
183 Trie2Writable trie = new Trie2Writable(0xdefa17, 0); local
207 Trie2Writable trie = new Trie2Writable(101, 0); local
592 Trie2Writable trie = new Trie2Writable(initialValue, errorValue); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationTailoring.java 117 Trie2_32 trie; field in class:CollationTailoring
123 * It is immutable, and the data trie cannot be copied either.
CollationDataBuilder.java 53 trie = null;
66 if(trie != null) {
75 trie = new Trie2Writable(Collation.FALLBACK_CE32, Collation.FFFD_CE32);
83 trie.set(c, Collation.FALLBACK_CE32);
91 trie.setRange(Hangul.HANGUL_BASE, Hangul.HANGUL_END, hangulCE32, true);
115 return Collation.isAssignedCE32(trie.get(c));
181 int oldCE32 = trie.get(c);
191 trie.set(c, oldCE32);
197 trie.set(c, ce32);
210 trie.set(c, contextCE32)
1339 protected Trie2Writable trie; field in class:CollationDataBuilder
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TZDBTimeZoneNames.java 342 // loading all names into trie
343 TextTrieMap<TZDBNameInfo> trie = new TextTrieMap<TZDBNameInfo>(true); local
368 trie.put(std, stdInf);
376 trie.put(dst, dstInf);
379 TZDB_NAMES_TRIE = trie;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TZDBTimeZoneNames.java 340 // loading all names into trie
341 TextTrieMap<TZDBNameInfo> trie = new TextTrieMap<TZDBNameInfo>(true); local
366 trie.put(std, stdInf);
374 trie.put(dst, dstInf);
377 TZDB_NAMES_TRIE = trie;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
assoc_container.hpp 537 * A branched, tree-like (tree, trie) container abstraction.
704 * A trie-based container.
711 * @tparam Node_Update Updates trie internal-nodes,
731 class trie : public PB_DS_TRIE_BASE class in namespace:__gnu_pbds
740 trie() { } function in class:__gnu_pbds::trie
744 trie(const access_traits& t) function in class:__gnu_pbds::trie
751 trie(It first, It last) function in class:__gnu_pbds::trie
758 trie(It first, It last, const access_traits& t) function in class:__gnu_pbds::trie
762 trie(const trie& other function in class:__gnu_pbds::trie
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
assoc_container.hpp 537 * A branched, tree-like (tree, trie) container abstraction.
704 * A trie-based container.
711 * @tparam Node_Update Updates trie internal-nodes,
731 class trie : public PB_DS_TRIE_BASE class in namespace:__gnu_pbds
740 trie() { } function in class:__gnu_pbds::trie
744 trie(const access_traits& t) function in class:__gnu_pbds::trie
751 trie(It first, It last) function in class:__gnu_pbds::trie
758 trie(It first, It last, const access_traits& t) function in class:__gnu_pbds::trie
762 trie(const trie& other function in class:__gnu_pbds::trie
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/
assoc_container.hpp 537 * A branched, tree-like (tree, trie) container abstraction.
704 * A trie-based container.
711 * @tparam Node_Update Updates trie internal-nodes,
731 class trie : public PB_DS_TRIE_BASE class in namespace:__gnu_pbds
740 trie() { } function in class:__gnu_pbds::trie
744 trie(const access_traits& t) function in class:__gnu_pbds::trie
751 trie(It first, It last) function in class:__gnu_pbds::trie
758 trie(It first, It last, const access_traits& t) function in class:__gnu_pbds::trie
762 trie(const trie& other function in class:__gnu_pbds::trie
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/
assoc_container.hpp 537 * A branched, tree-like (tree, trie) container abstraction.
704 * A trie-based container.
711 * @tparam Node_Update Updates trie internal-nodes,
731 class trie : public PB_DS_TRIE_BASE class in namespace:__gnu_pbds
740 trie() { } function in class:__gnu_pbds::trie
744 trie(const access_traits& t) function in class:__gnu_pbds::trie
751 trie(It first, It last) function in class:__gnu_pbds::trie
758 trie(It first, It last, const access_traits& t) function in class:__gnu_pbds::trie
762 trie(const trie& other function in class:__gnu_pbds::trie
    [all...]
  /external/icu/icu4c/source/test/cintltst/
sprpdata.c 155 UTrie trie = data->sprepTrie; local
161 UTRIE_GET16(&trie, codepoint, result);
235 UTrie trie = data->sprepTrie; local
255 UTRIE_GET16(&trie,start, result);
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetSelector.java 41 private IntTrie trie; field in class:CharsetSelector
84 trie = pvec.compactToTrieWithRowIndexes();
207 int pvIndex = trie.getCodePointValue(c);
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationTailoring.java 115 Trie2_32 trie; field in class:CollationTailoring
121 * It is immutable, and the data trie cannot be copied either.

Completed in 1210 milliseconds

1 2 3