Home | History | Annotate | Download | only in parser

Lines Matching refs:lexer

54      * @param lexer the lexer to use to parse the header
56 protected TimeStampParser(Lexer lexer) {
57 super(lexer);
75 this.lexer.SPorHT();
76 String firstNumber = this.lexer.number();
80 if (lexer.lookAhead(0) == '.') {
81 this.lexer.match('.');
82 String secondNumber = this.lexer.number();
99 this.lexer.SPorHT();
100 if (lexer.lookAhead(0) != '\n') {
101 firstNumber = this.lexer.number();
105 if (lexer.lookAhead(0) == '.') {
106 this.lexer.match('.');
107 String secondNumber = this.lexer.number();