Home
last modified time | relevance | path

Searched refs:tokenStopIndex (Results 1 – 25 of 26) sorted by relevance

12

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DTraceDebugEventListener.cs112 public override void SetTokenBoundaries(object t, int tokenStartIndex, int tokenStopIndex) { in SetTokenBoundaries() argument
114 tokenStartIndex + ", " + tokenStopIndex); in SetTokenBoundaries()
DDebugEventRepeater.cs155 public virtual void SetTokenBoundaries(object t, int tokenStartIndex, int tokenStopIndex) { in SetTokenBoundaries() argument
156 _listener.SetTokenBoundaries(t, tokenStartIndex, tokenStopIndex); in SetTokenBoundaries()
DIDebugEventListener.cs381 void SetTokenBoundaries(object t, int tokenStartIndex, int tokenStopIndex); in SetTokenBoundaries() argument
DBlankDebugEventListener.cs124 public virtual void SetTokenBoundaries(object t, int tokenStartIndex, int tokenStopIndex) { in SetTokenBoundaries() argument
DDebugEventHub.cs290 public virtual void SetTokenBoundaries(object t, int tokenStartIndex, int tokenStopIndex) { in SetTokenBoundaries() argument
293 listener.SetTokenBoundaries(t, tokenStartIndex, tokenStopIndex); in SetTokenBoundaries()
DDebugEventSocketProxy.cs348 public override void SetTokenBoundaries(object t, int tokenStartIndex, int tokenStopIndex) { in SetTokenBoundaries() argument
350 Transmit("setTokenBoundaries\t" + ID + "\t" + tokenStartIndex + "\t" + tokenStopIndex); in SetTokenBoundaries()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DTraceDebugEventListener.java102 public void setTokenBoundaries(Object t, int tokenStartIndex, int tokenStopIndex) { in setTokenBoundaries() argument
104 tokenStartIndex+", "+tokenStopIndex); in setTokenBoundaries()
DDebugEventRepeater.java85 @Override public void setTokenBoundaries(Object t, int tokenStartIndex, int tokenStopIndex) { in setTokenBoundaries() argument
86 listener.setTokenBoundaries(t, tokenStartIndex, tokenStopIndex); in setTokenBoundaries()
DDebugEventListener.java322 public void setTokenBoundaries(Object t, int tokenStartIndex, int tokenStopIndex); in setTokenBoundaries() argument
DBlankDebugEventListener.java74 @Override public void setTokenBoundaries(Object t, int tokenStartIndex, int tokenStopIndex) {} in setTokenBoundaries() argument
DDebugEventHub.java317 public void setTokenBoundaries(Object t, int tokenStartIndex, int tokenStopIndex) { in setTokenBoundaries() argument
320 listener.setTokenBoundaries(t, tokenStartIndex, tokenStopIndex); in setTokenBoundaries()
DDebugEventSocketProxy.java345 public void setTokenBoundaries(Object t, int tokenStartIndex, int tokenStopIndex) { in setTokenBoundaries() argument
347 transmit("setTokenBoundaries\t"+ID+"\t"+tokenStartIndex+"\t"+tokenStopIndex); in setTokenBoundaries()
/external/antlr/runtime/Python/antlr3/
Ddebug.py718 def setTokenBoundaries(self, t, tokenStartIndex, tokenStopIndex): argument
814 def setTokenBoundaries(self, t, tokenStartIndex, tokenStopIndex): argument
817 tokenStartIndex, tokenStopIndex))
1104 def setTokenBoundaries(self, t, tokenStartIndex, tokenStopIndex): argument
1107 tokenStartIndex, tokenStopIndex))
/external/antlr/runtime/Python3/antlr3/
Ddebug.py718 def setTokenBoundaries(self, t, tokenStartIndex, tokenStopIndex): argument
814 def setTokenBoundaries(self, t, tokenStartIndex, tokenStopIndex): argument
817 tokenStartIndex, tokenStopIndex))
1101 def setTokenBoundaries(self, t, tokenStartIndex, tokenStopIndex): argument
1104 tokenStartIndex, tokenStopIndex))
Dtree.py1310 tokenStopIndex = property(getTokenStopIndex, setTokenStopIndex) variable in CommonTree
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DTree.as76 function get tokenStopIndex():int;
78 function set tokenStopIndex(index:int):void;
DCommonTree.as125 public override function get tokenStopIndex():int { property in org.antlr.runtime.tree.CommonTree
132 public override function set tokenStopIndex(index:int):void { property in org.antlr.runtime.tree.CommonTree
DCommonTreeAdaptor.as82 Tree(t).tokenStopIndex = stop;
96 return Tree(t).tokenStopIndex;
DBaseTree.as348 public function get tokenStopIndex():int {
352 public function set tokenStopIndex(index:int):void {
/external/antlr/runtime/Cpp/include/
Dantlr3debugeventlistener.hpp390 …l void setTokenBoundaries( TreeType* t, ANTLR_MARKER tokenStartIndex, ANTLR_MARKER tokenStopIndex);
/external/antlr/runtime/ObjC/Framework/
DDebugEventListener.h271 …oundariesForTree:(unsigned)nodeHash From:(NSUInteger)tokenStartIndex To:(NSUInteger)tokenStopIndex;
DDebugEventSocketProxy.h110 …nBoundariesForTree:(unsigned)nodeHash From:(NSInteger)tokenStartIndex To:(NSInteger)tokenStopIndex;
DDebugEventSocketProxy.m416 …enBoundariesForTree:(unsigned)nodeHash From:(NSInteger)tokenStartIndex To:(NSInteger)tokenStopIndex
418 …tring stringWithFormat:@"setTokenBoundaries %u %d %d", nodeHash, tokenStartIndex, tokenStopIndex]];
/external/antlr/runtime/C/include/
Dantlr3debugeventlistener.h384 …LISTENER delboy, pANTLR3_BASE_TREE t, ANTLR3_MARKER tokenStartIndex, ANTLR3_MARKER tokenStopIndex);
/external/antlr/runtime/C/src/
Dantlr3debughandlers.c86 …LISTENER delboy, pANTLR3_BASE_TREE t, ANTLR3_MARKER tokenStartIndex, ANTLR3_MARKER tokenStopIndex);
1036 …_LISTENER delboy, pANTLR3_BASE_TREE t, ANTLR3_MARKER tokenStartIndex, ANTLR3_MARKER tokenStopIndex) in setTokenBoundaries() argument
1042 (ANTLR3_UINT32)tokenStopIndex in setTokenBoundaries()

12