Home | History | Annotate | Download | only in java_cup

Lines Matching full:character

54   /** First character of lookahead. */
57 /** Second character of lookahead. */
76 /** Table of single character symbols. For ease of implementation, we
77 * store all unambiguous single character tokens in this table of Integer
79 * appropriate char (currently Character objects have a bug which precludes
91 /** Character position in current line. */
127 /* set up the table of single character symbols */
144 /** Advance the scanner one character in the input stream. This moves
197 /** Determine if a character is ok to start an id.
198 * @param ch the character in question.
210 /** Determine if a character is ok for the middle of an id.
211 * @param ch the character in question.
220 /** Try to look up a single character symbol, returns -1 for not found.
221 * @param ch the character in question.
316 result.append(new Character((char)next_char));
339 /* next_char holds first character of id */
407 /* advance past it and try the next character */
412 /* look for a single character symbol */
463 /* if we get here, we have an unrecognized character */
464 emit_warn("Unrecognized character '" +
465 new Character((char)next_char) + "'(" + next_char +