Home
last modified time | relevance | path

Searched refs:tokenIndex (Results 1 – 25 of 48) sorted by relevance

12

/external/boringssl/src/util/fipstools/delocate/
Ddelocate.peg.go323 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/
Dparser.peg.go261 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/
DRemoteDebugEventSocketListener.cs182 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()
DDebugEventSocketProxy.cs289 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()
DTraceDebugEventListener.cs98 int tokenIndex = token.TokenIndex; in CreateNode()
99 Console.Out.WriteLine("create " + ID + ": " + tokenIndex); in CreateNode()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DRemoteDebugEventSocketListener.cs218 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()
DDebugEventSocketProxy.cs330 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()
DTraceDebugEventListener.cs111 int tokenIndex = token.TokenIndex; in CreateNode()
112 Console.Out.WriteLine( "create " + ID + ": " + tokenIndex ); in CreateNode()
/external/owasp/sanitizer/src/main/org/owasp/html/
DCssTokens.java93 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/
DCommonErrorNode.as18 (stop.tokenIndex < start.tokenIndex &&
44 var i:int = Token(start).tokenIndex;
45 var j:int = Token(stop).tokenIndex;
DCommonTree.as116 return _token.tokenIndex;
127 return _token.tokenIndex;
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DRemoteDebugEventSocketListener.java162 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()
DDebugEventSocketProxy.java281 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()
DTraceDebugEventListener.java85 int tokenIndex = token.getTokenIndex(); in createNode() local
86 System.out.println("create "+ID+": "+tokenIndex); in createNode()
/external/antlr/runtime/ObjC/Framework/
DUnbufferedTokenStream.m37 @synthesize tokenIndex;
49 tokenIndex = 0;
60 tokenIndex = 0;
78 [t setTokenIndex:tokenIndex++];
DUnbufferedTokenStream.h40 NSInteger tokenIndex; // simple counter to set token index in tokens variable
45 @property (getter=getTokenIndex, setter=setTokenIndex:) NSInteger tokenIndex;
DDebugEventListener.h249 - (void) createNode:(unsigned)hash fromTokenAtIndex:(NSInteger)tokenIndex;
DDebugEventSocketProxy.h107 - (void) createNode:(unsigned)hash fromTokenAtIndex:(NSInteger)tokenIndex;
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DUnbufferedTokenStream.cs57 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/
DUnbufferedTokenStream.java49 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/
DUnbufferedTokenStream.cs59 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/
DCommonToken.as71 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+":…
DToken.as52 function get tokenIndex():int;
53 function set tokenIndex(index:int):void;
/external/antlr/runtime/Cpp/include/
Dantlr3commontoken.hpp217 void set_tokenIndex(ANTLR_MARKER tokenIndex);
Dantlr3commontoken.inl237 ANTLR_INLINE void CommonToken<ImplTraits>::set_tokenIndex(ANTLR_MARKER tokenIndex) argument
239 m_index = tokenIndex;

12