Searched refs:fullXPath (Results 1 – 8 of 8) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/api/ |
D | CldrFileDataSource.java | 65 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/ |
D | CLDRModify.java | 1051 String fullXPath = cldrFileToFilter.getFullXPath(xpath); 1052 XPathParts fullparts = XPathParts.getFrozenInstance(fullXPath); 1158 String fullXPath = cldrFileToFilter.getFullXPath(xpath); 1159 if (!m.reset(fullXPath).matches()) { 1269 String fullXPath = cldrFileToFilter.getFullXPath(xpath); 1271 XPathParts parts = XPathParts.getFrozenInstance(fullXPath); 1275 … replace(fullXPath, newFullXpath, value, "converting to new duration unit structure"); 1356 String fullXPath = cldrFileToFilter.getFullXPath(xpath); 1357 String newFullXPath = fullXPath.replace(oldCurrencyCode, newCurrencyCode); 1382 replace(fullXPath, fullXPath, value + tagString); [all …]
|
D | ShowLocaleCoverage.java | 1335 String fullXPath = vxmlCldrFile.getFullXPath(path); in spreadsheetLine() local 1336 XPathParts parts = XPathParts.getFrozenInstance(fullXPath); in spreadsheetLine()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | XMLNormalizingLoader.java | 306 private void addPath(String fullXPath, String value) { in addPath() argument 307 String former = source.getValueAtPath(fullXPath); in addPath() 309 String formerPath = source.getFullXPath(fullXPath); in addPath() 310 if (!former.equals(value) || !fullXPath.equals(formerPath)) { in addPath() 311 …if (!fullXPath.startsWith("//ldml/identity/version") && !fullXPath.startsWith("//ldml/identity/gen… in addPath() 317 source.add(fullXPath, value); in addPath()
|
D | CLDRFile.java | 908 private String addReferencesIfNeeded(String newFullPath, String fullXPath) { in addReferencesIfNeeded() argument 909 if (fullXPath == null || fullXPath.indexOf("[@references=") < 0) { in addReferencesIfNeeded() 912 XPathParts parts = XPathParts.getFrozenInstance(fullXPath); in addReferencesIfNeeded() 937 …System.out.println("Changing " + newFullPath + " plus " + fullXPath + " to " + newParts.toString()… in addReferencesIfNeeded() 1658 private void addPath(String fullXPath, String value) { 1659 String former = target.getStringValue(fullXPath); 1661 String formerPath = target.getFullXPath(fullXPath); 1662 if (!former.equals(value) || !fullXPath.equals(formerPath)) { 1663 …if (!fullXPath.startsWith("//ldml/identity/version") && !fullXPath.startsWith("//ldml/identity/gen… 1669 target.add(fullXPath, value);
|
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/ |
D | Rule.java | 102 final ImmutableList<Result> transform(CldrValue v, String fullXPath, DynamicVars varFn) { in transform() argument 103 Matcher m = getPathPattern(varFn).matcher(fullXPath); in transform()
|
D | RegexTransformer.java | 87 String fullXPath = getFullXPathWithoutSortIndices(value); in transform() local 94 ImmutableList<Result> results = rule.transform(value, fullXPath, varLookupFn); in transform()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestBasic.java | 968 final String fullXPath = cldrFile.getFullXPath(path); in showDifferences() local 969 if (fullXPath.contains("[@draft=\"unconfirmed\"]") in showDifferences() 970 || fullXPath.contains("[@draft=\"provisional\"]")) { in showDifferences() 980 logln("\t\t" + locale + " fullpath:\t" + fullXPath); in showDifferences()
|