Searched defs:LA (Results 1 - 25 of 64) 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
/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/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/clang/test/CodeGen/
H A Dsse42-builtins.c11 int test_mm_cmpestra(__m128i A, int LA, __m128i B, int LB) { argument
14 return _mm_cmpestra(A, LA, B, LB, 7);
17 int test_mm_cmpestrc(__m128i A, int LA, __m128i B, int LB) { argument
20 return _mm_cmpestrc(A, LA, B, LB, 7);
23 int test_mm_cmpestri(__m128i A, int LA, __m128i B, int LB) { argument
26 return _mm_cmpestri(A, LA, B, LB, 7);
29 __m128i test_mm_cmpestrm(__m128i A, int LA, __m128i B, int LB) { argument
32 return _mm_cmpestrm(A, LA, B, LB, 7);
35 int test_mm_cmpestro(__m128i A, int LA, __m128i B, int LB) { argument
38 return _mm_cmpestro(A, LA,
41 test_mm_cmpestrs(__m128i A, int LA, __m128i B, int LB) argument
47 test_mm_cmpestrz(__m128i A, int LA, __m128i B, int LB) argument
[all...]
/external/smali/smalidea/src/main/java/org/jf/smalidea/
H A DPsiBuilderTokenStream.java109 @Override public int LA(int i) { method in class:PsiBuilderTokenStream
/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 1494 milliseconds

123