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

1 2 3 4 5 6 7 8 9

  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
ANTLRStringStream.pm 14 is $s->LA(1), 'A';
16 is $s->LA(1), 'B';
19 sub LA : Test(5) {
23 is $s->LA(0), undef;
24 is $s->LA(1), 'A';
25 is $s->LA(2), 'B';
26 is $s->LA(3), 'C';
27 is $s->LA(4), ANTLR::Runtime::ANTLRStringStream->EOF;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
TestLexer.m 85 NSInteger LA1_0 = [input LA:1];
95 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))||(([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||(([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
141 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))) {
174 if ((([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||(([input LA:1] >= 'a') && ([input LA:1] <= 'z')))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedLexer.m 103 if ((([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
113 NSInteger LA1_0 = [input LA:1];
123 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))||(([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z')))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TLexer.m 112 if ((([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
123 NSInteger LA1_0 = [input LA:1];
133 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))||(([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z')))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/
Testlexer.m 103 NSInteger LA1_0 = [input LA:1];
113 if (([input LA:1]>='0' && [input LA:1]<='9')||([input LA:1]>='A' && [input LA:1]<='Z')||([input LA:1]>='a' && [input LA:1]<='z')) {
179 if (([input LA:1]>='A' && [input LA:1]<='Z')||([input LA:1]>='a' && [input LA:1]<='z'))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.m 211 if ((([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
222 NSInteger LA1_0 = [input LA:1];
232 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))||(([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z')))
    [all...]
SimpleCLexer.java 259 if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {
272 int LA1_0 = input.LA(1);
283 if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') )
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCLexer.m 546 if ((([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
557 NSInteger LA1_0 = [input LA:1];
567 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))||(([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z')))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangLexer.m 181 NSInteger LA1_0 = [input LA:1];
191 if ((([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
248 NSInteger LA2_0 = [input LA:1];
258 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))) {
311 if ([input LA:1] == '\n'||[input LA:1] == ' ') {
343 unichar charLA3 = [input LA:1];
352 NSInteger LA3_2 = [input LA:2]
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
IntStream.java 37 * Negative indexes are allowed. LA(-1) is previous token (token
38 * just matched). LA(-i) where i is before first token should
41 int LA(int i);
105 * The index is 0..n-1. A seek to position i means that LA(1) will
106 * return the ith symbol. So, seeking to 0 means LA(1) will return the
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableLexer.m 341 NSInteger LA1_0 = [input LA:1];
351 if ((([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
408 NSInteger LA2_0 = [input LA:1];
418 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))) {
475 NSInteger LA3_0 = [input LA:1];
485 if ([input LA:1] == '\n'||[input LA:1] == '\r'||[input LA:1] == ' ')
    [all...]
  /external/v8/test/mjsunit/compiler/
regress-8.js 32 var LA = "";
53 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+Gob))))))))),
60 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Hob))))),p);
65 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Iob))))),p);
70 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Job))))),p)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 259 if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {
272 int LA1_0 = input.LA(1);
283 if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') )
    [all...]
SimpleCLexer.m 528 if ((([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) {
538 NSInteger LA1_0 = [input LA:1];
548 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))||(([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z')))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.m 86 if ( [input LA:1] == ANTLRCharStreamEOF ) {
164 NSInteger LA1_0 = [input LA:1];
222 NSInteger LA2_0 = [input LA:1];
300 NSInteger LA3_0 = [input LA:1];
321 NSInteger LA5_0 = [input LA:1];
344 NSInteger LA4_0 = [input LA:1];
371 NSInteger LA10_0 = [input LA:1];
394 NSInteger LA6_0 = [input LA:1];
415 NSInteger LA9_0 = [input LA:1];
430 NSInteger LA7_0 = [input LA:1]
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRIntStream.h 32 - (NSInteger) LA:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRIntStream.h 32 - (NSInteger) LA:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRIntStream.h 32 - (NSInteger) LA:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IIntStream.cs 50 /// Negative indexes are allowed. LA(-1) is previous token (token just matched).
51 /// LA(-i) where i is before first token should yield -1, invalid char or EOF.
53 int LA(int i);
137 /// The index is 0..n-1. A seek to position i means that LA(1) will return
138 /// the ith symbol. So, seeking to 0 means LA(1) will return the first
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IIntStream.cs 47 * Negative indexes are allowed. LA(-1) is previous token (token
48 * just matched). LA(-i) where i is before first token should
52 int LA( int i );
132 * The index is 0..n-1. A seek to position i means that LA(1) will
133 * return the ith symbol. So, seeking to 0 means LA(1) will return the
  /external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
TestANTLRStringStream.as 44 assertEquals(stream.LA(-1), CharStreamConstants.EOF); // should be EOF
45 assertEquals(stream.LA(0), 0); // should be 0 (undefined)
46 assertEquals(stream.LA(1), "a".charCodeAt(0));
47 assertEquals(stream.LA(2), "b".charCodeAt(0));
48 assertEquals(stream.LA(3), "c".charCodeAt(0));
49 assertEquals(stream.LA(4), CharStreamConstants.EOF);
53 assertEquals(stream.LA(-2), CharStreamConstants.EOF);
54 assertEquals(stream.LA(-1), "a".charCodeAt(0));
55 assertEquals(stream.LA(0), 0); // should be 0 (undefined)
56 assertEquals(stream.LA(1), "b".charCodeAt(0))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
Fuzzy.m 130 NSInteger LA38_1 = [input LA:1];
152 NSInteger LA38_5 = [input LA:1];
177 NSInteger LA38_7 = [input LA:1];
196 NSInteger LA38_10 = [input LA:1];
221 NSInteger LA38_12 = [input LA:1];
249 NSInteger LA38_16 = [input LA:1];
356 if ( [input LA:1] == ANTLRCharStreamEOF ) {
427 NSInteger LA1_0 = [input LA:1];
478 NSInteger LA2_0 = [input LA:1];
546 NSInteger LA3_0 = [input LA:1]
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
IntStream.as 36 * Negative indexes are allowed. LA(-1) is previous token (token
37 * just matched). LA(-i) where i is before first token should
40 function LA(i:int):int;
104 * The index is 0..n-1. A seek to position i means that LA(1) will
105 * return the ith symbol. So, seeking to 0 means LA(1) will return the
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteLexer.m 83 NSInteger LA1_0 = [input LA:1];
93 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))) {
172 NSInteger LA2_0 = [input LA:1];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRIntStream.h 36 - (NSInteger) LA:(NSInteger) i;

Completed in 691 milliseconds

1 2 3 4 5 6 7 8 9