/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
AVT.java | 196 String lookahead = null; // next token local 201 if (lookahead != null) 203 t = lookahead; 204 lookahead = null; 228 lookahead = tokenizer.nextToken(); 230 if (lookahead.equals("{")) 234 buffer.append(lookahead); 236 lookahead = null; 242 else if(lookahead.equals("\"") || lookahead.equals("\'") [all...] |
/cts/tools/dasm/src/java_cup/ |
lalr_item.java | 7 * a set of lookahead symbols (terminal). (The first two of these parts 16 * that B has already been parsed, and that we will expect to see a lookahead 20 * Items may initially be missing some items from their lookahead sets. 22 * to be updated if symbols are added to its lookahead set. During 23 * "lookahead propagation", we add symbols to various lookahead sets and 40 * @param look the set of lookahead symbols. 55 * @param look the set of lookahead symbols. 64 /** Constructor with default position and empty lookahead set. 76 /** The lookahead symbols of the item. * 80 public terminal_set lookahead() {return _lookahead;}; method in class:lalr_item [all...] |
lalr_item_set.java | 9 * (i.e., ignoring differences in their lookahead sets).<p> 112 /** Add a singleton item, merging lookahead sets if the item is already 126 /* if so, merge this lookahead into the original and leave it */ 129 other.lookahead().add(itm.lookahead()); 232 * differing lookahead sets are merged by creating a new item with the same 233 * core and the union of the lookahead sets (the LA in LALR stands for 234 * "lookahead merged" and this is where the merger is). This routine 265 /* create the lookahead set based on first after dot */ 266 new_lookaheads = itm.calc_lookahead(itm.lookahead()); [all...] |
/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...] |
/external/llvm/test/CodeGen/ARM/ |
2011-06-29-MergeGlobalsAlign.ll | 10 @lookahead = internal unnamed_addr global i32 0, align 4
|
/external/harfbuzz/src/ |
harfbuzz-gsub-private.h | 280 HB_UShort* Lookahead; /* array of lookahead glyph IDs */ 288 /* total number of lookahead glyphs */ 321 HB_UShort* Lookahead; /* array of lookahead classes */ 330 /* total number of lookahead 375 /* maximal lookahead length */ 392 /* array of lookahead coverage 401 /* number of lookahead glyphs */ 439 HB_Coverage* LookaheadCoverage; /* array of lookahead Coverag [all...] |
harfbuzz-gpos-private.h | 542 HB_UShort* Lookahead; /* array of lookahead glyph IDs */ 550 /* total number of lookahead glyphs */ 583 HB_UShort* Lookahead; /* array of lookahead classes */ 592 /* total number of lookahead 630 /* maximal lookahead length */ 658 /* number of lookahead glyphs */ 660 /* array of lookahead coverage
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
URLParser.java | 116 char next = lexer.lookAhead(0); 130 char next = lexer.lookAhead(0); 158 char next = lexer.lookAhead(0); 195 char next = lexer.lookAhead(0); 205 return lexer.lookAhead(0) == '%' && 206 Lexer.isHexDigit(lexer.lookAhead(1)) && 207 Lexer.isHexDigit(lexer.lookAhead(2)); 218 char next = lexer.lookAhead(0); 219 char next1 = lexer.lookAhead(1); 220 char next2 = lexer.lookAhead(2) [all...] |
ContactParser.java | 60 if (lexer.lookAhead(0) == '*') { 61 final char next = lexer.lookAhead(1); 73 char la = 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')
|
ChallengeParser.java | 96 while (lexer.lookAhead(0) != '\n') { 99 char la = lexer.lookAhead(0);
|
ParametersParser.java | 54 while (lexer.lookAhead(0) == ';') { 76 if (lexer.lookAhead(0) != ';') break;
|
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) == '(') {
|
/external/v8/test/mjsunit/regress/ |
regress-176.js | 32 "zero length match in (?:) with capture in lookahead"); 35 "zero length match in (?=) with capture in lookahead"); 38 "non-zero length match with capture in lookahead");
|
/frameworks/compile/slang/ |
slang_pragma_recorder.cpp | 65 const clang::Token* NextToken = &PP.LookAhead(0); 72 NextToken = &PP.LookAhead(0); 79 NextToken = &PP.LookAhead(0);
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
SecurityAgreeParser.java | 104 char la = lexer.lookAhead(0); 117 while (lexer.lookAhead(0) != '\n') { 121 char laInLoop = lexer.lookAhead(0); 145 if (lexer.lookAhead(0) == ';')
|
PVisitedNetworkIDParser.java | 96 if (this.lexer.lookAhead(0) == '\"') 104 char la = lexer.lookAhead(0); 130 if (this.lexer.lookAhead(0) != '\"')
|
PChargingVectorParser.java | 75 while (lexer.lookAhead(0) != '\n') { 78 char la = lexer.lookAhead(0);
|
ServiceRouteParser.java | 87 if (lexer.lookAhead(0) == ',') { 90 } else if (lexer.lookAhead(0) == '\n')
|
/external/antlr/src/org/antlr/runtime/debug/ |
Profiler.java | 254 " lookahead "+d.k +" max token "+lastRealTokenTouchedInDecision); 270 // compute lookahead depth 291 /** Track refs to lookahead if in a fixed/nonfixed decision. 307 // // compute lookahead depth 349 /** Successful or not, track how much lookahead synpreds use */ 577 // buf.append("number of fixed lookahead decisions "); 580 // buf.append("min lookahead used in a fixed lookahead decision "); 583 // buf.append("max lookahead used in a fixed lookahead decision ") [all...] |
Tracer.java | 47 System.out.println("> "+ruleName+" lookahead(1)="+getInputSymbol(1)); 54 System.out.println("< "+ruleName+" lookahead(1)="+getInputSymbol(1));
|
/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);
|
/external/zlib/ |
deflate.c | 340 * s->lookahead stays null, so s->ins_h will be recomputed at the next 816 if (strm->avail_in != 0 || s->lookahead != 0 || 850 if (s->lookahead == 0) { [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
deflate.c | 114 /* Minimum amount of lookahead, except at the end of the input file. 344 * s->lookahead stays null, so s->ins_h will be recomputed at the next 786 if (strm->avail_in != 0 || s->lookahead != 0 || [all...] |