Searched refs:LA (Results 126 - 150 of 201) sorted by relevance

123456789

/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRBufferedTokenStream.h85 - (NSInteger) LA:(NSInteger)i;
H A DANTLRCommonTreeNodeStream.h94 - (NSInteger) LA:(NSInteger) i;
H A DANTLRUnbufferedCommonTreeNodeStream.h97 - (NSInteger) LA:(NSUInteger) i;
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DDFA.pm88 my $c = $input->LA(1); # -1 == \uFFFF, all tokens fit in 65000 space
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddfa.py92 c = input.LA(1)
94 #print "LA = %d (%r)" % (c, unichr(c) if c >= 0 else 'EOF')
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as67 if ( input.LA(1)==ttype ) {
89 return input.LA(2)==ttype;
115 if ( follow.member(input.LA(1)) || follow.member(TokenConstants.EOR_TOKEN_TYPE) ) {
411 * In this case, for input "[]", LA(1) is in this set so we would
415 * exception (since LA(1) is not in the viable following token
495 * token mismatch. Upon token mismatch, if LA(1) is member of
531 * LA(1) is not what we are looking for. If LA(2) has the right token,
532 * however, then assume LA(1) is some extra spurious token. Delete it
533 * and LA(
[all...]
H A DDFA.as70 if ( debug ) trace("DFA "+decisionNumber+" state "+s+" LA(1)="+String.fromCharCode(input.LA(1))+"("+input.LA(1)+
95 var c:int = input.LA(1); // -1 == \uFFFF, all tokens fit in 65000 space
H A DCommonTokenStream.as288 public function LA(i:int):int { function
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCParser.java93 int LA1_0 = input.LA(1);
489 int LA4_0 = input.LA(1);
508 int LA3_0 = input.LA(1);
712 if ( input.LA(1)==ID||(input.LA(1)>=INT_TYPE && input.LA(1)<=VOID) ) {
780 int LA5_0 = input.LA(1);
783 int LA5_2 = input.LA(2);
819 int LA6_0 = input.LA(1);
939 switch ( input.LA(
[all...]
H A DSimpleCParser.m1003 NSInteger LA1_0 = [input LA:1];
1538 NSInteger LA4_0 = [input LA:1];
1558 NSInteger LA3_0 = [input LA:1];
1838 if ([input LA:1] == K_CHAR||[input LA:1] == K_ID||[input LA:1] == K_INT_TYPE||[input LA:1] == K_VOID) {
1927 NSInteger LA5_0 = [input LA:1];
1929 NSInteger LA5_2 = [input LA:2];
1966 NSInteger LA6_0 = [input LA
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCParser.java93 int LA1_0 = input.LA(1);
489 int LA4_0 = input.LA(1);
508 int LA3_0 = input.LA(1);
712 if ( input.LA(1)==ID||(input.LA(1)>=INT_TYPE && input.LA(1)<=VOID) ) {
780 int LA5_0 = input.LA(1);
783 int LA5_2 = input.LA(2);
819 int LA6_0 = input.LA(1);
939 switch ( input.LA(
[all...]
H A DSimpleCParser.m883 NSInteger LA1_0 = [input LA:1];
1360 NSInteger LA4_0 = [input LA:1];
1377 NSInteger LA3_0 = [input LA:1];
1627 if ((([input LA:1] >= K_ID) && ([input LA:1] <= K_VOID))) {
1706 switch ([input LA:1]) {
1709 NSInteger LA5_2 = [input LA:2];
1719 NSInteger LA5_3 = [input LA:2];
1758 NSInteger LA6_0 = [input LA:1];
1896 switch ([input LA
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammarParser.cs173 int LA1_0 = input.LA(1);
737 if ( (input.LA(1)>=ID && input.LA(1)<=INT) )
848 int LA4_0 = input.LA(1);
879 int LA3_0 = input.LA(1);
1059 int LA5_0 = input.LA(1);
1083 if ( input.LA(1)==11||(input.LA(1)>=14 && input.LA(1)<=15) )
1211 switch ( input.LA(
[all...]
H A DProfileGrammarParser.cs177 int LA1_0 = input.LA(1);
741 if ( (input.LA(1)>=ID && input.LA(1)<=INT) )
852 int LA4_0 = input.LA(1);
883 int LA3_0 = input.LA(1);
1063 int LA5_0 = input.LA(1);
1087 if ( input.LA(1)==11||(input.LA(1)>=14 && input.LA(1)<=15) )
1215 switch ( input.LA(
[all...]
H A DDebugTreeGrammar.cs130 int LA1_0 = input.LA(1);
231 switch ( input.LA(1) )
339 int LA2_0 = input.LA(1);
454 switch ( input.LA(1) )
H A DProfileTreeGrammar.cs135 int LA1_0 = input.LA(1);
236 switch ( input.LA(1) )
344 int LA2_0 = input.LA(1);
459 switch ( input.LA(1) )
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg210 if (input.LA(1) == CharStreamConstants.EndOfFile)
927 <label> = input.LA(1);<\n>
935 <label> = input.LA(1);<\n>
982 <label>= input.LA(1);
1025 <label> = input.LA(1);<\n>
1108 if (input.LA(1) == TokenTypes.Down)
1135 int LA<decisionNumber>_<stateNumber> = input.LA(<k>);<\n>
1154 * expect "if ( LA(1)==X ) match(X);" and that's it.
1157 int LA<decisionNumbe
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DCSharp3.stg205 if (input.LA(1) == CharStreamConstants.EndOfFile)
907 <label> = input.LA(1);<\n>
915 <label> = input.LA(1);<\n>
962 <label>= input.LA(1);
1005 <label> = input.LA(1);<\n>
1087 if (input.LA(1) == TokenTypes.Down)
1114 int LA<decisionNumber>_<stateNumber> = input.LA(<k>);<\n>
1133 * expect "if ( LA(1)==X ) match(X);" and that's it.
1136 int LA<decisionNumbe
[all...]
/external/smali/smali/src/main/antlr3/org/jf/smali/
H A DsmaliLexer.g286 | ~( '\\' | '"' | '\r' | '\n' ) {sb.append((char)input.LA(-1));}
297 | ~( '\\' | '\'' | '\r' | '\n' ) {sb.append((char)input.LA(-1));}
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
H A DgUnit.g197 int c = input.LA(-1);
200 c = input.LA(--i);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangParser.m473 if ([input LA:1] == FLOATTYPE||[input LA:1] == INTTYPE) {
/external/clang/include/clang/Sema/
H A DTemplate.h435 // will be stored in LA.
436 void enableLateAttributeInstantiation(Sema::LateInstantiatedAttrVec *LA) {
437 LateAttrs = LA;
/external/clang/lib/Parse/
H A DParseDecl.cpp140 LateParsedAttribute *LA = local
142 LateAttrs->push_back(LA);
147 getCurrentClass().LateParsedDeclarations.push_back(LA);
150 ConsumeAndStoreUntil(tok::r_paren, LA->Toks, true, false);
155 LA->Toks.push_back(Eof);
883 void Parser::ParseLexedAttribute(LateParsedAttribute &LA, argument
890 LA.Toks.push_back(Tok);
891 PP.EnterTokenStream(LA.Toks.data(), LA.Toks.size(), true, false);
895 if (OnDefinition && !IsThreadSafetyAttribute(LA
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
H A DDelphi.stg245 if (Input.LA(1) = Integer(cscEOF)) then
1056 <label> := Input.LA(1);<\n>
1064 <label> := Input.LA(1);<\n>
1073 <label> := Input.LA(1);<\n>
1136 <label> := Input.LA(1);<\n>
1209 if (Input.LA(1) = TToken.DOWN) then
1236 FLA[<decisionNumber>,<stateNumber>] := Input.LA(<k>);<\n>
1252 * expect "if ( LA(1)==X ) match(X);" and that's it.
1255 FLA[<decisionNumber>,<stateNumber>] := Input.LA(<k>);<\n>
1266 FLA[<decisionNumber>,<stateNumber>] := Input.LA(<
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBufferedTokenStream.cs242 public virtual int LA(int i) { method in class:Antlr.Runtime.BufferedTokenStream

Completed in 1900 milliseconds

123456789