Searched refs:newFullPath (Results 1 – 4 of 4) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | CLDRModify.java | 766 public void replace(String oldFullPath, String newFullPath, String newValue) { in replace() argument 767 replace(oldFullPath, newFullPath, newValue, "-"); in replace() 771 String newValue, String oldFullPath, String newFullPath) { in showAction() argument 781 + (newFullPath.equals(oldFullPath) || oldValueNewPath == null ? "" : oldValueNewPath in showAction() 785 + (newFullPath.equals(oldFullPath) ? "" : "\t→\t" + newFullPath)); in showAction() 804 … public void replace(String oldFullPath, String newFullPath, String newValue, String reason) { in replace() argument 810 boolean pathSame = oldFullPath.equals(newFullPath); in replace() 817 … showAction(reason, "Adding", oldValueOldPath, null, newValue, oldFullPath, newFullPath); in replace() 820 … showAction(reason, "Replacing", oldValueOldPath, null, newValue, oldFullPath, newFullPath); in replace() 824 String oldValueNewPath = cldrFileToFilter.getStringValue(newFullPath); in replace() [all …]
|
D | CLDRCompare.java | 93 String newFullPath = newCldrFile.getFullXPath(path); in main() local 96 boolean pathsSame = newFullPath.equals(oldFullPath); in main()
|
D | GenerateComparison.java | 292 String newFullPath = newFile.getFullXPath(path); in main() local 293 final boolean reject = newFullPath != null && newFullPath.contains("@draft") in main() 294 && !newFullPath.contains("@draft=\"contributed\""); in main()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | CLDRFile.java | 802 String newFullPath = getNondraftNonaltXPath(other.getFullXPath(cpath)); in putAll() local 805 newFullPath = addReferencesIfNeeded(newFullPath, getFullXPath(cpath)); in putAll() 818 Log.logln(getLocaleID() + "\tVETTED: [" + newFullPath + ",\t" + newValue + "]"); in putAll() 819 dataSource.putValueAtPath(newFullPath, newValue); in putAll() 867 private String addReferencesIfNeeded(String newFullPath, String fullXPath) { in addReferencesIfNeeded() argument 868 if (fullXPath == null || fullXPath.indexOf("[@references=") < 0) return newFullPath; in addReferencesIfNeeded() 880 if (accummulatedReferences == null) return newFullPath; in addReferencesIfNeeded() 881 XPathParts newParts = new XPathParts(null, null).set(newFullPath); in addReferencesIfNeeded() 889 …System.out.println("Changing " + newFullPath + " plus " + fullXPath + " to " + newParts.toString()… in addReferencesIfNeeded()
|