Home
last modified time | relevance | path

Searched refs:newFullPath (Results 1 – 4 of 4) sorted by relevance

/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DCLDRCompare.java107 String newFullPath = newCldrFile.getFullXPath(path); in main() local
110 boolean pathsSame = newFullPath.equals(oldFullPath); in main()
DCLDRModify.java757 public void replace(String oldFullPath, String newFullPath, String newValue) { in replace() argument
758 replace(oldFullPath, newFullPath, newValue, "-"); in replace()
768 String newFullPath) { in showAction() argument
779 + (newFullPath.equals(oldFullPath) || oldValueNewPath == null in showAction()
790 + (newFullPath.equals(oldFullPath) ? "" : "\t→\t" + newFullPath)); in showAction()
811 String oldFullPath, String newFullPath, String newValue, String reason) { in replace() argument
817 boolean pathSame = oldFullPath.equals(newFullPath); in replace()
819 if (!pathChecker.checkPath(newFullPath)) { in replace()
820 throw new IllegalArgumentException("Bad path: " + newFullPath); in replace()
835 newFullPath); in replace()
[all …]
DGenerateComparison.java330 String newFullPath = newFile.getFullXPath(path); in main() local
332 newFullPath != null in main()
333 && newFullPath.contains("@draft") in main()
334 && !newFullPath.contains("@draft=\"contributed\""); in main()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DCLDRFile.java942 String newFullPath = getNondraftNonaltXPath(other.getFullXPath(cpath)); in putAll() local
944 newFullPath = addReferencesIfNeeded(newFullPath, getFullXPath(cpath)); in putAll()
967 Log.logln(getLocaleID() + "\tVETTED: [" + newFullPath + ",\t" + newValue + "]"); in putAll()
968 dataSource.putValueAtPath(newFullPath, newValue); in putAll()
1018 private String addReferencesIfNeeded(String newFullPath, String fullXPath) { in addReferencesIfNeeded() argument
1020 return newFullPath; in addReferencesIfNeeded()
1037 return newFullPath; in addReferencesIfNeeded()
1039 XPathParts newParts = XPathParts.getFrozenInstance(newFullPath); in addReferencesIfNeeded()
1046 "Changing " + newFullPath + " plus " + fullXPath + " to " + newParts.toString()); in addReferencesIfNeeded()