HomeSort by relevance Sort by last modified time
    Searched defs:LT (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/skia/tests/
GrTBSearchTest.cpp 16 static bool LT(const int& elem, int value) {
  /external/skia/tests/
GrTBSearchTest.cpp 16 static bool LT(const int& elem, int value) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ICharStream.cs 53 int LT(int i);
ITokenStream.cs 37 * i<0 indicates tokens in the past. So -1 is previous token and -2 is
38 * 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);
CommonTokenStream.cs 111 public override IToken LT(int k) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ICharStream.cs 55 int LT( int i );
ITokenStream.cs 39 * i<0 indicates tokens in the past. So -1 is previous token and -2 is
40 * 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 );
CommonTokenStream.cs 120 public override IToken LT(int k)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
ITokenStream`1.cs 37 T LT(int k);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenStream.java 36 * 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);
CharStream.java 45 public int LT(int i);
CommonTokenStream.java 37 * token using consume(), LT(), etc. the stream does not pull from the lexer.
89 public Token LT(int k) {
90 //System.out.println("enter LT("+k+")");
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
ANTLRStringStream.js 318 org.antlr.runtime.ANTLRStringStream.prototype.LT = org.antlr.runtime.ANTLRStringStream.prototype.LA;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRStringStream.as 111 public function LT(i:int):int {
CommonTokenStream.as 79 * 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 {
235 //System.out.print("LT(p="+p+","+k+")=");
289 return LT(i).type;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeNodeStream.cs 48 * i<0 indicates nodes in the past. So LT(-1) is previous node, but
49 * implementations are not required to provide results for k < -1.
50 * LT(0) is undefined. For i>=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);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeNodeStream.cs 51 * i<0 indicates nodes in the past. So LT(-1) is previous node, but
52 * implementations are not required to provide results for k < -1.
53 * LT(0) is undefined. For i>=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 );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeNodeStream`1.cs 50 * i<0 indicates nodes in the past. So LT(-1) is previous node, but
51 * implementations are not required to provide results for k < -1.
52 * LT(0) is undefined. For i>=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);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeNodeStream.java 42 * i<0 indicates nodes in the past. So LT(-1) is previous node, but
44 * LT(0) is undefined. For i>=n, return null.
45 * Return null for LT(0) and any index that results in an absolute address
48 * This is analogus to the LT() method of the TokenStream, but this
52 public Object LT(int k);
  /external/dexmaker/src/main/java/com/google/dexmaker/
Comparison.java 29 LT() {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTokenStream.java 47 input.LT(1);
59 Token t = input.LT(1);
80 public Token LT(int i) {
84 dbg.LT(i, input.LT(i));
85 return input.LT(i);
92 dbg.LT(i, input.LT(i));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeNodeStream.as 203 public function LT(k:int):Object {
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.Debug/
TraceDebugEventListener.cs 72 public override void LT(int i, object t) {
76 Console.Out.WriteLine("LT " + i + " " + ID + " " + text + " " + type);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
TraceDebugEventListener.cs 81 public override void LT( int i, object t )
86 Console.Out.WriteLine( "LT " + i + " " + ID + " " + text + " " + type );
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
ANTLRStringStream.pm 127 sub LT {

Completed in 542 milliseconds

1 2 3 4 5 6 7