Home
last modified time | relevance | path

Searched refs:fullXPath (Results 1 – 5 of 5) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/api/
DCldrFileDataSource.java65 String fullXPath = source.getFullXPath(dPath); in get() local
66 if (fullXPath == null) { in get()
69 XPathParts pathPaths = XPathParts.getFrozenInstance(fullXPath); in get()
/external/cldr/tools/java/org/unicode/cldr/tool/
DCLDRModify.java1041 String fullXPath = cldrFileToFilter.getFullXPath(xpath);
1042 XPathParts fullparts = XPathParts.getFrozenInstance(fullXPath);
1146 String fullXPath = cldrFileToFilter.getFullXPath(xpath);
1147 if (!m.reset(fullXPath).matches()) {
1251 String fullXPath = cldrFileToFilter.getFullXPath(xpath);
1253 XPathParts parts = XPathParts.getFrozenInstance(fullXPath);
1257 … replace(fullXPath, newFullXpath, value, "converting to new duration unit structure");
1336 String fullXPath = cldrFileToFilter.getFullXPath(xpath);
1337 String newFullXPath = fullXPath.replace(oldCurrencyCode, newCurrencyCode);
1362 replace(fullXPath, fullXPath, value + tagString);
[all …]
DShowLocaleCoverage.java1311 String fullXPath = vxmlCldrFile.getFullXPath(path); in spreadsheetLine() local
1312 XPathParts parts = XPathParts.getFrozenInstance(fullXPath); in spreadsheetLine()
/external/cldr/tools/java/org/unicode/cldr/util/
DCLDRFile.java900 private String addReferencesIfNeeded(String newFullPath, String fullXPath) { in addReferencesIfNeeded() argument
901 if (fullXPath == null || fullXPath.indexOf("[@references=") < 0) { in addReferencesIfNeeded()
904 XPathParts parts = XPathParts.getFrozenInstance(fullXPath); in addReferencesIfNeeded()
929 …System.out.println("Changing " + newFullPath + " plus " + fullXPath + " to " + newParts.toString()… in addReferencesIfNeeded()
1637 private void addPath(String fullXPath, String value) {
1638 String former = target.getStringValue(fullXPath);
1640 String formerPath = target.getFullXPath(fullXPath);
1641 if (!former.equals(value) || !fullXPath.equals(formerPath)) {
1642 …if (!fullXPath.startsWith("//ldml/identity/version") && !fullXPath.startsWith("//ldml/identity/gen…
1648 target.add(fullXPath, value);
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestBasic.java956 final String fullXPath = cldrFile.getFullXPath(path); in showDifferences() local
957 if (fullXPath.contains("[@draft=\"unconfirmed\"]") in showDifferences()
958 || fullXPath.contains("[@draft=\"provisional\"]")) { in showDifferences()
968 logln("\t\t" + locale + " fullpath:\t" + fullXPath); in showDifferences()