Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/util/
DSimpleXMLSource.java135 public void getPathsWithValue(String valueToMatch, String pathPrefix, Set<String> result) { in getPathsWithValue() argument
150 Set<String> paths = VALUE_TO_PATH.getAll(normalize(valueToMatch)); in getPathsWithValue()
173 public static String normalize(String valueToMatch) { in normalize() argument
174 return replace(NON_ALPHANUM, NFKCCF.normalize(valueToMatch), ""); in normalize()
177 public static String normalizeCaseSensitive(String valueToMatch) { in normalizeCaseSensitive() argument
178 return replace(NON_ALPHANUM, NFKC.normalize(valueToMatch), ""); in normalizeCaseSensitive()
181 public static String replace(UnicodeSet unicodeSet, String valueToMatch, String substitute) { in replace() argument
183 if (valueToMatch.contains("{")) { in replace()
184 valueToMatch = PLACEHOLDER.matcher(valueToMatch).replaceAll("⍰").trim(); in replace()
187 for (int i = 0; i < valueToMatch.length(); ++i) { in replace()
[all …]
DXMLSource.java1595 public void getPathsWithValue(String valueToMatch, String pathPrefix, Set<String> result) { in getPathsWithValue() argument
1605 source.getPathsWithValue(valueToMatch, pathPrefix, pathsWithValue); in getPathsWithValue()
1633 if (norm == null && valueToMatch != null) { in getPathsWithValue()
1634 norm = SimpleXMLSource.normalize(valueToMatch); in getPathsWithValue()
1732 …public abstract void getPathsWithValue(String valueToMatch, String pathPrefix, Set<String> result); in getPathsWithValue() argument
DCLDRFile.java3191 …public Set<String> getPathsWithValue(String valueToMatch, String pathPrefix, Matcher pathMatcher, …
3195 dataSource.getPathsWithValue(valueToMatch, pathPrefix, result);
/external/llvm-project/mlir/lib/Dialect/Affine/IR/
DAffineValueMap.cpp64 static bool findIndex(Value valueToMatch, ArrayRef<Value> valuesToSearch, in findIndex() argument
68 if (valueToMatch == valuesToSearch[i]) { in findIndex()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestXMLSource.java65 public void getPathsWithValue(String valueToMatch, String pathPrefix, in getPathsWithValue() argument