Home | History | Annotate | Download | only in DNS

Lines Matching defs:EOL

41 public static final int EOL		= 1;
98 case EOL:
99 return "<eol>";
119 /** Indicates whether this token contains an EOL or EOF. */
122 return (type == EOL || type == EOF);
247 if (current.type == EOL)
294 return current.set(EOL, null);
315 return current.set(EOL, null);
359 if (current.type == EOL)
545 * Gets the next token from a tokenizer, which must be an EOL or EOF.
546 * @throws TextParseException The input was invalid or not an EOL or EOF token.
552 if (next.type != EOL && next.type != EOF) {
553 throw exception("expected EOL or EOF");
578 * Gets the remaining string tokens until an EOL/EOF is seen, concatenates
603 * Gets the remaining string tokens until an EOL/EOF is seen, concatenates
616 * Gets the remaining string tokens until an EOL/EOF is seen, concatenates
641 EOL/EOF is seen, concatenates