OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lookAhead
(Results
1 - 25
of
81
) sorted by null
1
2
3
4
/external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptEncodingParser.java
94
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) == ',') {
AcceptLanguageParser.java
91
while (lexer.
lookAhead
(0) != '\n') {
94
if (lexer.
lookAhead
(0) != ';') {
101
while (lexer.
lookAhead
(0) == ';') {
122
if (lexer.
lookAhead
(0) == ',') {
InReplyToParser.java
74
while (lexer.
lookAhead
(0) != '\n') {
80
if (lexer.
lookAhead
(0) == '@') {
94
while (lexer.
lookAhead
(0) == ',') {
102
if (lexer.
lookAhead
(0) == '@') {
ServerParser.java
71
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) == '(') {
UserAgentParser.java
78
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) == '(') {
ChallengeParser.java
96
while (lexer.
lookAhead
(0) != '\n') {
99
char la = lexer.
lookAhead
(0);
ErrorInfoParser.java
74
while (lexer.
lookAhead
(0) != '\n') {
90
if ( lexer.
lookAhead
(0) == ',' ) {
ParametersParser.java
54
while (lexer.
lookAhead
(0) == ';') {
76
if (lexer.
lookAhead
(0) != ';') break;
ReasonParser.java
73
while (lexer.
lookAhead
(0) != '\n') {
82
if (lexer.
lookAhead
(0) == ',') {
AlertInfoParser.java
77
while (lexer.
lookAhead
(0) != '\n') {
85
if (this.lexer.
lookAhead
(0) == '<') {
104
if ( lexer.
lookAhead
(0) == ',' ) {
ContactParser.java
60
if (lexer.
lookAhead
(0) == '*') {
61
final char next = lexer.
lookAhead
(1);
73
char la = lexer.
lookAhead
(0);
TimeStampParser.java
80
if (lexer.
lookAhead
(0) == '.') {
100
if (lexer.
lookAhead
(0) != '\n') {
105
if (lexer.
lookAhead
(0) == '.') {
ViaParser.java
93
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')
AddressParser.java
53
if (this.lexer.
lookAhead
(0) == '<') {
69
if (this.lexer.
lookAhead
(0) == '\"') {
99
char la = lexer.
lookAhead
(k);
110
char la = lexer.
lookAhead
(k);
WarningParser.java
82
while (lexer.
lookAhead
(0) != '\n') {
103
if (lexer.
lookAhead
(0) == ':') {
122
while (lexer.
lookAhead
(0) == ',') {
147
if (lexer.
lookAhead
(0) == ':') {
CallInfoParser.java
72
while (lexer.
lookAhead
(0) != '\n') {
87
while (lexer.
lookAhead
(0) == ',') {
ContentEncodingParser.java
76
while (lexer.
lookAhead
(0) != '\n') {
89
while (lexer.
lookAhead
(0) == ',') {
ContentLanguageParser.java
74
while (lexer.
lookAhead
(0) != '\n') {
83
while (lexer.
lookAhead
(0) == ',') {
ProxyRequireParser.java
72
while (lexer.
lookAhead
(0) != '\n') {
84
while (lexer.
lookAhead
(0) == ',') {
/external/javassist/src/main/javassist/compiler/
Parser.java
27
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
...]
Lex.java
65
public int
lookAhead
() {
66
return
lookAhead
(0);
69
public int
lookAhead
(int i) {
/external/nist-sip/java/gov/nist/core/
LexerCore.java
238
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
(0)
[
all
...]
StringTokenizer.java
130
public char
lookAhead
() throws ParseException {
131
return
lookAhead
(0);
134
public char
lookAhead
(int k) throws ParseException {
177
char la =
lookAhead
(0);