Home
last modified time | relevance | path

Searched refs:PUNCT_START (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationFastLatin.java33 static final int PUNCT_START = 0x2000; field in CollationFastLatin
37 static final int NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
184 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in getCharIndex()
185 return c - (PUNCT_START - LATIN_LIMIT); in getCharIndex()
314 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
315 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
350 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
351 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
406 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
407 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
[all …]
DCollationFastLatinBuilder.java195 c = CollationFastLatin.PUNCT_START; in getCEs()
/external/icu/icu4c/source/i18n/
Dcollationfastlatin.h41 static const int32_t PUNCT_START = 0x2000; variable
45 static const int32_t NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
192 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in getCharIndex()
193 return c - (PUNCT_START - LATIN_LIMIT); in getCharIndex()
Dcollationfastlatin.cpp145 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
146 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
176 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
177 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
227 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
228 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
252 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
253 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
802 if(PUNCT_START <= c && c < PUNCT_LIMIT) { in lookup()
803 return table[c - PUNCT_START + LATIN_LIMIT]; in lookup()
[all …]
Dcollationfastlatinbuilder.cpp208 c = CollationFastLatin::PUNCT_START; in getCEs()
650 c = CollationFastLatin::PUNCT_START + c - CollationFastLatin::LATIN_LIMIT; in encodeContractions()