Searched defs:LT (Results 1 - 25 of 110) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DICharStream.cs53 int LT(int i); method in interface:Antlr.Runtime.ICharStream
H A DCommonTokenStream.cs111 public override IToken LT(int k) { method in class:Antlr.Runtime.CommonTokenStream
H A DITokenStream.cs38 * two tokens ago. LT(0) is undefined. For i>=n, return Token.EOFToken.
39 * Return null for LT(0) and any index that results in an absolute address
42 IToken LT(int k); method in interface:Antlr.Runtime.ITokenStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DICharStream.cs55 int LT( int i ); method in interface:Antlr.Runtime.ICharStream
H A DITokenStream.cs40 * two tokens ago. LT(0) is undefined. For i>=n, return Token.EOFToken.
41 * Return null for LT(0) and any index that results in an absolute address
44 IToken LT( int k ); method in interface:Antlr.Runtime.ITokenStream
H A DCommonTokenStream.cs120 public override IToken LT(int k) method in class:Antlr.Runtime.CommonTokenStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DITokenStream`1.cs37 T LT(int k); method in interface:Antlr.Runtime.T
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DANTLRStringStream.js318 org.antlr.runtime.ANTLRStringStream.prototype.LT = org.antlr.runtime.ANTLRStringStream.prototype.LA;
/external/skia/src/gpu/
H A Dgr_unittests.cpp21 static bool LT(const int& elem, int value) { function
H A DGrBinHashKey.h75 LT(const Entry& entry, const GrBinHashKey<Entry, KeySize>& key) { function in class:GrBinHashKey
H A DGrTextStrike_impl.h22 static bool LT(const GrTextStrike& strike, const Key& key) { function in class:GrFontCache::Key
85 static bool LT(const GrGlyph& glyph, const Key& key) { function in class:GrTextStrike::Key
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DANTLRStringStream.as111 public function LT(i:int):int { function
H A DCommonTokenStream.as79 * This is done upon first LT request because you might want to
114 * must become active with LT(1) available. consume() simply
115 * moves the input pointer so that LT(1) points at the next
225 public function LT(k:int):Token { function
235 //System.out.print("LT(p="+p+","+k+")=");
289 return LT(i).type;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DITreeNodeStream.cs51 * i&lt;0 indicates nodes in the past. So LT(-1) is previous node, but
53 * LT(0) is undefined. For i&gt;=n, return null.
54 * Return null for LT(0) and any index that results in an absolute address
59 * This is analogus to the LT() method of the TokenStream, but this
64 object LT( int k ); method in interface:Antlr.Runtime.Tree.ITreeNodeStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DCharStream.java45 public int LT(int i); method in interface:CharStream
H A DTokenStream.java36 * two tokens ago. LT(0) is undefined. For i>=n, return Token.EOFToken.
37 * Return null for LT(0) and any index that results in an absolute address
40 public Token LT(int k); method in interface:TokenStream
H A DCommonTokenStream.java37 * token using consume(), LT(), etc. the stream does not pull from the lexer.
89 public Token LT(int k) { method in class:CommonTokenStream
90 //System.out.println("enter LT("+k+")");
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DComparison.java29 LT() { method in enum:Comparison
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as203 public function LT(k:int):Object { function
213 //System.out.print("LT(p="+p+","+k+")=");
220 public function get currentSymbol():Object { return LT(1); }
273 return adaptor.getType(LT(i));
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DITreeNodeStream.cs48 * i&lt;0 indicates nodes in the past. So LT(-1) is previous node, but
50 * LT(0) is undefined. For i&gt;=n, return null.
51 * Return null for LT(0) and any index that results in an absolute address
56 * This is analogus to the LT() method of the TokenStream, but this
61 object LT(int k); method in interface:Antlr.Runtime.Tree.ITreeNodeStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeNodeStream`1.cs50 * i&lt;0 indicates nodes in the past. So LT(-1) is previous node, but
52 * LT(0) is undefined. For i&gt;=n, return null.
53 * Return null for LT(0) and any index that results in an absolute address
58 * This is analogus to the LT() method of the TokenStream, but this
63 T LT(int k); method in interface:Antlr.Runtime.Tree.ITreeNodeStream
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DANTLRStringStream.pm127 sub LT { subroutine
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DLookaheadStream.cs50 * read via LT(1). Goes from 0 to numtokens.
57 * Return it later when they ask for LT passed end of input.
161 public virtual T LT( int k ) method in class:Antlr.Runtime.Misc.LookaheadStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTokenStream.cs51 input.LT( 1 );
93 IToken t = input.LT( 1 );
118 public virtual IToken LT( int i ) method in class:Antlr.Runtime.Debug.DebugTokenStream
124 dbg.LT( i, input.LT( i ) );
125 return input.LT( i );
134 dbg.LT( i, input.LT( i ) );
H A DTraceDebugEventListener.cs81 public override void LT( int i, object t ) method in class:Antlr.Runtime.Debug.TraceDebugEventListener
86 Console.Out.WriteLine( "LT " + i + " " + ID + " " + text + " " + type );

Completed in 382 milliseconds

12345