Home | History | Annotate | Download | only in parser

Lines Matching refs:lexer

57      * @param lexer -
58 * the lexer to use.
60 protected UserAgentParser(Lexer lexer) {
61 super(lexer);
78 if (this.lexer.lookAhead(0) == '\n')
86 while (this.lexer.lookAhead(0) != '\n'
87 && this.lexer.lookAhead(0) != '\0') {
89 if (this.lexer.lookAhead(0) == '(') {
90 String comment = this.lexer.comment();
100 String product = this.lexer.byteStringNoSlash();
105 if (this.lexer.peekNextToken().getTokenType() == TokenTypes.SLASH) {
107 this.lexer.match(TokenTypes.SLASH);
112 String productVersion = this.lexer.byteStringNoSlash();
124 this.lexer.SPorHT();