Searched refs:rangeForRegex (Results 1 – 1 of 1) sorted by relevance
403 String rangeForRegex = range.replace("*", "\\p{Alnum}*"); in lookupTag() local404 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() local439 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() argument453 int index = rangeForRegex.lastIndexOf('-'); in truncateRange()[all …]