HomeSort by relevance Sort by last modified time
    Searched refs:LA (Results 101 - 125 of 209) sorted by null

1 2 3 45 6 7 8 9

  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/machine/
asm.h 174 #define LA la
186 #define LA dla
285 LA a0, 9f; \
291 la a0, 9f; \
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/machine/
asm.h 174 #define LA la
186 #define LA dla
285 LA a0, 9f; \
291 la a0, 9f; \
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js 111 if ( input.LA(1)===ttype ) {
136 * Is the following token (LA(2)) the unwanted type (ttype)?
143 return input.LA(2)===ttype;
175 if ( follow.member(input.LA(1)) ||
483 * In this case, for input "[]", LA(1) is in this set so we would
487 * exception (since LA(1) is not in the viable following token
573 * token mismatch. Upon token mismatch, if LA(1) is member of
619 * <p>LA(1) is not what we are looking for. If LA(2) has the right token,
620 * however, then assume LA(1) is some extra spurious token. Delete i
    [all...]
DFA.js 43 c = input.LA(1); // -1 == \uFFFF, all tokens fit in 65000 space
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 134 if (input.LA(1) == ttype) {
156 return input.LA(2) == ttype;
183 if (follow.Member(input.LA(1)) || follow.Member(TokenTypes.EndOfRule)) {
462 * In this case, for input "[]", LA(1) is in this set so we would
466 * exception (since LA(1) is not in the viable following token
548 * token mismatch. Upon token mismatch, if LA(1) is member of
591 * LA(1) is not what we are looking for. If LA(2) has the right token,
592 * however, then assume LA(1) is some extra spurious token. Delete it
593 * and LA(2) as if we were doing a normal match(), which advances th
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 145 if ( input.LA( 1 ) == ttype )
171 return input.LA( 2 ) == ttype;
202 if ( follow.Member( input.LA( 1 ) ) || follow.Member( TokenTypes.EndOfRule ) )
532 * In this case, for input "[]", LA(1) is in this set so we would
536 * exception (since LA(1) is not in the viable following token
619 * token mismatch. Upon token mismatch, if LA(1) is member of
670 * LA(1) is not what we are looking for. If LA(2) has the right token,
671 * however, then assume LA(1) is some extra spurious token. Delete it
672 * and LA(2) as if we were doing a normal match(), which advances th
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Python.stg 166 if self.input.LA(1) == EOF:
787 <label> = self.input.LA(1)<\n>
795 <label> = self.input.LA(1)<\n>
867 <label> = self.input.LA(1)<\n>
953 if self.input.LA(1) == DOWN:
978 LA<decisionNumber>_<stateNumber> = self.input.LA(<k>)<\n>
994 * expect "if ( LA(1)==X ) match(X);" and that's it.
997 LA<decisionNumber>_<stateNumber> = self.input.LA(<k>)<\n
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarLexer.cs 249 int LA1_0 = input.LA(1);
308 int LA2_0 = input.LA(1);
364 int LA3_0 = input.LA(1);
410 int LA4_0 = input.LA(1);
459 switch ( input.LA(1) )
ProfileGrammarLexer.cs 249 int LA1_0 = input.LA(1);
308 int LA2_0 = input.LA(1);
364 int LA3_0 = input.LA(1);
410 int LA4_0 = input.LA(1);
459 switch ( input.LA(1) )
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.m 214 NSInteger LA1_0 = [input LA:1];
280 NSInteger LA2_0 = [input LA:1];
402 NSInteger LA3_0 = [input LA:1];
432 NSInteger LA4_0 = [input LA:1];
499 NSInteger LA5_0 = [input LA:1];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableParser.m 244 NSInteger LA1_0 = [input LA:1];
305 NSInteger LA2_0 = [input LA:1];
409 NSInteger LA3_0 = [input LA:1];
436 NSInteger LA4_0 = [input LA:1];
494 NSInteger LA5_0 = [input LA:1];
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 212 if self.input.LA(1) == ttype:
233 return input.LA(2) == ttype
254 if input.LA(1) in follow or EOR_TOKEN_TYPE in follow:
554 In this case, for input "[]", LA(1) is in this set so we would
558 exception (since LA(1) is not in the viable following token
640 token mismatch. Upon token mismatch, if LA(1) is member of
673 LA(1) is not what we are looking for. If LA(2) has the right token,
674 however, then assume LA(1) is some extra spurious token. Delete it
675 and LA(2) as if we were doing a normal match(), which advances th
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg 217 #undef LA
286 * do not place LA(1) in a temporary at the moment) and even then
305 # define LA(n) ((NEXTCHAR + n) > (DATAP + INPUT->sizeBuf) ? ANTLR3_CHARSTREAM_EOF : (ANTLR3_UCHAR)(*(NEXTCHAR + n - 1)))
326 #define LA(n) INPUT->istream->_LA(INPUT->istream, n)
350 #undef LA
391 #define LA(n) INPUT->istream->_LA(ISTREAM, n)
429 #undef LA
464 #define LA(n) ISTREAM->_LA(ISTREAM, n)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ObjC.stg 391 if ( [input LA:1] == ANTLRCharStreamEOF ) {
978 [input LA:1],
1008 [input LA:1], self.line, self.charPositionInLine,
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeNodeStream.cs 129 public virtual int LA(int i) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeNodeStream.cs 150 public virtual int LA( int i )
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeNodeStream.java 83 public int LA(int i) {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTreeNodeStream.java 120 public int LA(int i) { return adaptor.getType(LT(i)); }
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBufferedTokenStream.h 82 - (NSInteger) LA:(NSInteger)k;
ANTLRStringStream.h 83 - (NSInteger) LA:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBufferedTokenStream.h 82 - (NSInteger) LA:(NSInteger)k;
ANTLRStringStream.h 83 - (NSInteger) LA:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBufferedTokenStream.h 82 - (NSInteger) LA:(NSInteger)k;
ANTLRStringStream.h 83 - (NSInteger) LA:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTokenStream.h 85 - (NSInteger) LA:(NSInteger)i;

Completed in 443 milliseconds

1 2 3 45 6 7 8 9