OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LATIN_LIMIT
(Results
1 - 14
of
14
) sorted by null
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationFastLatin.java
33
public static final int
LATIN_LIMIT
= LATIN_MAX + 1;
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
...]
CollationDataReader.java
463
char[] fastLatinPrimaries = new char[CollationFastLatin.
LATIN_LIMIT
];
CollationFastLatinBuilder.java
195
if(c == CollationFastLatin.
LATIN_LIMIT
) {
609
if(c >= CollationFastLatin.
LATIN_LIMIT
) {
610
c = CollationFastLatin.PUNCT_START + c - CollationFastLatin.
LATIN_LIMIT
;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationFastLatin.java
29
public static final int
LATIN_LIMIT
= LATIN_MAX + 1;
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
...]
CollationDataReader.java
462
char[] fastLatinPrimaries = new char[CollationFastLatin.
LATIN_LIMIT
];
CollationFastLatinBuilder.java
194
if(c == CollationFastLatin.
LATIN_LIMIT
) {
608
if(c >= CollationFastLatin.
LATIN_LIMIT
) {
609
c = CollationFastLatin.PUNCT_START + c - CollationFastLatin.
LATIN_LIMIT
;
/external/icu/icu4c/source/i18n/
collationfastlatin.cpp
29
U_ASSERT(capacity ==
LATIN_LIMIT
);
30
if(capacity !=
LATIN_LIMIT
) { return -1; }
86
for(UChar32 c = 0; c <
LATIN_LIMIT
; ++c) {
144
leftPair = table[c - PUNCT_START +
LATIN_LIMIT
];
175
rightPair = table[c - PUNCT_START +
LATIN_LIMIT
];
226
leftPair = table[c - PUNCT_START +
LATIN_LIMIT
];
251
rightPair = table[c - PUNCT_START +
LATIN_LIMIT
];
800
return table[c - PUNCT_START +
LATIN_LIMIT
];
821
return table[(
LATIN_LIMIT
- 0x80) + t2]; // 2000..203F -> 0180..01BF
[
all
...]
collationfastlatin.h
37
static const int32_t
LATIN_LIMIT
= LATIN_MAX + 1;
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
.
collationfastlatinbuilder.cpp
207
if(c == CollationFastLatin::
LATIN_LIMIT
) {
649
if(c >= CollationFastLatin::
LATIN_LIMIT
) {
650
c = CollationFastLatin::PUNCT_START + c - CollationFastLatin::
LATIN_LIMIT
;
collationdatareader.cpp
415
uint16_t fastLatinPrimaries[CollationFastLatin::
LATIN_LIMIT
];
/external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar
/prebuilts/misc/common/icu4j/
icu4j.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar
Completed in 164 milliseconds