Searched refs:pathMatcher (Results 1 – 8 of 8) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | SearchXml.java | 37 private static Matcher pathMatcher; field in SearchXml 100 pathMatcher = getMatcher(myOptions.get("path").getValue(), exclude); in main() 113 if (pathMatcher != null && valueMatcher != null) { in main() 354 if (pathMatcher != null && pathExclude == pathMatcher.reset(path).find()) { in checkFiles() 395 for (int i = 0; i <= pathMatcher.groupCount(); ++i) { in checkFiles() 396 pattern = pattern.replace("$" + i, pathMatcher.group(i)); in checkFiles() 405 if (kountRegexMatches != null && pathMatcher != null) { in checkFiles() 406 kountRegexMatches.add(pathMatcher.group(1), 1); in checkFiles() 420 ? group(value, valueMatcher) + "\t" + group(path, pathMatcher) in checkFiles()
|
D | XMLModify.java | 70 Matcher pathMatcher = Pattern.compile(MyOptions.pathRegex.option.getValue()).matcher(""); in main() local 89 if (pathMatcher.reset(path).matches()) { in main()
|
D | SearchCLDR.java | 98 private static Matcher pathMatcher; field in SearchCLDR 118 pathMatcher = getMatcher(myOptions.get("path").getValue(), exclude); in main() 271 if (pathMatcher != null && pathExclude == pathMatcher.reset(fullPath).find()) { in main()
|
D | GenerateSidewaysView.java | 157 private static Matcher pathMatcher; field in GenerateSidewaysView 164 …pathMatcher = options[PATH].value == null ? null : PatternCache.get(options[PATH].value).matcher("… in main() 631 if (pathMatcher != null && !pathMatcher.reset(path).matches()) { in loadInformation()
|
D | GenerateXMB.java | 120 static Matcher pathMatcher; field in GenerateXMB 158 pathMatcher = option.doesOccur() ? PatternCache.get(option.getValue()).matcher("") : null; in main() 251 if (pathMatcher != null && !pathMatcher.reset(path).matches()) { in compareFiles() 1113 if (pathMatcher != null in EnglishInfo() 1114 && !pathMatcher.reset(path).find()) { in EnglishInfo()
|
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/ |
D | ResultSpec.java | 362 Matcher pathMatcher = ARG_PLACEHOLDER.matcher(rbPathSpec); in maybeRewriteFallbackSpec() local 363 checkState(pathMatcher.find(), in maybeRewriteFallbackSpec() 370 groupIds.add(pathMatcher.group().charAt(1)); in maybeRewriteFallbackSpec() 371 } while (pathMatcher.find()); in maybeRewriteFallbackSpec()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | CLDRFile.java | 3191 …ing> getPathsWithValue(String valueToMatch, String pathPrefix, Matcher pathMatcher, Set<String> re… 3196 if (pathMatcher == null) { 3201 if (!pathMatcher.reset(path).matches()) { 3216 public Set<String> getPaths(String pathPrefix, Matcher pathMatcher, Set<String> result) { 3222 if (pathMatcher != null && !pathMatcher.reset(path).matches()) {
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestInheritance.java | 50 private static Matcher pathMatcher = PatternCache.get( field in TestInheritance 750 if (!pathMatcher.reset(path).find()) { in TestCldrFileConsistency()
|