HomeSort by relevance Sort by last modified time
    Searched full:lookahead (Results 51 - 75 of 637) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Tracer.java 47 System.out.println("> "+ruleName+" lookahead(1)="+getInputSymbol(1));
54 System.out.println("< "+ruleName+" lookahead(1)="+getInputSymbol(1));
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRUnbufferedCommonTreeNodeStreamState.h 39 NSMutableArray *lookahead; variable
60 - (NSMutableArray *) lookahead;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
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) == '(') {
WarningParser.java 82 while (lexer.lookAhead(0) != '\n') {
103 if (lexer.lookAhead(0) == ':') {
122 while (lexer.lookAhead(0) == ',') {
147 if (lexer.lookAhead(0) == ':') {
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
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/bison/data/
lalr1.cc 117 /// \param tok the lookahead token.
511 /// Lookahead and lookahead in internal form.
524 /// Semantic value of the lookahead.
527 /// Location of the lookahead.
575 /* Try to take a decision without lookahead. */
580 /* Read a lookahead token. */
618 /* Shift the lookahead token. */
685 lookahead is translated. */
709 /* Make sure we have latest lookahead translation. See comments a
    [all...]
yacc.c 40 # lookahead correction.
182 /* The lookahead symbol. */
209 /* The semantic value of the lookahead symbol. */
212 /* Location data for the lookahead symbol. */
972 /* Establish the initial context for the current lookahead if no initial
976 the initial context for a lookahead as the context in which the
977 parser initially examines that lookahead in order to select a
978 syntactic action. Thus, if the lookahead eventually proves
982 lookahead's place. Moreover, it is the context after which any
990 lookahead token, it should also be invoked before reporting a synta
    [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...]
  /external/bison/examples/calc++/
calc++-parser.cc 335 /// Lookahead and lookahead in internal form.
348 /// Semantic value of the lookahead.
351 /// Location of the lookahead.
404 /* Try to take a decision without lookahead. */
409 /* Read a lookahead token. */
444 /* Shift the lookahead token. */
573 lookahead is translated. */
597 /* Make sure we have latest lookahead translation. See comments at
613 /* If just tried and failed to reuse lookahead token after a
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t019lexer.g 41 * ever match since k=1 lookahead in the QID loop of '.' will make it loop.
  /external/antlr/antlr-3.4/runtime/Python/tests/
t019lexer.g 41 * ever match since k=1 lookahead in the QID loop of '.' will make it loop.
  /external/chromium_org/net/websockets/
websocket_extension_parser.h 42 bool Lookahead(char c);
  /external/nist-sip/java/gov/nist/core/
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/stlport/stlport/stl/config/
_prolog.h 40 # pragma warning 604 10 /* must lookahead to determine... */
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 40 # pragma warning 604 10 /* must lookahead to determine... */
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 40 # pragma warning 604 10 /* must lookahead to determine... */
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 40 # pragma warning 604 10 /* must lookahead to determine... */
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 40 # pragma warning 604 10 /* must lookahead to determine... */
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 40 # pragma warning 604 10 /* must lookahead to determine... */
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/
_prolog.h 40 # pragma warning 604 10 /* must lookahead to determine... */
  /external/chromium_org/third_party/icu/source/tools/genrb/
parse.c 56 struct Lookahead
81 struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; member in struct:__anon11628
99 /* The nature of the lookahead buffer:
101 MAX_LOOKAHEAD lookahead tokens and a slot for the current token and value.
130 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
146 ustr_deinit(&state->lookahead[i].value)
    [all...]
  /external/icu4c/tools/genrb/
parse.cpp 54 struct Lookahead
79 struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; member in struct:__anon19167
97 /* The nature of the lookahead buffer:
99 MAX_LOOKAHEAD lookahead tokens and a slot for the current token and value.
128 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
144 ustr_deinit(&state->lookahead[i].value)
    [all...]

Completed in 8767 milliseconds

1 23 4 5 6 7 8 91011>>