Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/util/
DSimpleXMLSource.java120 public void getPathsWithValue(String valueToMatch, String pathPrefix, Set<String> result) { in getPathsWithValue() argument
131 Set<String> paths = VALUE_TO_PATH.getAll(normalize(valueToMatch)); in getPathsWithValue()
154 public static String normalize(String valueToMatch) { in normalize() argument
155 return replace(NON_ALPHANUM, NFKCCF.normalize(valueToMatch), ""); in normalize()
158 public static String normalizeCaseSensitive(String valueToMatch) { in normalizeCaseSensitive() argument
159 return replace(NON_ALPHANUM, NFKC.normalize(valueToMatch), ""); in normalizeCaseSensitive()
162 public static String replace(UnicodeSet unicodeSet, String valueToMatch, String substitute) { in replace() argument
164 if (valueToMatch.contains("{")) { in replace()
165 valueToMatch = PLACEHOLDER.matcher(valueToMatch).replaceAll("⍰").trim(); in replace()
168 for (int i = 0; i < valueToMatch.length(); ++i) { in replace()
[all …]
DXMLSource.java1491 public void getPathsWithValue(String valueToMatch, String pathPrefix, Set<String> result) { in getPathsWithValue() argument
1501 source.getPathsWithValue(valueToMatch, pathPrefix, pathsWithValue); in getPathsWithValue()
1530 norm = SimpleXMLSource.normalize(valueToMatch); in getPathsWithValue()
1631 …public abstract void getPathsWithValue(String valueToMatch, String pathPrefix, Set<String> result); in getPathsWithValue() argument
DCLDRFile.java3163 …public Set<String> getPathsWithValue(String valueToMatch, String pathPrefix, Matcher pathMatcher, …
3167 dataSource.getPathsWithValue(valueToMatch, pathPrefix, result);
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestXMLSource.java65 public void getPathsWithValue(String valueToMatch, String pathPrefix, in getPathsWithValue() argument