Searched refs:DIGIT_OR_UNDERSCORE (Results 1 – 1 of 1) sorted by relevance
60 private static final CharMatcher DIGIT_OR_UNDERSCORE = inRange('0', '9').or(is('_')); field in ConvertIcuDataTask61 private static final CharMatcher UPPER_UNDERSCORE = inRange('A', 'Z').or(DIGIT_OR_UNDERSCORE);62 private static final CharMatcher LOWER_UNDERSCORE = inRange('a', 'z').or(DIGIT_OR_UNDERSCORE);