Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/util/
DSimpleXMLSource.java22 private Relation<String, String> VALUE_TO_PATH = null; field in SimpleXMLSource
123 if (VALUE_TO_PATH != null) { in updateValuePathMapping()
125 VALUE_TO_PATH.remove(normalize(oldValue), distinguishingXPath); in updateValuePathMapping()
128 VALUE_TO_PATH.put(normalize(newValue), distinguishingXPath); in updateValuePathMapping()
138 if (VALUE_TO_PATH == null) { in getPathsWithValue()
139 VALUE_TO_PATH = Relation.of(new HashMap<String, Set<String>>(), HashSet.class); in getPathsWithValue()
147 VALUE_TO_PATH.put(value, path); in getPathsWithValue()
150 Set<String> paths = VALUE_TO_PATH.getAll(normalize(valueToMatch)); in getPathsWithValue()