Home
last modified time | relevance | path

Searched refs:toRegex (Results 1 – 3 of 3) sorted by relevance

/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
DWildcardMatcher.java39 regex.append('(').append(toRegex(part)).append(')'); in WildcardMatcher()
45 private static CharSequence toRegex(final String expression) { in toRegex() method in WildcardMatcher
/external/cldr/tools/java/org/unicode/cldr/util/
DCldrUtility.java650 public static String toRegex(UnicodeSet source) { in toRegex() method in CldrUtility
651 return toRegex(source, null, false); in toRegex()
709 public static String toRegex(UnicodeSet source, Transliterator escaper, boolean onlyBmp) { in toRegex() method in CldrUtility
762 alternates.append('|').append(toRegex(lastToFirst.get(last), escaper, onlyBmp)) in toRegex()
763 .append(toRegex(last, escaper, onlyBmp)); in toRegex()
/external/cldr/tools/java/org/unicode/cldr/test/
DTestMisc.java400 String formatted = CldrUtility.toRegex(test); in testToRegex()