Searched refs:lookAhead (Results 1 - 25 of 66) sorted by relevance

123

/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DAcceptEncodingParser.java94 if (lexer.lookAhead(0) == '\n') {
98 while (lexer.lookAhead(0) != '\n') {
100 if (lexer.lookAhead(0) != ';') {
107 while (lexer.lookAhead(0) == ';') {
128 if (lexer.lookAhead(0) == ',') {
H A DAcceptLanguageParser.java91 while (lexer.lookAhead(0) != '\n') {
94 if (lexer.lookAhead(0) != ';') {
101 while (lexer.lookAhead(0) == ';') {
122 if (lexer.lookAhead(0) == ',') {
H A DInReplyToParser.java74 while (lexer.lookAhead(0) != '\n') {
80 if (lexer.lookAhead(0) == '@') {
94 while (lexer.lookAhead(0) == ',') {
102 if (lexer.lookAhead(0) == '@') {
H A DServerParser.java71 if (this.lexer.lookAhead(0) == '\n')
75 while (this.lexer.lookAhead(0) != '\n'
76 && this.lexer.lookAhead(0) != '\0') {
77 if (this.lexer.lookAhead(0) == '(') {
H A DUserAgentParser.java78 if (this.lexer.lookAhead(0) == '\n')
86 while (this.lexer.lookAhead(0) != '\n'
87 && this.lexer.lookAhead(0) != '\0') {
89 if (this.lexer.lookAhead(0) == '(') {
H A DChallengeParser.java96 while (lexer.lookAhead(0) != '\n') {
99 char la = lexer.lookAhead(0);
H A DErrorInfoParser.java74 while (lexer.lookAhead(0) != '\n') {
90 if ( lexer.lookAhead(0) == ',' ) {
H A DParametersParser.java54 while (lexer.lookAhead(0) == ';') {
76 if (lexer.lookAhead(0) != ';') break;
H A DReasonParser.java73 while (lexer.lookAhead(0) != '\n') {
82 if (lexer.lookAhead(0) == ',') {
H A DAlertInfoParser.java77 while (lexer.lookAhead(0) != '\n') {
85 if (this.lexer.lookAhead(0) == '<') {
104 if ( lexer.lookAhead(0) == ',' ) {
H A DContactParser.java60 if (lexer.lookAhead(0) == '*') {
61 final char next = lexer.lookAhead(1);
73 char la = lexer.lookAhead(0);
H A DTimeStampParser.java80 if (lexer.lookAhead(0) == '.') {
100 if (lexer.lookAhead(0) != '\n') {
105 if (lexer.lookAhead(0) == '.') {
H A DViaParser.java93 while (lexer.lookAhead(0) == ';') {
111 if (lexer.lookAhead(0) == '(') {
116 char ch = lexer.lookAhead(0);
157 char la = lexer.lookAhead(0);
168 if (lexer.lookAhead(0) == '\"') {
213 if (this.lexer.lookAhead(0) == ',') {
217 if (this.lexer.lookAhead(0) == '\n')
H A DAddressParser.java53 if (this.lexer.lookAhead(0) == '<') {
69 if (this.lexer.lookAhead(0) == '\"') {
99 char la = lexer.lookAhead(k);
110 char la = lexer.lookAhead(k);
H A DWarningParser.java82 while (lexer.lookAhead(0) != '\n') {
103 if (lexer.lookAhead(0) == ':') {
122 while (lexer.lookAhead(0) == ',') {
147 if (lexer.lookAhead(0) == ':') {
H A DCallInfoParser.java72 while (lexer.lookAhead(0) != '\n') {
87 while (lexer.lookAhead(0) == ',') {
H A DContentEncodingParser.java76 while (lexer.lookAhead(0) != '\n') {
89 while (lexer.lookAhead(0) == ',') {
H A DContentLanguageParser.java74 while (lexer.lookAhead(0) != '\n') {
83 while (lexer.lookAhead(0) == ',') {
H A DProxyRequireParser.java72 while (lexer.lookAhead(0) != '\n') {
84 while (lexer.lookAhead(0) == ',') {
/external/javassist/src/main/javassist/compiler/
H A DParser.java27 public boolean hasMore() { return lex.lookAhead() >= 0; }
46 if (lex.lookAhead() == Identifier && lex.lookAhead(1) == '(') {
63 if (isConstructor || lex.lookAhead() == '(')
78 if (lex.lookAhead() == '=') {
111 if (lex.lookAhead() != ')')
114 int t = lex.lookAhead();
127 if (lex.lookAhead() == THROWS) {
131 if (lex.lookAhead() == ',')
148 if (lex.lookAhead()
[all...]
H A DLex.java65 public int lookAhead() { method in class:Lex
66 return lookAhead(0);
69 public int lookAhead(int i) { method in class:Lex
/external/nist-sip/java/gov/nist/core/
H A DLexerCore.java238 char next = lookAhead(0);
262 char next = lookAhead(0);
279 char c = lookAhead(0);
282 c = lookAhead(0);
322 char nextChar = lookAhead(0);
331 char nextChar = lookAhead(0);
376 char nextChar = lookAhead(0);
394 char nextChar = lookAhead(0);
434 char nextChar = lookAhead(0);
488 char nextChar = lookAhead(
[all...]
H A DStringTokenizer.java130 public char lookAhead() throws ParseException { method in class:StringTokenizer
131 return lookAhead(0);
134 public char lookAhead(int k) throws ParseException { method in class:StringTokenizer
177 char la = lookAhead(0);
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/
H A DPVisitedNetworkIDParser.java96 if (this.lexer.lookAhead(0) == '\"')
104 char la = lexer.lookAhead(0);
130 if (this.lexer.lookAhead(0) != '\"')
H A DSecurityAgreeParser.java104 char la = lexer.lookAhead(0);
117 while (lexer.lookAhead(0) != '\n') {
121 char laInLoop = lexer.lookAhead(0);
145 if (lexer.lookAhead(0) == ';')

Completed in 175 milliseconds

123