Home
last modified time | relevance | path

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

/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/api/
DPathMatcherTest.java25 assertTrue("is prefix match", calPaths.stream().allMatch(calendarPrefix::matchesPrefixOf)); in TestMatcher()
31 calPaths.stream().filter(chineseCalendars::matchesPrefixOf).collect(toList()), in TestMatcher()
/external/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/
DSupplementalMapperTest.java78 PathMatcher.of("//supplementalData/likelySubtags")::matchesPrefixOf; in testPathFilter()
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/
DPluralsMapper.java148 return matcher.matchesPrefixOf(value.getPath()) ? value : null; in filterByType()
/external/cldr/tools/java/org/unicode/cldr/api/
DPathMatcher.java129 public boolean matchesPrefixOf(CldrPath path) { in matchesPrefixOf() method in PathMatcher
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DLdmlConverter.java124 return PathMatcher.of("//supplementalData/" + spec[0])::matchesPrefixOf; in supplementalMatcher()
129 .map(m -> ((Predicate<CldrPath>) m::matchesPrefixOf)) in supplementalMatcher()
DPseudoLocales.java231 .map(s -> (Predicate<CldrPath>) ldml(s)::matchesPrefixOf) in matchAnyLdmlPrefix()