/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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | ProxyRequireParser.java | 72 while (lexer.lookAhead(0) != '\n') { in parse() 84 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 | 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()
|
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()
|
/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/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | CollationIterator.java | 715 int lookAhead = 1; in nextCE32FromContraction() local 740 sinceMatch < lookAhead)) { in nextCE32FromContraction() 750 lookAhead -= sinceMatch - 1; in nextCE32FromContraction() 755 d, suffixes, ce32, lookAhead, c); in nextCE32FromContraction() 767 ++lookAhead; in nextCE32FromContraction() 776 int lookAhead, int c) { in nextCE32FromDiscontiguousContraction() argument 802 ++lookAhead; in nextCE32FromDiscontiguousContraction() 819 if(lookAhead > 2) { in nextCE32FromDiscontiguousContraction() 821 backwardNumCodePoints(lookAhead); in nextCE32FromDiscontiguousContraction() 823 for(int i = 3; i < lookAhead; ++i) { in nextCE32FromDiscontiguousContraction()
|
/external/icu/icu4c/source/i18n/ |
D | collationiterator.cpp | 497 int32_t lookAhead = 1; in nextCE32FromContraction() local 522 sinceMatch < lookAhead)) { in nextCE32FromContraction() 532 lookAhead -= sinceMatch - 1; in nextCE32FromContraction() 537 d, suffixes, ce32, lookAhead, c, errorCode); in nextCE32FromContraction() 549 ++lookAhead; in nextCE32FromContraction() 559 int32_t lookAhead, UChar32 c, in nextCE32FromDiscontiguousContraction() argument 588 ++lookAhead; in nextCE32FromDiscontiguousContraction() 609 if(lookAhead > 2) { in nextCE32FromDiscontiguousContraction() 611 backwardNumCodePoints(lookAhead, errorCode); in nextCE32FromDiscontiguousContraction() 613 for(int32_t i = 3; i < lookAhead; ++i) { in nextCE32FromDiscontiguousContraction()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationIterator.java | 713 int lookAhead = 1; in nextCE32FromContraction() local 738 sinceMatch < lookAhead)) { in nextCE32FromContraction() 748 lookAhead -= sinceMatch - 1; in nextCE32FromContraction() 753 d, suffixes, ce32, lookAhead, c); in nextCE32FromContraction() 765 ++lookAhead; in nextCE32FromContraction() 774 int lookAhead, int c) { in nextCE32FromDiscontiguousContraction() argument 800 ++lookAhead; in nextCE32FromDiscontiguousContraction() 817 if(lookAhead > 2) { in nextCE32FromDiscontiguousContraction() 819 backwardNumCodePoints(lookAhead); in nextCE32FromDiscontiguousContraction() 821 for(int i = 3; i < lookAhead; ++i) { in nextCE32FromDiscontiguousContraction()
|