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

  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
ContractionsAndExpansions.java 37 private long[] ces = new long[Collation.MAX_EXPANSION_LENGTH];
81 if (ce32 == Collation.FALLBACK_CE32) {
106 if (ce32 == Collation.FALLBACK_CE32) {
116 if ((ce32 & 0xff) < Collation.SPECIAL_CE32_LOW_BYTE) {
119 sink.handleCE(Collation.ceFromSimpleCE32(ce32));
123 switch (Collation.tagFromCE32(ce32)) {
124 case Collation.FALLBACK_TAG:
126 case Collation.RESERVED_TAG_3:
127 case Collation.BUILDER_DATA_TAG:
128 case Collation.LEAD_SURROGATE_TAG
    [all...]
CollationIterator.java 22 * Collation element iterator and abstract character iterator.
203 // Compare the iterator state but not the collation data (trie & data fields):
232 * Returns the next collation element.
245 if(t < Collation.SPECIAL_CE32_LOW_BYTE) { // Forced-inline of isSpecialCE32(ce32).
254 if(t == Collation.SPECIAL_CE32_LOW_BYTE) {
256 return ceBuffer.set(cesIndex++, Collation.NO_CE);
261 if(t < Collation.SPECIAL_CE32_LOW_BYTE) {
269 if(t == Collation.LONG_PRIMARY_CE32_LOW_BYTE) {
272 ((long)(ce32 - t) << 32) | Collation.COMMON_SEC_AND_TER_CE);
282 while(nextCE() != Collation.NO_CE)
    [all...]
CollationData.java 23 * Collation data container.
27 * Includes data for the collation base (root/default), aliased if this is not the base.
53 Collation.hasCE32Tag(getCE32(c), Collation.DIGIT_TAG);
81 assert(Collation.isSpecialCE32(ce32));
82 int tag = Collation.tagFromCE32(ce32);
83 if(tag == Collation.DIGIT_TAG) {
84 // Fetch the non-numeric-collation CE32.
85 ce32 = ce32s[Collation.indexFromCE32(ce32)];
86 } else if(tag == Collation.LEAD_SURROGATE_TAG)
    [all...]
Collation.java 7 * Collation.java, ported from collation.h/.cpp
16 * Collation v2 basic definitions and static helper functions.
22 public final class Collation {
234 * Bits 31..13: Index into int table for non-numeric-collation CE32.
567 return Collation.incThreeBytePrimaryByOffset(p, isCompressible, offset);
592 // private Collation() // No instantiation.
CollationDataBuilder.java 38 * Collation element modifier. Interface class for a modifier
43 /** Returns a new CE to replace the non-special input CE32, or else Collation.NO_CE. */
45 /** Returns a new CE to replace the input CE, or else Collation.NO_CE. */
75 trie = new Trie2Writable(Collation.FALLBACK_CE32, Collation.FFFD_CE32);
83 trie.set(c, Collation.FALLBACK_CE32);
90 int hangulCE32 = Collation.makeCE32FromTagAndIndex(Collation.HANGUL_TAG, 0);
115 return Collation.isAssignedCE32(trie.get(c));
130 if(cesLength < 0 || cesLength > Collation.MAX_EXPANSION_LENGTH)
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
ContractionsAndExpansions.java 33 private long[] ces = new long[Collation.MAX_EXPANSION_LENGTH];
77 if (ce32 == Collation.FALLBACK_CE32) {
102 if (ce32 == Collation.FALLBACK_CE32) {
112 if ((ce32 & 0xff) < Collation.SPECIAL_CE32_LOW_BYTE) {
115 sink.handleCE(Collation.ceFromSimpleCE32(ce32));
119 switch (Collation.tagFromCE32(ce32)) {
120 case Collation.FALLBACK_TAG:
122 case Collation.RESERVED_TAG_3:
123 case Collation.BUILDER_DATA_TAG:
124 case Collation.LEAD_SURROGATE_TAG
    [all...]
CollationIterator.java 21 * Collation element iterator and abstract character iterator.
201 // Compare the iterator state but not the collation data (trie & data fields):
230 * Returns the next collation element.
243 if(t < Collation.SPECIAL_CE32_LOW_BYTE) { // Forced-inline of isSpecialCE32(ce32).
252 if(t == Collation.SPECIAL_CE32_LOW_BYTE) {
254 return ceBuffer.set(cesIndex++, Collation.NO_CE);
259 if(t < Collation.SPECIAL_CE32_LOW_BYTE) {
267 if(t == Collation.LONG_PRIMARY_CE32_LOW_BYTE) {
270 ((long)(ce32 - t) << 32) | Collation.COMMON_SEC_AND_TER_CE);
280 while(nextCE() != Collation.NO_CE)
    [all...]
CollationData.java 22 * Collation data container.
26 * Includes data for the collation base (root/default), aliased if this is not the base.
51 Collation.hasCE32Tag(getCE32(c), Collation.DIGIT_TAG);
79 assert(Collation.isSpecialCE32(ce32));
80 int tag = Collation.tagFromCE32(ce32);
81 if(tag == Collation.DIGIT_TAG) {
82 // Fetch the non-numeric-collation CE32.
83 ce32 = ce32s[Collation.indexFromCE32(ce32)];
84 } else if(tag == Collation.LEAD_SURROGATE_TAG)
    [all...]
Collation.java 6 * Collation.java, ported from collation.h/.cpp
15 * Collation v2 basic definitions and static helper functions.
20 public final class Collation {
232 * Bits 31..13: Index into int table for non-numeric-collation CE32.
565 return Collation.incThreeBytePrimaryByOffset(p, isCompressible, offset);
590 // private Collation() // No instantiation.
CollationDataBuilder.java 37 * Collation element modifier. Interface class for a modifier
42 /** Returns a new CE to replace the non-special input CE32, or else Collation.NO_CE. */
44 /** Returns a new CE to replace the input CE, or else Collation.NO_CE. */
74 trie = new Trie2Writable(Collation.FALLBACK_CE32, Collation.FFFD_CE32);
82 trie.set(c, Collation.FALLBACK_CE32);
89 int hangulCE32 = Collation.makeCE32FromTagAndIndex(Collation.HANGUL_TAG, 0);
114 return Collation.isAssignedCE32(trie.get(c));
129 if(cesLength < 0 || cesLength > Collation.MAX_EXPANSION_LENGTH)
    [all...]
  /external/icu/icu4c/source/i18n/
collation.h 6 * collation.h
22 * Collation v2 basic definitions and static helper functions.
27 class U_I18N_API Collation {
230 * Bits 31..13: Index into uint32_t table for non-numeric-collation CE32.
492 Collation(); // No instantiation.
  /external/guice/extensions/persist/lib/
hsqldb.jar 
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 2130 milliseconds