Home
last modified time | relevance | path

Searched refs:regexString (Results 1 – 2 of 2) sorted by relevance

/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DMinimizeRegex.java36 String regexString = args.length < 1 ? defaultArg : args[0]; in main()
41 String recompressed = compressWith(regexString, set, flattenedOut); in main()
46 public static String compressWith(String regexString, UnicodeSet set) {
47 return compressWith(regexString, set, null);
56 …public static String compressWith(String regexString, UnicodeSet set, Output<Set<String>> flattene…
57 Set<String> flattened = flatten(Pattern.compile(regexString), "", set);
61 …throw new IllegalArgumentException("Failed to compress: " + regexString + " using " + set + ", got…
/external/icu/android_icu4j/libcore_bridge/src/native/
Dcom_android_icu_util_regex_PatternNative.cpp93 icu::UnicodeString& regexString(regex.unicodeString()); in PatternNative_compileImpl() local
94 icu::RegexPattern* result = icu::RegexPattern::compile(regexString, flags, error, status); in PatternNative_compileImpl()