Searched refs:toTest (Results 1 – 2 of 2) sorted by relevance
45 public static boolean validChar(char toTest) { in validChar() argument46 if (toTest >= 'A' && toTest <= 'Z') return true; in validChar()47 if (toTest >= 'a' && toTest <= 'z') return true; in validChar()48 if (toTest >= '0' && toTest <= '9') return true; in validChar()49 if (toTest == '_' || toTest == '^' || toTest == '$' || toTest == '~' || in validChar()50 toTest == '!' || toTest == '#' || toTest == '%' || toTest == '&' || in validChar()51 toTest == '-' || toTest == '{' || toTest == '}' || toTest == '(' || in validChar()52 toTest == ')' || toTest == '@' || toTest == '\'' || toTest == '`') in validChar()67 final char toTest = Character.toUpperCase(dirty.charAt(src)); in tidyString() local68 if (isSkipChar(toTest)) continue; in tidyString()[all …]
255 final byte toTest = (byte) (chars[i] & 0xff); in checkValidChars()257 if (toTest < 0x20 && toTest != 0x05) in checkValidChars()261 if (toTest == ILLEGAL_CHARS[j]) in checkValidChars()