Home
last modified time | relevance | path

Searched refs:LATIN_LIMIT (Results 1 – 10 of 10) sorted by relevance

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationFastLatin.java31 public static final int LATIN_LIMIT = LATIN_MAX + 1; field in CollationFastLatin
39 static final int NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
187 return c - (PUNCT_START - LATIN_LIMIT); in getCharIndex()
207 if(primaries.length != LATIN_LIMIT) { in getOptions()
266 for(int c = 0; c < LATIN_LIMIT; ++c) { in getOptions()
319 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
355 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
411 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
440 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
671 return table[c - PUNCT_START + LATIN_LIMIT]; in lookup()
[all …]
DCollationDataReader.java464 char[] fastLatinPrimaries = new char[CollationFastLatin.LATIN_LIMIT]; in read()
DCollationFastLatinBuilder.java196 if(c == CollationFastLatin.LATIN_LIMIT) { in getCEs()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationFastLatin.java35 public static final int LATIN_LIMIT = LATIN_MAX + 1; field in CollationFastLatin
43 static final int NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
191 return c - (PUNCT_START - LATIN_LIMIT); in getCharIndex()
211 if(primaries.length != LATIN_LIMIT) { in getOptions()
270 for(int c = 0; c < LATIN_LIMIT; ++c) { in getOptions()
323 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
359 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
415 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
444 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
675 return table[c - PUNCT_START + LATIN_LIMIT]; in lookup()
[all …]
DCollationDataReader.java465 char[] fastLatinPrimaries = new char[CollationFastLatin.LATIN_LIMIT]; in read()
DCollationFastLatinBuilder.java197 if(c == CollationFastLatin.LATIN_LIMIT) { in getCEs()
/external/icu/icu4c/source/i18n/
Dcollationfastlatin.cpp31 U_ASSERT(capacity == LATIN_LIMIT); in getOptions()
32 if(capacity != LATIN_LIMIT) { return -1; } in getOptions()
88 for(UChar32 c = 0; c < LATIN_LIMIT; ++c) { in getOptions()
146 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
177 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
228 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
253 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
802 return table[c - PUNCT_START + LATIN_LIMIT]; in lookup()
823 return table[(LATIN_LIMIT - 0x80) + t2]; // 2000..203F -> 0180..01BF in lookupUTF8()
847 return table[(LATIN_LIMIT - 0x80) + t2]; // 2000..203F -> 0180..01BF in lookupUTF8Unsafe()
[all …]
Dcollationfastlatin.h39 static const int32_t LATIN_LIMIT = LATIN_MAX + 1; variable
47 static const int32_t NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
195 return c - (PUNCT_START - LATIN_LIMIT); in getCharIndex()
Dcollationfastlatinbuilder.cpp209 if(c == CollationFastLatin::LATIN_LIMIT) { in getCEs()
651 if(c >= CollationFastLatin::LATIN_LIMIT) { in encodeContractions()
652 c = CollationFastLatin::PUNCT_START + c - CollationFastLatin::LATIN_LIMIT; in encodeContractions()
Dcollationdatareader.cpp417 uint16_t fastLatinPrimaries[CollationFastLatin::LATIN_LIMIT]; in read()