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