Searched refs:valueToMatch (Results 1 – 4 of 4) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | SimpleXMLSource.java | 125 public void getPathsWithValue(String valueToMatch, String pathPrefix, Set<String> result) { in getPathsWithValue() argument 140 Set<String> paths = VALUE_TO_PATH.getAll(normalize(valueToMatch)); in getPathsWithValue() 163 public static String normalize(String valueToMatch) { in normalize() argument 164 return replace(NON_ALPHANUM, NFKCCF.normalize(valueToMatch), ""); in normalize() 167 public static String normalizeCaseSensitive(String valueToMatch) { in normalizeCaseSensitive() argument 168 return replace(NON_ALPHANUM, NFKC.normalize(valueToMatch), ""); in normalizeCaseSensitive() 171 public static String replace(UnicodeSet unicodeSet, String valueToMatch, String substitute) { in replace() argument 173 if (valueToMatch.contains("{")) { in replace() 174 valueToMatch = PLACEHOLDER.matcher(valueToMatch).replaceAll("⍰").trim(); in replace() 177 for (int i = 0; i < valueToMatch.length(); ++i) { in replace() [all …]
|
D | XMLSource.java | 1501 public void getPathsWithValue(String valueToMatch, String pathPrefix, Set<String> result) { in getPathsWithValue() argument 1511 source.getPathsWithValue(valueToMatch, pathPrefix, pathsWithValue); in getPathsWithValue() 1540 norm = SimpleXMLSource.normalize(valueToMatch); in getPathsWithValue() 1641 …public abstract void getPathsWithValue(String valueToMatch, String pathPrefix, Set<String> result); in getPathsWithValue() argument
|
D | CLDRFile.java | 3121 …public Set<String> getPathsWithValue(String valueToMatch, String pathPrefix, Matcher pathMatcher, … 3125 dataSource.getPathsWithValue(valueToMatch, pathPrefix, result);
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestXMLSource.java | 65 public void getPathsWithValue(String valueToMatch, String pathPrefix, in getPathsWithValue() argument
|