Home | History | Annotate | Download | only in ims

Lines Matching refs:lexer

36 import gov.nist.javax.sip.parser.Lexer;
71 protected PVisitedNetworkIDParser(Lexer lexer) {
72 super(lexer);
87 this.lexer.match(TokenTypes.P_VISITED_NETWORK_ID);
88 this.lexer.SPorHT();
89 this.lexer.match(':');
90 this.lexer.SPorHT();
96 if (this.lexer.lookAhead(0) == '\"')
103 this.lexer.SPorHT();
104 char la = lexer.lookAhead(0);
106 this.lexer.match(',');
107 this.lexer.SPorHT();
130 if (this.lexer.lookAhead(0) != '\"')
132 this.lexer.consume(1);
135 char next = this.lexer.getNextChar();
143 next = this.lexer.getNextChar();
166 lexer.match(TokenTypes.ID);
167 Token token = lexer.getNextToken();