Lines Matching refs:token
6 import java_cup.runtime.token;
298 protected static token do_code_string() throws java.io.IOException in do_code_string()
332 protected static token do_id() throws java.io.IOException in do_id()
358 return new token(keyword_num.intValue()); in do_id()
373 public static token next_token() throws java.io.IOException in next_token()
384 public static token debug_next_token() throws java.io.IOException in debug_next_token()
386 token result = real_next_token(); in debug_next_token()
397 protected static token real_next_token() throws java.io.IOException in real_next_token()
418 return new token(sym_num); in real_next_token()
428 return new token(sym.COLON); in real_next_token()
436 return new token(sym.COLON_COLON_EQUALS); in real_next_token()
441 return new token(sym.COLON); in real_next_token()
461 if (next_char == EOF_CHAR) return new token(sym.EOF); in real_next_token()