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.java106 public enum CasingType { enum in CheckConsistentCasing
108 public static CasingType from(String s) { in from()
152 public boolean worksWith(CasingType otherType) { in worksWith()
153 …turn otherType == null || this == otherType || this == CasingType.other || otherType == CasingType in worksWith()
158 …ecase_mismatchWarn(CasingType.titlecase, false), titlecase_mismatchErr(CasingType.titlecase, true)…
159 …), lowercase_mismatchErr(CasingType.lowercase, true), other_mismatchWarn(CasingType.other, false),…
161 private final CasingType type;
164 private CasingTypeAndErrFlag(CasingType type, boolean flag) { in CasingTypeAndErrFlag()
169 public CasingType type() { in type()
237 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.class) : handler.ge… 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.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.java11 import org.unicode.cldr.test.CheckConsistentCasing.CasingType;
120 CasingType value = info.get(x).type(); in main()