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

123

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/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/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as272 public function LA(i:int):int { function
/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 DBufferedTreeNodeStream.cs384 public virtual int LA(int i) { method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
H A DCommonTreeNodeStream.cs164 public virtual int LA(int i) { method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
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);
H A DBufferedTokenStream.cs242 public virtual int LA(int i) { method in class:Antlr.Runtime.BufferedTokenStream
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 DLegacyCommonTokenStream.cs370 public virtual int LA(int i) { method in class:Antlr.Runtime.LegacyCommonTokenStream
H A DUnbufferedTokenStream.cs92 public int LA(int i) { method in class:Antlr.Runtime.UnbufferedTokenStream
/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/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
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
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 DBufferedTokenStream.cs275 public virtual int LA(int i) method in class:Antlr.Runtime.BufferedTokenStream
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 DLegacyCommonTokenStream.cs420 public virtual int LA( int i ) method in class:Antlr.Runtime.LegacyCommonTokenStream
H A DUnbufferedTokenStream.cs157 public int LA(int i) method in class:Antlr.Runtime.UnbufferedTokenStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBufferedTreeNodeStream.cs453 public virtual int LA( int i ) method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
H A DCommonTreeNodeStream.cs189 public virtual int LA( int i ) method in class:Antlr.Runtime.Tree.CommonTreeNodeStream

Completed in 5368 milliseconds

123