OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:COLLATOR
(Results
1 - 2
of
2
) sorted by null
/external/icu4c/test/cintltst/
usrchdat.c
29
const char *
collator
; /* currently supported "fr" "es" "de", plus NULL/other => "en" */
member in struct:SearchData
232
static const SearchData
COLLATOR
[] = {
[
all
...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
HanziToPinyin.java
22
import java.text.
Collator
;
28
* multiple possible pinyin string, only one is selected according to
collator
. Polyphone is not
246
private static final
Collator
COLLATOR
=
Collator
.getInstance(Locale.CHINA);
295
final Locale locale[] =
Collator
.getAvailableLocales();
306
Log.w(TAG, "There is no Chinese
collator
, HanziToPinyin is disabled");
325
int cmp =
COLLATOR
.compare(lastString, curString);
351
cmp =
COLLATOR
.compare(letter, FIRST_PINYIN_UNIHAN);
360
cmp =
COLLATOR
.compare(letter, LAST_PINYIN_UNIHAN)
[
all
...]
Completed in 168 milliseconds