/external/boringssl/src/util/fipstools/delocate/ |
D | delocate.peg.go | 323 position, tokenIndex uint32 328 position, tokenIndex = 0, 0 348 p.Trim(tokenIndex) 355 tree.Add(rule, begin, position, tokenIndex) 356 tokenIndex++ 390 position0, tokenIndex0 := position, tokenIndex 395 position3, tokenIndex3 := position, tokenIndex 401 position, tokenIndex = position3, tokenIndex3 404 position4, tokenIndex4 := position, tokenIndex 410 position, tokenIndex = position4, tokenIndex4 [all …]
|
/external/boringssl/src/util/fipstools/acvp/acvptool/ |
D | parser.peg.go | 261 position, tokenIndex uint32 266 position, tokenIndex = 0, 0 286 p.Trim(tokenIndex) 293 tree.Add(rule, begin, position, tokenIndex) 294 tokenIndex++ 328 position0, tokenIndex0 := position, tokenIndex 332 position2, tokenIndex2 := position, tokenIndex 338 position, tokenIndex = position2, tokenIndex2 342 position4, tokenIndex4 := position, tokenIndex 348 position, tokenIndex = position4, tokenIndex4 [all …]
|
/external/antlr/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/antlr/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/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/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;
|
D | CommonTree.as | 116 return _token.tokenIndex; 127 return _token.tokenIndex;
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
D | RemoteDebugEventSocketListener.java | 162 public int tokenIndex = -1; field in RemoteDebugEventSocketListener.ProxyTree 165 public ProxyTree(int ID, int type, int line, int charPos, int tokenIndex, String text) { in ProxyTree() argument 170 this.tokenIndex = tokenIndex; in ProxyTree() 176 @Override public int getTokenStartIndex() { return tokenIndex; } in getTokenStartIndex() 415 int tokenIndex = Integer.parseInt(elements[2]); in dispatch() local 418 ProxyToken token = new ProxyToken(tokenIndex); in dispatch() 467 int tokenIndex = Integer.parseInt(elements[offset+4]); in deserializeNode() local 470 return new ProxyTree(ID, type, tokenLine, charPositionInLine, tokenIndex, text); in deserializeNode()
|
D | DebugEventSocketProxy.java | 281 int tokenIndex = adaptor.getTokenStartIndex(t); in serializeNode() local 283 buf.append(tokenIndex); in serializeNode() 326 int tokenIndex = token.getTokenIndex(); in createNode() local 327 transmit("createNode\t"+ID+"\t"+tokenIndex); in createNode()
|
D | TraceDebugEventListener.java | 85 int tokenIndex = token.getTokenIndex(); in createNode() local 86 System.out.println("create "+ID+": "+tokenIndex); in createNode()
|
/external/antlr/runtime/ObjC/Framework/ |
D | UnbufferedTokenStream.m | 37 @synthesize tokenIndex; 49 tokenIndex = 0; 60 tokenIndex = 0; 78 [t setTokenIndex:tokenIndex++];
|
D | UnbufferedTokenStream.h | 40 NSInteger tokenIndex; // simple counter to set token index in tokens variable 45 @property (getter=getTokenIndex, setter=setTokenIndex:) NSInteger tokenIndex;
|
D | DebugEventListener.h | 249 - (void) createNode:(unsigned)hash fromTokenAtIndex:(NSInteger)tokenIndex;
|
D | DebugEventSocketProxy.h | 107 - (void) createNode:(unsigned)hash fromTokenAtIndex:(NSInteger)tokenIndex;
|
/external/antlr/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/runtime/Java/src/main/java/org/antlr/runtime/ |
D | UnbufferedTokenStream.java | 49 protected int tokenIndex = 0; // simple counter to set token index in tokens field in UnbufferedTokenStream 61 t.setTokenIndex(tokenIndex++); in nextElement()
|
/external/antlr/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/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;
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3commontoken.hpp | 217 void set_tokenIndex(ANTLR_MARKER tokenIndex);
|
D | antlr3commontoken.inl | 237 ANTLR_INLINE void CommonToken<ImplTraits>::set_tokenIndex(ANTLR_MARKER tokenIndex) argument 239 m_index = tokenIndex;
|