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

  /external/cldr/tools/java/org/unicode/cldr/util/
FindDTDOrder.java 59 XMLReader xmlReader = CLDRFile.createXMLReader(true);
107 List<String> cldrFileAttributeOrder = CLDRFile.getAttributeOrder();
293 System.out.println("New code in CLDRFile:\n" + result);
294 System.out.println("Old code in CLDRFile:\n" + orderingList);
321 String oldAttributeOrder = breakLines(CLDRFile.getAttributeOrder());
335 log.println("*** Replace in CLDRFile elementOrdering & supplementalMetadata ***");
357 String oldOrder = getJavaList(CLDRFile.getElementOrder());
367 log.println("*** Replace in CLDRFile elementOrdering & supplementalMetadata ***");
371 log.println("Old Size: " + CLDRFile.getElementOrder().size());
372 Set temp = new HashSet(CLDRFile.getElementOrder())
    [all...]
TimezoneFormatter.java 27 import org.unicode.cldr.util.CLDRFile.DraftStatus;
136 private CLDRFile desiredLocaleFile;
151 * @see CLDRFile
153 public TimezoneFormatter(CLDRFile resolvedLocaleFile) {
190 checkForDraft(CLDRFile.getKey(territory_name, country));
503 String countryName = desiredLocaleFile.getName(CLDRFile.TERRITORY_NAME, zoneIdsCountry);
    [all...]
CLDRFile.java 96 public class CLDRFile implements Freezable<CLDRFile>, Iterable<String> {
163 public CLDRFile setNonInheriting(boolean isSupplemental) {
176 * Construct a new CLDRFile.
181 public CLDRFile(XMLSource dataSource) {
186 public CLDRFile(XMLSource dataSource, XMLSource... resolvingParents) {
194 public static CLDRFile loadFromFile(File f, String localeName, DraftStatus minimalDraftStatus, XMLSource source) {
202 final CLDRFile cldrFile;
207 cldrFile = load(fullFileName, localeName, fis, minimalDraftStatus, source)
    [all...]
XMLSource.java 88 if (conflict_resolution == CLDRFile.MERGE_KEEP_MINE && getValueAtPath(path) != null) continue;
103 if (conflict_resolution == CLDRFile.MERGE_KEEP_MINE && oldValue != null) {
153 String distinguishingXPath = CLDRFile.getDistinguishingXPath(xpath, fixedPath, nonInheriting);
296 * Maybe we could clean up #2 and #3 when reading in a CLDRFile the first time?
486 public String getSourceLocaleID(String path, CLDRFile.Status status) {
488 status.pathWhereFound = CLDRFile.getDistinguishingXPath(path, null, false);
502 removeValueAtDPath(CLDRFile.getDistinguishingXPath(xpath, null, nonInheriting));
513 return getValueAtDPath(CLDRFile.getDistinguishingXPath(xpath, null, nonInheriting));
524 return getFullPathAtDPath(CLDRFile.getDistinguishingXPath(xpath, null, nonInheriting));
    [all...]

Completed in 80 milliseconds