Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/tool/
DCLDRModify.java772 public void replace(String oldFullPath, String newFullPath, String newValue) { in replace() argument
773 replace(oldFullPath, newFullPath, newValue, "-"); in replace()
777 String newValue, String oldFullPath, String newFullPath) { in showAction() argument
787 + (newFullPath.equals(oldFullPath) || oldValueNewPath == null ? "" : oldValueNewPath in showAction()
791 + (newFullPath.equals(oldFullPath) ? "" : "\t→\t" + newFullPath)); in showAction()
810 … public void replace(String oldFullPath, String newFullPath, String newValue, String reason) { in replace() argument
816 boolean pathSame = oldFullPath.equals(newFullPath); in replace()
818 if (!pathChecker.checkPath(newFullPath)) { in replace()
819 throw new IllegalArgumentException("Bad path: " + newFullPath); in replace()
827 … showAction(reason, "Adding", oldValueOldPath, null, newValue, oldFullPath, newFullPath); in replace()
[all …]
DCLDRCompare.java92 String newFullPath = newCldrFile.getFullXPath(path); in main() local
95 boolean pathsSame = newFullPath.equals(oldFullPath); in main()
DGenerateComparison.java296 String newFullPath = newFile.getFullXPath(path); in main() local
297 final boolean reject = newFullPath != null && newFullPath.contains("@draft") in main()
298 && !newFullPath.contains("@draft=\"contributed\""); in main()
/external/cldr/tools/java/org/unicode/cldr/util/
DCLDRFile.java849 String newFullPath = getNondraftNonaltXPath(other.getFullXPath(cpath)); in putAll() local
851 newFullPath = addReferencesIfNeeded(newFullPath, getFullXPath(cpath)); in putAll()
863 Log.logln(getLocaleID() + "\tVETTED: [" + newFullPath + ",\t" + newValue + "]"); in putAll()
864 dataSource.putValueAtPath(newFullPath, newValue); in putAll()
908 private String addReferencesIfNeeded(String newFullPath, String fullXPath) { in addReferencesIfNeeded() argument
910 return newFullPath; in addReferencesIfNeeded()
927 return newFullPath; in addReferencesIfNeeded()
929 XPathParts newParts = XPathParts.getFrozenInstance(newFullPath); in addReferencesIfNeeded()
937 …System.out.println("Changing " + newFullPath + " plus " + fullXPath + " to " + newParts.toString()… in addReferencesIfNeeded()