Home | History | Annotate | Download | only in parser

Lines Matching refs:lexer

53      * @param lexer the lexer to use to parse the header
55 protected CallInfoParser(Lexer lexer) {
56 super(lexer);
72 while (lexer.lookAhead(0) != '\n') {
76 this.lexer.SPorHT();
77 this.lexer.match('<');
78 URLParser urlParser=new URLParser((Lexer)this.lexer);
81 this.lexer.match('>');
82 this.lexer.SPorHT();
87 while (lexer.lookAhead(0) == ',') {
88 this.lexer.match(',');
89 this.lexer.SPorHT();
93 this.lexer.SPorHT();
94 this.lexer.match('<');
95 urlParser=new URLParser((Lexer)this.lexer);
98 this.lexer.match('>');
99 this.lexer.SPorHT();