Searched refs:LT (Results 51 - 75 of 380) sorted by relevance

1234567891011>>

/external/valgrind/none/tests/s390x/
H A Dclgij.c17 #undef LT macro
20 #define LT 4 macro
104 CLGIJ(7,LT,8,2a) "\n\t" /* 0x2a == 42 */
H A Dclij.c17 #undef LT macro
20 #define LT 4 macro
104 CLIJ(7,LT,8,2a) "\n\t" /* 0x2a == 42 */
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognitionException.as106 this.token = TokenStream(input).LT(1);
125 this.node = nodes.LT(1);
133 var priorNode:Object = nodes.LT(i);
144 priorNode = nodes.LT(i);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugEventRepeater.cs86 public virtual void LT(int i, IToken t) { method in class:Antlr.Runtime.Debug.DebugEventRepeater
87 _listener.LT(i, t);
128 public virtual void LT(int i, object t) { method in class:Antlr.Runtime.Debug.DebugEventRepeater
129 _listener.LT(i, t);
H A DBlankDebugEventListener.cs75 public virtual void LT(int i, IToken t) { method in class:Antlr.Runtime.Debug.BlankDebugEventListener
104 public virtual void LT(int i, object t) { method in class:Antlr.Runtime.Debug.BlankDebugEventListener
H A DIDebugEventListener.cs84 * so that a GUI can easily track what LT/consume events are
111 * triggered by both LA and LT calls. The debugger will want to know
114 * ahead into a file it doesn't have so LT events must pass the token
118 void LT(int i, IToken t); method in interface:Antlr.Runtime.Debug.IDebugEventListener
182 * caused the problem was the last object referenced by LT. The
183 * immediately preceding LT event should hold the unexpected Token or
196 * LT(1)
200 * LT(1)
204 * LT(1)
209 * LT(
292 void LT(int i, object t); method in interface:Antlr.Runtime.Debug.IDebugEventListener
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugEventRepeater.cs100 public virtual void LT( int i, IToken t ) method in class:Antlr.Runtime.Debug.DebugEventRepeater
102 _listener.LT( i, t );
155 public virtual void LT( int i, object t ) method in class:Antlr.Runtime.Debug.DebugEventRepeater
157 _listener.LT( i, t );
H A DBlankDebugEventListener.cs89 public virtual void LT( int i, IToken t ) method in class:Antlr.Runtime.Debug.BlankDebugEventListener
131 public virtual void LT( int i, object t ) method in class:Antlr.Runtime.Debug.BlankDebugEventListener
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DRecognitionException.java106 this.token = ((TokenStream)input).LT(1);
125 this.node = nodes.LT(1);
133 Object priorNode = nodes.LT(i);
144 priorNode = nodes.LT(i);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugEventRepeater.java59 public void LT(int i, Token t) { listener.LT(i, t); } method in class:DebugEventRepeater
75 public void LT(int i, Object t) { listener.LT(i, t); } method in class:DebugEventRepeater
H A DBlankDebugEventListener.java48 public void LT(int i, Token t) {} method in class:BlankDebugEventListener
64 public void LT(int i, Object t) {} method in class:BlankDebugEventListener
H A DDebugEventListener.java78 * so that a GUI can easily track what LT/consume events are
99 * triggered by both LA and LT calls. The debugger will want to know
102 * ahead into a file it doesn't have so LT events must pass the token
105 public void LT(int i, Token t); method in interface:DebugEventListener
156 * caused the problem was the last object referenced by LT. The
157 * immediately preceding LT event should hold the unexpected Token or
170 * LT(1)
174 * LT(1)
178 * LT(1)
183 * LT(
252 public void LT(int i, Object t); method in interface:DebugEventListener
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeNodeStream.java42 * 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); method in interface:TreeNodeStream
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DRecognitionException.js36 this.token = input.LT(1);
124 this.node = nodes.LT(1);
132 priorNode = nodes.LT(i);
143 priorNode = nodes.LT(i);
/external/skia/tests/
H A DGrTBSearchTest.cpp16 static bool LT(const int& elem, int value) { function
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtesttree.py163 self.failUnlessEqual(101, stream.LT(1).getType())
164 self.failUnlessEqual(DOWN, stream.LT(2).getType())
165 self.failUnlessEqual(102, stream.LT(3).getType())
166 self.failUnlessEqual(DOWN, stream.LT(4).getType())
167 self.failUnlessEqual(103, stream.LT(5).getType())
168 self.failUnlessEqual(UP, stream.LT(6).getType())
169 self.failUnlessEqual(104, stream.LT(7).getType())
170 self.failUnlessEqual(UP, stream.LT(8).getType())
171 self.failUnlessEqual(EOF, stream.LT(9).getType())
173 self.failUnlessEqual(EOF, stream.LT(10
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeNodeStream.as41 * i<0 indicates nodes in the past. So LT(-1) is previous node, but
43 * LT(0) is undefined. For i>=n, return null.
44 * Return null for LT(0) and any index that results in an absolute address
47 * This is analogus to the LT() method of the TokenStream, but this
51 function LT(k:int):Object;
H A DTreeParser.as67 return TreeNodeStream(input).LT(1);
86 var look:Object = input.LT(1);
97 look = input.LT(1);
151 super.traceInSymbol(ruleName, ruleIndex, input.LT(1));
155 super.traceOutSymbol(ruleName, ruleIndex, input.LT(1));
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
H A DIDebugEventListener.cs86 * so that a GUI can easily track what LT/consume events are
113 * triggered by both LA and LT calls. The debugger will want to know
116 * ahead into a file it doesn't have so LT events must pass the token
120 void LT( int i, IToken t ); method in interface:Antlr.Runtime.Debug.IDebugEventListener
184 * caused the problem was the last object referenced by LT. The
185 * immediately preceding LT event should hold the unexpected Token or
198 * LT(1)
202 * LT(1)
206 * LT(1)
211 * LT(
294 void LT( int i, object t ); method in interface:Antlr.Runtime.Debug.IDebugEventListener
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeNodeStream.h40 - (id) LT:(NSInteger)k;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeNodeStream.h40 - (id) LT:(NSInteger)k;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeNodeStream.h40 - (id) LT:(NSInteger)k;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeNodeStream.h40 - (id) LT:(NSInteger)k;
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
H A DT.g16 $input->insert_before($input->LT(1), "public class Wrapper {\n");
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestBufferedTreeNodeStream.java67 assertEquals(107, ((Tree)stream.LT(1)).getType());
71 assertEquals(104, ((Tree)stream.LT(1)).getType());

Completed in 758 milliseconds

1234567891011>>