HomeSort by relevance Sort by last modified time
    Searched refs:ListTypeLength (Results 1 - 4 of 4) sorted by null

  /external/cldr/tools/java/org/unicode/cldr/util/
XListFormatter.java 17 public enum ListTypeLength {
26 public static final ListTypeLength NORMAL = AND_WIDE;
30 static final Map<String, ListTypeLength> stringToEnum;
32 Map<String, ListTypeLength> _stringToEnum = new LinkedHashMap<>();
33 for (ListTypeLength value : values()) {
40 private ListTypeLength(String typeString) {
43 public static ListTypeLength from(String listPatternType) {
58 public XListFormatter(CLDRFile cldrFile, ListTypeLength listTypeLength) {
59 SimpleFormatter listPathFormat = SimpleFormatter.compile(listTypeLength.getPath())
    [all...]
EmojiConstants.java 5 import org.unicode.cldr.util.XListFormatter.ListTypeLength;
41 public static final ListTypeLength COMPOSED_NAME_LIST = ListTypeLength.UNIT_SHORT;
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestAnnotations.java 24 import org.unicode.cldr.util.XListFormatter.ListTypeLength;
318 {"en", ListTypeLength.NORMAL, "ABC", "A, B, and C"},
319 {"en", ListTypeLength.AND_SHORT, "ABC", "A, B, and C"},
320 {"en", ListTypeLength.OR_WIDE, "ABC", "A, B, or C"}
325 ListTypeLength listTypeLength = (ListTypeLength)(test[1]);
327 XListFormatter xlistFormatter = new XListFormatter(cldrFile, listTypeLength);
330 assertEquals(test[0] + ", " + listTypeLength + ", " + source, expected, actual);
  /external/cldr/tools/java/org/unicode/cldr/test/
ExampleGenerator.java 45 import org.unicode.cldr.util.XListFormatter.ListTypeLength;
713 return handleRegularListPatterns(parts, value, ListTypeLength.from(listPatternType));
    [all...]

Completed in 117 milliseconds