Searched defs:LATIN_LIMIT (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dcollationfastlatin.h37 static const int32_t LATIN_LIMIT = LATIN_MAX + 1; member in class:CollationFastLatin
45 static const int32_t NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
193 return c - (PUNCT_START - LATIN_LIMIT);
206 * The capacity must be LATIN_LIMIT.
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationFastLatin.java33 public static final int LATIN_LIMIT = LATIN_MAX + 1; field in class:CollationFastLatin
41 static final int NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
189 return c - (PUNCT_START - LATIN_LIMIT);
202 * The capacity must be LATIN_LIMIT.
209 assert(primaries.length == LATIN_LIMIT);
210 if(primaries.length != LATIN_LIMIT) { return -1; }
266 for(int c = 0; c < LATIN_LIMIT; ++c) {
319 leftPair = table[c - PUNCT_START + LATIN_LIMIT];
355 rightPair = table[c - PUNCT_START + LATIN_LIMIT];
411 leftPair = table[c - PUNCT_START + LATIN_LIMIT];
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationFastLatin.java29 public static final int LATIN_LIMIT = LATIN_MAX + 1; field in class:CollationFastLatin
37 static final int NUM_FAST_CHARS = LATIN_LIMIT + (PUNCT_LIMIT - PUNCT_START);
185 return c - (PUNCT_START - LATIN_LIMIT);
198 * The capacity must be LATIN_LIMIT.
205 assert(primaries.length == LATIN_LIMIT);
206 if(primaries.length != LATIN_LIMIT) { return -1; }
262 for(int c = 0; c < LATIN_LIMIT; ++c) {
315 leftPair = table[c - PUNCT_START + LATIN_LIMIT];
351 rightPair = table[c - PUNCT_START + LATIN_LIMIT];
407 leftPair = table[c - PUNCT_START + LATIN_LIMIT];
[all...]

Completed in 64 milliseconds