/external/javassist/src/main/javassist/compiler/ |
D | Parser.java | 50 public boolean hasMore() { return lex.lookAhead() >= 0; } in hasMore() 68 if (lex.lookAhead() == Identifier && lex.lookAhead(1) == '(') { in parseMember1() 85 if (isConstructor || lex.lookAhead() == '(') in parseMember1() 99 if (lex.lookAhead() == '=') { in parseField() 132 if (lex.lookAhead() != ')') in parseMethod1() 135 int t = lex.lookAhead(); in parseMethod1() 148 if (lex.lookAhead() == THROWS) { in parseMethod1() 152 if (lex.lookAhead() == ',') in parseMethod1() 169 if (lex.lookAhead() == ';') in parseMethod2() 190 t = lex.lookAhead(); in parseMemberMods() [all …]
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | URLParser.java | 116 char next = lexer.lookAhead(0); in unreserved() 130 char next = lexer.lookAhead(0); in paramNameOrValue() 158 char next = lexer.lookAhead(0); in uriParam() 195 char next = lexer.lookAhead(0); in reserved() 205 return lexer.lookAhead(0) == '%' && in isEscaped() 206 Lexer.isHexDigit(lexer.lookAhead(1)) && in isEscaped() 207 Lexer.isHexDigit(lexer.lookAhead(2)); in isEscaped() 218 char next = lexer.lookAhead(0); in escaped() 219 char next1 = lexer.lookAhead(1); in escaped() 220 char next2 = lexer.lookAhead(2); in escaped() [all …]
|
D | AcceptEncodingParser.java | 94 if (lexer.lookAhead(0) == '\n') { in parse() 98 while (lexer.lookAhead(0) != '\n') { in parse() 100 if (lexer.lookAhead(0) != ';') { in parse() 107 while (lexer.lookAhead(0) == ';') { in parse() 128 if (lexer.lookAhead(0) == ',') { in parse()
|
D | ViaParser.java | 93 while (lexer.lookAhead(0) == ';') { in parseVia() 111 if (lexer.lookAhead(0) == '(') { in parseVia() 116 char ch = lexer.lookAhead(0); in parseVia() 157 char la = lexer.lookAhead(0); in nameValue() 168 if (lexer.lookAhead(0) == '\"') { in nameValue() 213 if (this.lexer.lookAhead(0) == ',') { in parse() 217 if (this.lexer.lookAhead(0) == '\n') in parse()
|
D | ServerParser.java | 71 if (this.lexer.lookAhead(0) == '\n') in parse() 75 while (this.lexer.lookAhead(0) != '\n' in parse() 76 && this.lexer.lookAhead(0) != '\0') { in parse() 77 if (this.lexer.lookAhead(0) == '(') { in parse()
|
D | AcceptLanguageParser.java | 91 while (lexer.lookAhead(0) != '\n') { in parse() 94 if (lexer.lookAhead(0) != ';') { in parse() 101 while (lexer.lookAhead(0) == ';') { in parse() 122 if (lexer.lookAhead(0) == ',') { in parse()
|
D | InReplyToParser.java | 74 while (lexer.lookAhead(0) != '\n') { in parse() 80 if (lexer.lookAhead(0) == '@') { in parse() 94 while (lexer.lookAhead(0) == ',') { in parse() 102 if (lexer.lookAhead(0) == '@') { in parse()
|
D | UserAgentParser.java | 78 if (this.lexer.lookAhead(0) == '\n') in parse() 86 while (this.lexer.lookAhead(0) != '\n' in parse() 87 && this.lexer.lookAhead(0) != '\0') { in parse() 89 if (this.lexer.lookAhead(0) == '(') { in parse()
|
D | AddressParser.java | 53 if (this.lexer.lookAhead(0) == '<') { in nameAddr() 69 if (this.lexer.lookAhead(0) == '\"') { in nameAddr() 99 char la = lexer.lookAhead(k); in address() 110 char la = lexer.lookAhead(k); in address()
|
D | WarningParser.java | 82 while (lexer.lookAhead(0) != '\n') { in parse() 103 if (lexer.lookAhead(0) == ':') { in parse() 122 while (lexer.lookAhead(0) == ',') { in parse() 147 if (lexer.lookAhead(0) == ':') { in parse()
|
D | AlertInfoParser.java | 77 while (lexer.lookAhead(0) != '\n') { in parse() 85 if (this.lexer.lookAhead(0) == '<') { in parse() 104 if ( lexer.lookAhead(0) == ',' ) { in parse()
|
D | ContactParser.java | 60 if (lexer.lookAhead(0) == '*') { in parse() 61 final char next = lexer.lookAhead(1); in parse() 73 char la = lexer.lookAhead(0); in parse()
|
D | TimeStampParser.java | 80 if (lexer.lookAhead(0) == '.') { in parse() 100 if (lexer.lookAhead(0) != '\n') { in parse() 105 if (lexer.lookAhead(0) == '.') { in parse()
|
D | ParametersParser.java | 54 while (lexer.lookAhead(0) == ';') { in parse() 76 if (lexer.lookAhead(0) != ';') break; in parseNameValueList()
|
D | ReasonParser.java | 73 while (lexer.lookAhead(0) != '\n') { in parse() 82 if (lexer.lookAhead(0) == ',') { in parse()
|
D | ChallengeParser.java | 96 while (lexer.lookAhead(0) != '\n') { in parse() 99 char la = lexer.lookAhead(0); in parse()
|
D | ErrorInfoParser.java | 74 while (lexer.lookAhead(0) != '\n') { in parse() 90 if ( lexer.lookAhead(0) == ',' ) { in parse()
|
D | ContentLanguageParser.java | 74 while (lexer.lookAhead(0) != '\n') { in parse() 83 while (lexer.lookAhead(0) == ',') { in parse()
|
D | RequireParser.java | 75 while (lexer.lookAhead(0) != '\n') { in parse() 87 while (lexer.lookAhead(0) == ',') { in parse()
|
/external/nist-sip/java/gov/nist/core/ |
D | LexerCore.java | 238 char next = lookAhead(0); in match() 262 char next = lookAhead(0); in match() 279 char c = lookAhead(0); in SPorHT() 282 c = lookAhead(0); in SPorHT() 322 char nextChar = lookAhead(0); in startsId() 331 char nextChar = lookAhead(0); in startsSafeToken() 376 char nextChar = lookAhead(0); in ttoken() 434 char nextChar = lookAhead(0); in ttokenSafe() 488 char nextChar = lookAhead(0); in consumeValidChars() 527 if (lookAhead(0) != '\"') in quotedString() [all …]
|
D | StringTokenizer.java | 130 public char lookAhead() throws ParseException { in lookAhead() method in StringTokenizer 131 return lookAhead(0); in lookAhead() 134 public char lookAhead(int k) throws ParseException { in lookAhead() method in StringTokenizer 177 char la = lookAhead(0); in getNextToken()
|
D | HostNameParser.java | 105 char la = lexer.lookAhead(0); in ipv6Reference() 148 char la = lexer.lookAhead(0); in ipv6Reference() 178 if (lexer.lookAhead(0) == '[') { in host() 271 char la = lexer.lookAhead(0); in hostPort() 307 " Illegal character in hostname:" + lexer.lookAhead(0), in hostPort()
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
D | SecurityAgreeParser.java | 104 char la = lexer.lookAhead(0); in parse() 117 while (lexer.lookAhead(0) != '\n') { in parse() 121 char laInLoop = lexer.lookAhead(0); in parse() 145 if (lexer.lookAhead(0) == ';') in parse()
|
D | PVisitedNetworkIDParser.java | 96 if (this.lexer.lookAhead(0) == '\"') in parse() 104 char la = lexer.lookAhead(0); in parse() 130 if (this.lexer.lookAhead(0) != '\"') in parseQuotedString()
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | Analyzer.java | 139 frames[iter.lookAhead()] = firstFrame(method, maxLocals, maxStack); in analyze() 194 mergeJsr(queue, frames[pos], subroutines[target], pos, lookAhead(iter, pos)); in analyzeNextEntry() 196 merge(queue, frame, lookAhead(iter, pos)); in analyzeNextEntry() 202 merge(queue, frame, lookAhead(iter, pos)); in analyzeNextEntry() 260 int next = iter.lookAhead(); in getNext() 267 private int lookAhead(CodeIterator iter, int pos) throws BadBytecode { in lookAhead() method in Analyzer 271 return iter.lookAhead(); in lookAhead()
|