Home | History | Annotate | Download | only in parse

Lines Matching refs:ch

30   private char ch;
51 if (ch == '\\' && evenLeadingSlashes) {
56 return ch;
67 if (ch != 'u') {
69 ch = '\\';
75 } while (ch == 'u');
76 char acc = (char) ((hexDigit(ch) & 0xff) << 12);
78 acc |= (char) ((hexDigit(ch) & 0xff) << 8);
80 acc |= (char) ((hexDigit(ch) & 0xff) << 4);
82 acc |= (char) (hexDigit(ch) & 0xff);
83 ch = acc;
84 evenLeadingSlashes = ch != '\\';
125 * <p>Once the input is exhausted, {@code ch} will always be ASCII SUB (\u001a). JLS §3.5 requires
130 ch = done() ? ASCII_SUB : input.charAt(idx);