Home
last modified time | relevance | path

Searched refs:collationType (Results 1 – 15 of 15) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/icu/
DCollationMapper.java124 private String collationType; field in CollationMapper.CollationHandler
138collationType = status.compareTo(DraftStatus.contributed) < 0 ? null : attr.getValue("type"); in startElement()
150 if (collationType == null) return; in startElement()
179 } else if (collationType == null) {
216 String rbPath = "/collations/" + collationType + "/Sequence";
220 …icuData.replace("/collations/" + collationType + "/Version", new String[] { CLDRFile.GEN_VERSION }…
/external/cldr/tools/java/org/unicode/cldr/posix/
DPOSIX_LCCollate.java44 String collationType = "standard"; in POSIX_LCCollate() local
59 collationType = collrules.getWinningValue(path); in POSIX_LCCollate()
61 collationType = variant.collation_type; in POSIX_LCCollate()
64 String path = "//ldml/collations/collation[@type=\"" + collationType + "\"]/cr"; in POSIX_LCCollate()
/external/icu/icu4c/source/tools/genrb/
Dparse.cpp684 const char *localeID, const char *collationType,
697 const char *localeID, const char *collationType, in getRules() argument
775 struct SResource *collation = resLookup(collations, collationType); in getRules()
813 addCollation(ParseState* state, TableResource *result, const char *collationType, in addCollation() argument
928 (void)collationType; in addCollation()
932 if (uprv_strncmp(collationType, "private-", 8) == 0) { in addCollation()
934 printf("Not building %s~%s collation binary\n", state->filename, collationType); in addCollation()
941 printf("Not building %s~%s collation binary\n", state->filename, collationType); in addCollation()
956 if(uprv_strncmp(collationType, "search", 6) == 0) { in addCollation()
965 state->filename, collationType, in addCollation()
[all …]
/external/icu/icu4c/source/i18n/
Ducol_res.cpp107 CollationLoader::loadRules(const char *localeID, const char *collationType, in loadRules() argument
110 U_ASSERT(collationType != NULL && *collationType != 0); in loadRules()
113 int32_t typeLength = static_cast<int32_t>(uprv_strlen(collationType)); in loadRules()
118 uprv_memcpy(type, collationType, typeLength + 1); in loadRules()
Ducol_imp.h72 static void loadRules(const char *localeID, const char *collationType,
Dcollationruleparser.h99 const char *localeID, const char *collationType,
Dcollationruleparser.cpp629 char collationType[ULOC_KEYWORDS_CAPACITY]; in parseSetting() local
631 collationType, ULOC_KEYWORDS_CAPACITY, in parseSetting()
642 importer->getRules(baseID, length > 0 ? collationType : "standard", in parseSetting()
Dcollationbuilder.cpp60 const char *localeID, const char *collationType,
69 const char *localeID, const char *collationType, in getRules() argument
72 CollationLoader::loadRules(localeID, collationType, rules, errorCode); in getRules()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationLoader.java82 static String loadRules(ULocale locale, String collationType) { in loadRules() argument
86 "collations/" + ASCII.toLowerCase(collationType)); in loadRules()
DCollationRuleParser.java82 String getRules(String localeID, String collationType); in getRules() argument
651 String collationType = localeID.getKeywordValue("collation"); in parseSetting() local
659 collationType != null ? collationType : "standard"); in parseSetting()
DCollationBuilder.java34 public String getRules(String localeID, String collationType) { in getRules() argument
35 return CollationLoader.loadRules(new ULocale(localeID), collationType); in getRules()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationLoader.java84 static String loadRules(ULocale locale, String collationType) { in loadRules() argument
88 "collations/" + ASCII.toLowerCase(collationType)); in loadRules()
DCollationRuleParser.java86 String getRules(String localeID, String collationType); in getRules() argument
655 String collationType = localeID.getKeywordValue("collation"); in parseSetting() local
663 collationType != null ? collationType : "standard"); in parseSetting()
DCollationBuilder.java38 public String getRules(String localeID, String collationType) { in getRules() argument
39 return CollationLoader.loadRules(new ULocale(localeID), collationType); in getRules()
/external/cldr/tools/java/org/unicode/cldr/util/
DICUServiceBuilder.java129 String collationType; in getRuleBasedCollator() local
132 collationType = collationFile.getWinningValueWithBailey(path); in getRuleBasedCollator()
134 collationType = type; in getRuleBasedCollator()
137 … = "//ldml/collations/collation[@visibility=\"external\"][@type=\"" + collationType + "\"]/import[… in getRuleBasedCollator()
150 path = "//ldml/collations/collation[@type=\"" + collationType + "\"]/cr"; in getRuleBasedCollator()