Home | History | Annotate | Download | only in parser

Lines Matching refs:lexer

72      * @param lexer Lexer to set
74 protected AcceptLanguageParser(Lexer lexer) {
75 super(lexer);
91 while (lexer.lookAhead(0) != '\n') {
94 if (lexer.lookAhead(0) != ';') {
96 lexer.match(TokenTypes.ID);
97 Token value = lexer.getNextToken();
101 while (lexer.lookAhead(0) == ';') {
102 this.lexer.match(';');
103 this.lexer.SPorHT();
104 this.lexer.match('q');
105 this.lexer.SPorHT();
106 this.lexer.match('=');
107 this.lexer.SPorHT();
108 lexer.match(TokenTypes.ID);
109 Token value = lexer.getNextToken();
118 this.lexer.SPorHT();
122 if (lexer.lookAhead(0) == ',') {
123 this.lexer.match(',');
124 this.lexer.SPorHT();
126 this.lexer.SPorHT();