Home
last modified time | relevance | path

Searched refs:CasingType (Results 1 – 3 of 3) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/test/
DCheckConsistentCasing.java107 public enum CasingType { enum in CheckConsistentCasing
109 public static CasingType from(String s) { in from()
153 public boolean worksWith(CasingType otherType) { in worksWith()
154 …turn otherType == null || this == otherType || this == CasingType.other || otherType == CasingType in worksWith()
159 …ecase_mismatchWarn(CasingType.titlecase, false), titlecase_mismatchErr(CasingType.titlecase, true)…
160 …), lowercase_mismatchErr(CasingType.lowercase, true), other_mismatchWarn(CasingType.other, false),…
162 private final CasingType type;
165 private CasingTypeAndErrFlag(CasingType type, boolean flag) { in CasingTypeAndErrFlag()
170 public CasingType type() { in type()
238 public static Map<Category, CasingType> getSamples(CLDRFile resolved) { in getSamples()
[all …]
DCasingInfo.java16 import org.unicode.cldr.test.CheckConsistentCasing.CasingType;
199 private void createCasingXml(String localeID, Map<Category, CasingType> localeCasing) { in createCasingXml()
202 …Map<Category, CasingType> overrides = handler == null ? new EnumMap<Category, CasingType>(Category… in createCasingXml()
208 CasingType type = localeCasing.get(category); in createCasingXml()
212 } else if (type != CasingType.other) { in createCasingXml()
251 … private Map<Category, CasingType> overrideMap = new EnumMap<Category, CasingType>(Category.class);
259 CasingType casingType = CasingType.valueOf(value); in handlePathValue()
283 public Map<Category, CasingType> getOverrides() { in getOverrides()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateCasingChart.java13 import org.unicode.cldr.test.CheckConsistentCasing.CasingType;
74 …Relation<Map<Category, CasingType>, String> infoToLocales = Relation.of(new HashMap(), TreeSet.cla… in main()
127 CasingType value = info.get(x).type(); in main()