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

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationFastLatin.java35 static final int PUNCT_START = 0x2000; field in class:CollationFastLatin
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
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationfastlatin.h43 static const int32_t PUNCT_START = 0x2000; member in class:CollationFastLatin
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/
H A DCollationFastLatin.java39 static final int PUNCT_START = 0x2000; field in class:CollationFastLatin
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
[all...]

Completed in 76 milliseconds