/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
H A D | Token.as | 52 function get tokenIndex():int; 53 function set tokenIndex(index:int):void;
|
H A D | CommonToken.as | 71 token._index = oldToken.tokenIndex; 149 public function get tokenIndex():int { 153 public function set tokenIndex(index:int):void { 179 return "[@"+tokenIndex+","+startIndex+":"+stopIndex+"='"+txt+"',<"+type+">"+channelStr+","+line+":"+charPositionInLine+"]";
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
H A D | UnbufferedTokenStream.cs | 57 protected int tokenIndex; // simple counter to set token index in tokens field in class:Antlr.Runtime.UnbufferedTokenStream 80 t.TokenIndex = this.tokenIndex++;
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
H A D | UnbufferedTokenStream.java | 52 protected int tokenIndex = 0; // simple counter to set token index in tokens field in class:UnbufferedTokenStream 63 t.setTokenIndex(tokenIndex++);
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
H A D | CssTokens.java | 93 private int tokenIndex = 0; field in class:CssTokens.TokenIterator 112 int end = brackets.partner(tokenIndex); 117 between.tokenIndex = tokenIndex + 1; 118 tokenIndex = end + 1; 122 public int tokenIndex() { method in class:CssTokens.TokenIterator 123 return tokenIndex; 127 return tokenBreaks[tokenIndex]; 131 return tokenBreaks[tokenIndex+1]; 139 return tokenIndex < limi 155 seek(int tokenIndex) argument 257 partner(int tokenIndex) argument [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
H A D | CommonErrorNode.as | 18 (stop.tokenIndex < start.tokenIndex && 44 var i:int = Token(start).tokenIndex; 45 var j:int = Token(stop).tokenIndex;
|
H A D | CommonTree.as | 116 return _token.tokenIndex; 127 return _token.tokenIndex;
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
H A D | UnbufferedTokenStream.cs | 59 protected int tokenIndex; // simple counter to set token index in tokens field in class:Antlr.Runtime.UnbufferedTokenStream 143 t.TokenIndex = this.tokenIndex++;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
H A D | ANTLRUnbufferedTokenStream.h | 40 NSInteger tokenIndex; // simple counter to set token index in tokens variable 45 @property (getter=getTokenIndex, setter=setTokenIndex) NSInteger tokenIndex; variable
|
H A D | ANTLRDebugEventListener.h | 249 - (void) createNode:(unsigned)hash fromTokenAtIndex:(NSInteger)tokenIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
H A D | ANTLRUnbufferedTokenStream.h | 40 NSInteger tokenIndex; // simple counter to set token index in tokens variable 45 @property (getter=getTokenIndex, setter=setTokenIndex) NSInteger tokenIndex; variable
|
H A D | ANTLRDebugEventListener.h | 249 - (void) createNode:(unsigned)hash fromTokenAtIndex:(NSInteger)tokenIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
H A D | ANTLRUnbufferedTokenStream.h | 40 NSInteger tokenIndex; // simple counter to set token index in tokens variable 45 @property (getter=getTokenIndex, setter=setTokenIndex) NSInteger tokenIndex; variable
|
H A D | ANTLRDebugEventListener.h | 249 - (void) createNode:(unsigned)hash fromTokenAtIndex:(NSInteger)tokenIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
H A D | ANTLRUnbufferedTokenStream.h | 40 NSInteger tokenIndex; // simple counter to set token index in tokens variable 45 @property (getter=getTokenIndex, setter=setTokenIndex:) NSInteger tokenIndex; variable
|
H A D | ANTLRDebugEventListener.h | 249 - (void) createNode:(unsigned)hash fromTokenAtIndex:(NSInteger)tokenIndex;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
H A D | RemoteDebugEventSocketListener.cs | 182 public int tokenIndex = -1; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree 185 public ProxyTree(int ID, int type, int line, int charPos, int tokenIndex, string text) { argument 190 this.tokenIndex = tokenIndex; 208 return tokenIndex; 453 int tokenIndex = int.Parse(elements[2]); 454 // create dummy node/token filled with ID, tokenIndex 456 ProxyToken token = new ProxyToken(tokenIndex); 499 int tokenIndex = int.Parse(elements[offset + 4]); 502 return new ProxyTree(ID, type, tokenLine, charPositionInLine, tokenIndex, tex [all...] |
H A D | TraceDebugEventListener.cs | 98 int tokenIndex = token.TokenIndex; 99 Console.Out.WriteLine("create " + ID + ": " + tokenIndex);
|
H A D | DebugEventSocketProxy.cs | 289 int tokenIndex = adaptor.GetTokenStartIndex(t); 291 buf.Append(tokenIndex); 332 int tokenIndex = token.TokenIndex; 333 Transmit("createNode\t" + ID + "\t" + tokenIndex);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
H A D | RemoteDebugEventSocketListener.cs | 218 public int tokenIndex = -1; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree 221 public ProxyTree( int ID, int type, int line, int charPos, int tokenIndex, string text ) argument 227 this.tokenIndex = tokenIndex; 251 return tokenIndex; 589 int tokenIndex = int.Parse( elements[2] ); 590 // create dummy node/token filled with ID, tokenIndex 592 ProxyToken token = new ProxyToken( tokenIndex ); 648 int tokenIndex = int.Parse( elements[offset + 4] ); 651 return new ProxyTree( ID, type, tokenLine, charPositionInLine, tokenIndex, tex [all...] |
H A D | TraceDebugEventListener.cs | 111 int tokenIndex = token.TokenIndex; 112 Console.Out.WriteLine( "create " + ID + ": " + tokenIndex );
|
H A D | DebugEventSocketProxy.cs | 330 int tokenIndex = adaptor.GetTokenStartIndex( t ); 332 buf.Append( tokenIndex ); 377 int tokenIndex = token.TokenIndex; 378 Transmit( "createNode\t" + ID + "\t" + tokenIndex );
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
H A D | TraceDebugEventListener.java | 77 int tokenIndex = token.getTokenIndex(); 78 System.out.println("create "+ID+": "+tokenIndex);
|
H A D | RemoteDebugEventSocketListener.java | 132 public int tokenIndex = -1; field in class:RemoteDebugEventSocketListener.ProxyTree 135 public ProxyTree(int ID, int type, int line, int charPos, int tokenIndex, String text) { argument 140 this.tokenIndex = tokenIndex; 146 public int getTokenStartIndex() { return tokenIndex; } 386 int tokenIndex = Integer.parseInt(elements[2]); 387 // create dummy node/token filled with ID, tokenIndex 389 ProxyToken token = new ProxyToken(tokenIndex); 438 int tokenIndex = Integer.parseInt(elements[offset+4]); 441 return new ProxyTree(ID, type, tokenLine, charPositionInLine, tokenIndex, tex [all...] |
H A D | DebugEventSocketProxy.java | 257 int tokenIndex = adaptor.getTokenStartIndex(t); 259 buf.append(tokenIndex); 298 int tokenIndex = token.getTokenIndex(); 299 transmit("createNode\t"+ID+"\t"+tokenIndex);
|