HomeSort by relevance Sort by last modified time
    Searched refs:LT (Results 176 - 200 of 364) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRStringStream.h 84 - (NSInteger) LT:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBufferedTokenStream.h 47 * to consume). tokens[p] should be LT(1). p=-1 indicates need
49 * First call to LT(1) or whatever gets the first token and sets p=0;
83 - (id<ANTLRToken>) LT:(NSInteger) k;
ANTLRStringStream.h 84 - (NSInteger) LT:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTokenStream.h 49 * to consume). tokens[index] should be LT(1). index=-1 indicates need
51 * First call to LT(1) or whatever gets the first token and sets index=0;
87 - (id<ANTLRToken>) LT:(NSInteger) k;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTParser.stg 45 retval.Tree = (<ASTLabelType>)adaptor.ErrorNode(input, retval.Start, input.LT(-1), re);
118 <label>=(<labelType>)input.LT(1);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTParser.stg 46 retval.Tree = (<ASTLabelType>)adaptor.ErrorNode(input, retval.Start, input.LT(-1), re);
123 <label>=(<labelType>)input.LT(1);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
ASTParser.stg 47 Input.LT(-1), RE) as I<ASTLabelType>;
129 <label> := Input.LT(1) as I<labelType>;<\n>
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTParser.stg 42 retval.tree = (<ASTLabelType> *)[treeAdaptor errorNode:input From:retval.start To:[input LT:-1] Exception:re];
124 <label>=(<labelType> *)[input LT:1]; /* matchSetRuleRoot */<\n>
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.h 124 LT = 9 | BINARY_OP_PRECEDENCE(7),
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 49 { LT, "relop", " < " },
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
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;
Lexer.as 314 var inputSymbol:String = String.fromCharCode(input.LT(1))+" line="+ line +":"+ charPositionInLine;
319 var inputSymbol:String = String.fromCharCode(input.LT(1))+" line="+ line +":"+ charPositionInLine;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 69 * to consume). tokens[p] should be LT(1). p=-1 indicates need
71 * First call to LT(1) or whatever gets the first token and sets p=0;
174 * must become active with LT(1) available. consume() simply
175 * moves the input pointer so that LT(1) points at the next
243 return LT(i).Type;
253 public virtual IToken LT(int k) {
LegacyCommonTokenStream.cs 123 * This is done upon first LT request because you might want to
169 * must become active with LT(1) available. consume() simply
170 * moves the input pointer so that LT(1) points at the next
285 public virtual IToken LT(int k) {
295 //System.out.print("LT(p="+p+","+k+")=");
371 return LT(i).Type;
Lexer.cs 345 string inputSymbol = ((char)input.LT(1)) + " line=" + Line + ":" + CharPositionInLine;
351 string inputSymbol = ((char)input.LT(1)) + " line=" + Line + ":" + CharPositionInLine;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 71 * to consume). tokens[p] should be LT(1). p=-1 indicates need
73 * First call to LT(1) or whatever gets the first token and sets p=0;
201 * must become active with LT(1) available. consume() simply
202 * moves the input pointer so that LT(1) points at the next
277 return LT(i).Type;
288 public virtual IToken LT(int k)
LegacyCommonTokenStream.cs 129 * This is done upon first LT request because you might want to
181 * must become active with LT(1) available. consume() simply
182 * moves the input pointer so that LT(1) points at the next
321 public virtual IToken LT( int k )
335 //System.out.print("LT(p="+p+","+k+")=");
422 return LT( i ).Type;
Lexer.cs 419 string inputSymbol = ( (char)input.LT( 1 ) ) + " line=" + Line + ":" + CharPositionInLine;
426 string inputSymbol = ( (char)input.LT( 1 ) ) + " line=" + Line + ":" + CharPositionInLine;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 435 string inputSymbol = ( (char)input.LT( 1 ) ) + " line=" + Line + ":" + CharPositionInLine;
441 string inputSymbol = ( (char)input.LT( 1 ) ) + " line=" + Line + ":" + CharPositionInLine;
SlimTokenStream.cs 108 * This is done upon first LT request because you might want to
135 * must become active with LT(1) available. consume() simply
136 * moves the input pointer so that LT(1) points at the next
244 public SlimToken LT( int k )
258 //System.out.print("LT(p="+p+","+k+")=");
325 return LT( i ).Type;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 63 * to consume). tokens[p] should be LT(1). p=-1 indicates need
65 * First call to LT(1) or whatever gets the first token and sets p=0;
111 * must become active with LT(1) available. consume() simply
112 * moves the input pointer so that LT(1) points at the next
162 public int LA(int i) { return LT(i).getType(); }
169 public Token LT(int k) {
LegacyCommonTokenStream.java 92 * This is done upon first LT request because you might want to
129 * must become active with LT(1) available. consume() simply
130 * moves the input pointer so that LT(1) points at the next
238 public Token LT(int k) {
248 //System.out.print("LT(p="+p+","+k+")=");
311 return LT(i).getType();
Lexer.java 336 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
341 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
CommonTokenStream.js 34 * This is done upon first LT request because you might want to
75 * must become active with LT(1) available. consume() simply
76 * moves the input pointer so that LT(1) points at the next
178 LT: function(k) {
239 return this.LT(i).getType();
Lexer.js 276 var inputSymbol = String.fromCharCode(this.input.LT(1))+" line="+this.getLine()+":"+this.getCharPositionInLine();
281 var inputSymbol = String.fromCharCode(this.input.LT(1))+" line="+this.getLine()+":"+this.getCharPositionInLine();

Completed in 619 milliseconds

1 2 3 4 5 6 78 91011>>