Home | History | Annotate | Download | only in parser

Lines Matching refs:lexer

75      * @param lexer Lexer to set
77 protected AcceptEncodingParser(Lexer lexer) {
78 super(lexer);
94 if (lexer.lookAhead(0) == '\n') {
98 while (lexer.lookAhead(0) != '\n') {
100 if (lexer.lookAhead(0) != ';') {
102 lexer.match(TokenTypes.ID);
103 Token value = lexer.getNextToken();
107 while (lexer.lookAhead(0) == ';') {
108 this.lexer.match(';');
109 this.lexer.SPorHT();
110 this.lexer.match('q');
111 this.lexer.SPorHT();
112 this.lexer.match('=');
113 this.lexer.SPorHT();
114 lexer.match(TokenTypes.ID);
115 Token value = lexer.getNextToken();
124 this.lexer.SPorHT();
128 if (lexer.lookAhead(0) == ',') {
129 this.lexer.match(',');
130 this.lexer.SPorHT();