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

  /external/icu/icu4c/source/i18n/
collationfastlatin.h 43 static const int32_t PUNCT_START = 0x2000;
47 static const int32_t NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
194 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) {
195 return c - (PUNCT_START - LATIN_LIMIT);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationFastLatin.java 39 static final int PUNCT_START = 0x2000;
43 static final int NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
190 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) {
191 return c - (PUNCT_START - LATIN_LIMIT);
322 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) {
323 leftPair = table[c - PUNCT_START + LATIN_LIMIT];
358 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) {
359 rightPair = table[c - PUNCT_START + LATIN_LIMIT];
414 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) {
415 leftPair = table[c - PUNCT_START + LATIN_LIMIT]
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationFastLatin.java 35 static final int PUNCT_START = 0x2000;
39 static final int NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
186 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) {
187 return c - (PUNCT_START - LATIN_LIMIT);
318 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) {
319 leftPair = table[c - PUNCT_START + LATIN_LIMIT];
354 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) {
355 rightPair = table[c - PUNCT_START + LATIN_LIMIT];
410 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) {
411 leftPair = table[c - PUNCT_START + LATIN_LIMIT]
    [all...]

Completed in 1167 milliseconds