Home | History | Annotate | Download | only in src

Lines Matching full:debugger

62 static void		    setDebugListener	(pANTLR3_TOKEN_STREAM ts, pANTLR3_DEBUG_EVENT_LISTENER debugger);
206 antlr3CommonTokenDebugStreamSourceNew(ANTLR3_UINT32 hint, pANTLR3_TOKEN_SOURCE source, pANTLR3_DEBUG_EVENT_LISTENER debugger)
214 // Install the debugger object
216 stream->tstream->debugger = debugger;
328 setDebugListener (pANTLR3_TOKEN_STREAM ts, pANTLR3_DEBUG_EVENT_LISTENER debugger)
330 // Install the debugger object
332 ts->debugger = debugger;
427 ts->debugger->consumeHiddenToken(ts->debugger, ts->get(ts, i));
434 /// As per the normal tokLT but sends information to the debugger
616 /// As per ordinary consume but notifies the debugger about hidden
641 ts->debugger->consumeToken(ts->debugger, t); // Tell the debugger that we consumed the first token
647 // we need to tell the debugger about those tokens.
653 ts->debugger->consumeHiddenToken(ts->debugger, ts->get(ts, (ANTLR3_UINT32)i));
832 ts->debugger->LT(ts->debugger, i, tokLT(ts, i));
843 /// As per mark() but with a call to tell the debugger we are doing this
853 ts->debugger->mark(ts->debugger, is->lastMarker);
900 ts->debugger->rewindLast(ts->debugger);
921 ts->debugger->rewind(ts->debugger, marker);
940 // TODO: Implement seek in debugger when Ter adds it to Java