Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/util/locale/
DLocaleMatcher.java403 String rangeForRegex = range.replace("*", "\\p{Alnum}*"); in lookupTag() local
404 while (!rangeForRegex.isEmpty()) { in lookupTag()
408 if (lowerCaseTag.matches(rangeForRegex) in lookupTag()
415 rangeForRegex = truncateRange(rangeForRegex); in lookupTag()
438 String rangeForRegex = range.replace("*", "\\p{Alnum}*"); in shouldIgnoreLookupMatch() local
439 while (!rangeForRegex.isEmpty()) { in shouldIgnoreLookupMatch()
440 if (tag.matches(rangeForRegex)) { in shouldIgnoreLookupMatch()
444 rangeForRegex = truncateRange(rangeForRegex); in shouldIgnoreLookupMatch()
452 private static String truncateRange(String rangeForRegex) { in truncateRange() argument
453 int index = rangeForRegex.lastIndexOf('-'); in truncateRange()
[all …]