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

  /external/cldr/tools/java/org/unicode/cldr/util/
VerifyZones.java 110 String exemplarCity = cldrFile.getWinningValue("//ldml/dates/timeZoneNames/zone[@type=\"" + timezoneString
111 + "\"]/exemplarCity");
112 if (exemplarCity == null) {
113 exemplarCity = timezoneString.substring(timezoneString.lastIndexOf('/') + 1).replace('_', ' ');
115 return exemplarCity;
TimezoneFormatter.java 511 String exemplarCity = desiredLocaleFile.getWinningValue("//ldml/dates/timeZoneNames/zone[@type=\""
512 + timezoneString + "\"]/exemplarCity");
513 if (exemplarCity == null) {
514 exemplarCity = timezoneString.substring(timezoneString.lastIndexOf('/') + 1).replace('_', ' ');
516 return exemplarCity;
665 String zoneId = matchesPart(path, prefix, "\"]/exemplarCity");
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/test/
CheckDisplayCollisions.java 489 // a collision between exemplarCity and short-standard format was detected.
491 // CLDR tool code automatically generate exemplarCity value from zone ID algorithmically,
493 // exemplarCity should be undefined. The value is generated by TimeZoneFormatter#getFallbackName().
498 // In addition to above, collisions between exemplarCity and other zone display name
523 && (thisZoneType.equals("exemplarCity") || collidingZoneType.equals("exemplarCity"))) {
524 log("Ignore a collision between exemplarCity and another name for Etc/* zones");
680 // Pick up all instances in English where the exemplarCity and territory match
685 if (!xpath.endsWith("/exemplarCity")) continue;
692 String exemplarCity = getRegion(Type.ZONE, xpath)
    [all...]
ExampleGenerator.java 83 private static final String EXEMPLAR_CITY_LOS_ANGELES = "//ldml/dates/timeZoneNames/zone[@type=\"America/Los_Angeles\"]/exemplarCity";
    [all...]

Completed in 217 milliseconds