Searched defs:LA (Results 1 - 25 of 58) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DANTLRStringStream.pm14 is $s->LA(1), 'A';
16 is $s->LA(1), 'B';
19 sub LA : Test(5) { subroutine
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/ActionScript/project/src/org/antlr/runtime/
H A DANTLRStringStream.as94 public function LA(i:int):int { function
99 i++; // e.g., translate LA(-1) to use offset i=0; then data[p+0-1]
112 return LA(i);
117 * be returned from LA(1).
H A DCommonTokenStream.as288 public function LA(i:int):int { function
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIIntStream.cs50 /// 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); method in interface:Antlr.Runtime.IIntStream
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
H A DUnbufferedTokenStream.cs92 public int LA(int i) { method in class:Antlr.Runtime.UnbufferedTokenStream
H A DANTLRStringStream.cs114 * be returned from LA(1).
169 public virtual int LA(int i) { method in class:Antlr.Runtime.ANTLRStringStream
174 i++; // e.g., translate LA(-1) to use offset i=0; then data[p+0-1]
181 //System.out.println("char LA("+i+")=EOF; p="+p);
184 //System.out.println("char LA("+i+")="+(char)data[p+i-1]+"; p="+p);
185 //System.out.println("LA("+i+"); p="+p+" n="+n+" data.length="+data.length);
190 return LA(i);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIIntStream.cs47 * 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 ); method in interface:Antlr.Runtime.IIntStream
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
H A DUnbufferedTokenStream.cs157 public int LA(int i) method in class:Antlr.Runtime.UnbufferedTokenStream
H A DANTLRStringStream.cs121 * be returned from LA(1).
188 public virtual int LA( int i ) method in class:Antlr.Runtime.ANTLRStringStream
196 i++; // e.g., translate LA(-1) to use offset i=0; then data[p+0-1]
205 //System.out.println("char LA("+i+")=EOF; p="+p);
208 //System.out.println("char LA("+i+")="+(char)data[p+i-1]+"; p="+p);
209 //System.out.println("LA("+i+"); p="+p+" n="+n+" data.length="+data.length);
215 return LA( i );
H A DLegacyCommonTokenStream.cs420 public virtual int LA( int i ) method in class:Antlr.Runtime.LegacyCommonTokenStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DIntStream.java37 * 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); method in interface:IntStream
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
H A DUnbufferedTokenStream.java75 public int LA(int i) { return LT(i).getType(); } method in class:UnbufferedTokenStream
H A DANTLRStringStream.java114 public int LA(int i) { method in class:ANTLRStringStream
119 i++; // e.g., translate LA(-1) to use offset i=0; then data[p+0-1]
126 //System.out.println("char LA("+i+")=EOF; p="+p);
129 //System.out.println("char LA("+i+")="+(char)data[p+i-1]+"; p="+p);
130 //System.out.println("LA("+i+"); p="+p+" n="+n+" data.length="+data.length);
135 return LA(i);
140 * be returned from LA(1).
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as272 public function LA(i:int):int { function
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DANTLRStringStream.pm106 sub LA { subroutine
114 ++$i; # e.g., translate LA(-1) to use offset i=0; then input[p+0-1]
130 return $self->LA($i);
H A DCommonTokenStream.pm275 sub LA { subroutine
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-8.js32 var LA = ""; variable
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
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTokenStream.cs128 public virtual int LA( int i ) method in class:Antlr.Runtime.Debug.DebugTokenStream
135 return input.LA( i );
H A DDebugTreeNodeStream.cs150 public virtual int LA( int i ) method in class:Antlr.Runtime.Debug.DebugTreeNodeStream
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTokenStream.cs110 public virtual int LA(int i) { method in class:Antlr.Runtime.Debug.DebugTokenStream
115 return input.LA(i);
H A DDebugTreeNodeStream.cs129 public virtual int LA(int i) { method in class:Antlr.Runtime.Debug.DebugTreeNodeStream
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTreeNodeStream.cs164 public virtual int LA(int i) { method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTreeNodeStream.cs189 public virtual int LA( int i ) method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimStringStream.cs117 * be returned from LA(1).
211 public int LA( int i ) method in class:Antlr.Runtime.SlimStringStream
219 i++; // e.g., translate LA(-1) to use offset i=0; then data[p+0-1]
228 //System.out.println("char LA("+i+")=EOF; p="+p);
231 //System.out.println("char LA("+i+")="+(char)data[p+i-1]+"; p="+p);
232 //System.out.println("LA("+i+"); p="+p+" n="+n+" data.length="+data.length);
238 return LA( i );
H A DSlimTokenStream.cs323 public int LA( int i ) method in class:Antlr.Runtime.FastTokenStream

Completed in 3591 milliseconds

123