Home
last modified time | relevance | path

Searched refs:debugger (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
Ddebug-mode.rb74 listener = options[ :listener ] or debugger = ANTLRDebugger.new( port = 49100 )
84 debugger.join
85 return( debugger )
121 debugger = parse( grammar, :a, 'a' )
122 debugger.success.should be_true
140 debugger.events.should == expected
151 debugger = parse( grammar, :a, "a b" )
152 debugger.success.should be_true
177 debugger.events.should == expected
189 debugger = parse( grammar, :a, "a" )
[all …]
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt059debug.py78 debugger = Debugger(port)
79 debugger.start()
97 debugger.join()
98 return debugger
149 debugger = self.execParser(
154 self.assertTrue(debugger.success)
170 self.assertListEqual(debugger.events, expected)
184 debugger = self.execParser(
189 self.assertTrue(debugger.success)
214 self.assertListEqual(debugger.events, expected)
[all …]
/external/vixl/src/aarch64/
Ddebugger-aarch64.cc60 virtual uint8_t* ToAddress(Debugger* debugger) const = 0;
75 VIXL_NO_RETURN virtual uint8_t* ToAddress(Debugger* debugger) const in ToAddress()
77 USE(debugger); in ToAddress()
96 virtual uint8_t* ToAddress(Debugger* debugger) const VIXL_OVERRIDE;
145 virtual uint8_t* ToAddress(Debugger* debugger) const VIXL_OVERRIDE;
163 virtual uint8_t* ToAddress(Debugger* debugger) const VIXL_OVERRIDE;
210 VIXL_NO_RETURN virtual uint8_t* ToAddress(Debugger* debugger) const in ToAddress()
212 USE(debugger); in ToAddress()
252 VIXL_NO_RETURN virtual uint8_t* ToAddress(Debugger* debugger) const in ToAddress()
254 USE(debugger); in ToAddress()
[all …]
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3basetreeadaptor.c80 antlr3BaseTreeAdaptorInit(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_DEBUG_EVENT_LISTENER debugger) in antlr3BaseTreeAdaptorInit() argument
84 if (debugger == NULL) in antlr3BaseTreeAdaptorInit()
125 debugger->adaptor = adaptor; in antlr3BaseTreeAdaptorInit()
452 adaptor->debugger->createNode (adaptor->debugger, t); in dbgNil()
508 adaptor->debugger->createNode(adaptor->debugger, tree); in simulateTreeConstruction()
515 adaptor->debugger->addChild(adaptor->debugger, tree, child); in simulateTreeConstruction()
561 adaptor->debugger->addChild(adaptor->debugger, t, child); in dbgAddChild()
583 adaptor->debugger->addChild(adaptor->debugger, t, tc); in dbgAddChildToken()
697 adaptor->debugger->becomeRoot(adaptor->debugger, newRootTree, oldRootTree); in dbgBecomeRoot()
751 adaptor->debugger->becomeRoot(adaptor->debugger,t, oldRoot); in dbgBecomeRootToken()
[all …]
Dantlr3tokenstream.c62 static void setDebugListener (pANTLR3_TOKEN_STREAM ts, pANTLR3_DEBUG_EVENT_LISTENER debugger);
206 …amSourceNew(ANTLR3_UINT32 hint, pANTLR3_TOKEN_SOURCE source, pANTLR3_DEBUG_EVENT_LISTENER debugger) in antlr3CommonTokenDebugStreamSourceNew() argument
216 stream->tstream->debugger = debugger; in antlr3CommonTokenDebugStreamSourceNew()
328 setDebugListener (pANTLR3_TOKEN_STREAM ts, pANTLR3_DEBUG_EVENT_LISTENER debugger) in setDebugListener() argument
332 ts->debugger = debugger; in setDebugListener()
427 ts->debugger->consumeHiddenToken(ts->debugger, ts->get(ts, i)); in consumeInitialHiddenTokens()
641 ts->debugger->consumeToken(ts->debugger, t); // Tell the debugger that we consumed the first token in dbgConsume()
653 ts->debugger->consumeHiddenToken(ts->debugger, ts->get(ts, (ANTLR3_UINT32)i)); in dbgConsume()
832 ts->debugger->LT(ts->debugger, i, tokLT(ts, i)); in dbgLA()
853 ts->debugger->mark(ts->debugger, is->lastMarker); in dbgMark()
[all …]
Dantlr3baserecognizer.c186 recognizer->debugger = NULL; in antlr3BaseRecognizerNew()
725 if (recognizer->debugger != NULL) in reportError()
727 recognizer->debugger->recognitionException(recognizer->debugger, recognizer->state->exception); in reportError()
753 if (recognizer->debugger != NULL) in beginBacktrack()
755 recognizer->debugger->beginBacktrack(recognizer->debugger, level); in beginBacktrack()
762 if (recognizer->debugger != NULL) in endBacktrack()
764 recognizer->debugger->endBacktrack(recognizer->debugger, level, successful); in endBacktrack()
770 if (recognizer->debugger != NULL) in beginResync()
772 recognizer->debugger->beginResync(recognizer->debugger); in beginResync()
779 if (recognizer->debugger != NULL) in endResync()
[all …]
Dantlr3commontreeadaptor.c57 … setDebugEventListener (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_DEBUG_EVENT_LISTENER debugger);
177 …TLR3_TREE_ADAPTORDebugNew(pANTLR3_STRING_FACTORY strFactory, pANTLR3_DEBUG_EVENT_LISTENER debugger) in ANTLR3_TREE_ADAPTORDebugNew() argument
189 antlr3BaseTreeAdaptorInit(ta, debugger); in ANTLR3_TREE_ADAPTORDebugNew()
202 setDebugEventListener (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_DEBUG_EVENT_LISTENER debugger) in setDebugEventListener() argument
206 antlr3BaseTreeAdaptorInit(adaptor, debugger); in setDebugEventListener()
277 adaptor->debugger->createNode(adaptor->debugger, ct); in dbgCreate()
415 …adaptor->debugger->setTokenBoundaries(adaptor->debugger, t, startToken->getTokenIndex(startToken),… in dbgSetTokenBoundaries()
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/
DSmaliSteppingCommandProvider.java34 import com.intellij.debugger.SourcePosition;
35 import com.intellij.debugger.engine.ContextUtil;
36 import com.intellij.debugger.engine.DebugProcessImpl.ResumeCommand;
37 import com.intellij.debugger.engine.SuspendContextImpl;
38 import com.intellij.debugger.engine.events.DebuggerCommandImpl;
39 import com.intellij.debugger.impl.JvmSteppingCommandProvider;
DSmaliExpressionEvaluator.java34 import com.intellij.debugger.engine.evaluation.EvaluateException;
35 import com.intellij.debugger.engine.evaluation.EvaluationContext;
36 import com.intellij.debugger.engine.evaluation.expression.ExpressionEvaluator;
37 import com.intellij.debugger.engine.evaluation.expression.Modifier;
DSmaliPositionManagerFactory.java34 import com.intellij.debugger.PositionManager;
35 import com.intellij.debugger.PositionManagerFactory;
36 import com.intellij.debugger.engine.DebugProcess;
/external/v8/src/inspector/
Dv8-stack-trace-impl.cc52 V8Debugger* debugger, int contextGroupId) { in toFramesVector() argument
58 debugger ? debugger->wasmTranslation() : nullptr; in toFramesVector()
117 V8Debugger* debugger, int contextGroupId, in create() argument
124 toFramesVector(stackTrace, frames, maxStackSize, isolate, debugger, in create()
129 if (debugger && maxStackSize > 1) { in create()
130 asyncCallChain = debugger->currentAsyncCallChain(); in create()
131 maxAsyncCallChainDepth = debugger->maxAsyncCallChainDepth(); in create()
170 V8Debugger* debugger, int contextGroupId, size_t maxStackSize, in capture() argument
179 return V8StackTraceImpl::create(debugger, contextGroupId, stackTrace, in capture()
271 V8StackTraceImpl::buildInspectorObjectForTail(V8Debugger* debugger) const { in buildInspectorObjectForTail()
[all …]
DBUILD.gn84 "debugger-script.js",
87 "$target_gen_dir/debugger-script.h",
91 rebase_path("debugger-script.js", root_build_dir),
92 rebase_path("$target_gen_dir/debugger-script.h", root_build_dir),
160 "v8-debugger-agent-impl.cc",
161 "v8-debugger-agent-impl.h",
162 "v8-debugger-script.cc",
163 "v8-debugger-script.h",
164 "v8-debugger.cc",
165 "v8-debugger.h",
Dinspector.gypi30 'inspector_debugger_script_source': 'debugger-script.js',
31 …'inspector_generated_debugger_script': '<(SHARED_INTERMEDIATE_DIR)/src/inspector/debugger-script.h…
64 'inspector/v8-debugger.cc',
65 'inspector/v8-debugger.h',
66 'inspector/v8-debugger-agent-impl.cc',
67 'inspector/v8-debugger-agent-impl.h',
68 'inspector/v8-debugger-script.cc',
69 'inspector/v8-debugger-script.h',
/external/llvm/utils/
DlldbDataFormatters.py7 def __lldb_init_module(debugger, internal_dict): argument
8 debugger.HandleCommand('type category define -e llvm -l c++')
9 debugger.HandleCommand('type synthetic add -w llvm '
12 debugger.HandleCommand('type synthetic add -w llvm '
15 debugger.HandleCommand('type synthetic add -w llvm '
18 debugger.HandleCommand('type summary add -w llvm '
/external/smali/smalidea/src/test/java/org/jf/smalidea/
DSmaliPositionManagerTest.java35 import com.intellij.debugger.NoDataException;
36 import com.intellij.debugger.PositionManager;
37 import com.intellij.debugger.SourcePosition;
38 import com.intellij.debugger.engine.DebugProcess;
39 import com.intellij.debugger.engine.DebugProcessListener;
40 import com.intellij.debugger.engine.evaluation.EvaluateException;
41 import com.intellij.debugger.engine.evaluation.EvaluationContext;
42 import com.intellij.debugger.engine.jdi.VirtualMachineProxy;
43 import com.intellij.debugger.engine.managerThread.DebuggerManagerThread;
44 import com.intellij.debugger.requests.RequestManager;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRDebugTreeParser.m47 id<ANTLRDebugEventListener,NSObject> debugger = nil;
50 debugger = (id<ANTLRDebugEventListener>)theDebugListener;
52debugger = [[ANTLRDebugEventProxy alloc] initWithGrammarName:[self grammarFileName] debuggerPort:p…
55 …tream = [[ANTLRDebugTreeNodeStream alloc] initWithTreeNodeStream:theStream debugListener:debugger];
61 [self setDebugListener:debugger];
62 //[debugger release];
116 #warning TODO: recoverFromMismatchedToken in debugger
124 #warning TODO: recoverFromMismatchedSet in debugger
DANTLRDebugParser.m47 id<ANTLRDebugEventListener,NSObject> debugger = nil;
50 debugger = [(id<ANTLRDebugEventListener,NSObject>)theDebugListener retain];
51 debugger = theDebugListener;
53debugger = [[ANTLRDebugEventProxy alloc] initWithGrammarName:[self grammarFileName] debuggerPort:p…
56 …tokenStream = [[ANTLRDebugTokenStream alloc] initWithTokenStream:theStream debugListener:debugger];
63 [self setDebugListener:debugger];
64 [debugger release];
/external/python/cpython2/Doc/library/
Dpdb.rst7 :synopsis: The Python debugger for interactive interpreters.
15 The module :mod:`pdb` defines an interactive source code debugger for Python
26 The debugger is extensible --- it is actually defined as the class :class:`Pdb`.
30 The debugger's prompt is ``(Pdb)``. Typical usage to run a program under control
31 of the debugger is::
53 useful than quitting the debugger upon program's exit.
58 The typical usage to break into the debugger from a running program is to
63 at the location you want to break into the debugger. You can then step through
64 the code following this statement, and continue running without the debugger using
85 The module defines the following functions; each enters the debugger in a
[all …]
/external/python/cpython3/Doc/library/
Dpdb.rst7 :synopsis: The Python debugger for interactive interpreters.
15 The module :mod:`pdb` defines an interactive source code debugger for Python
26 The debugger is extensible -- it is actually defined as the class :class:`Pdb`.
30 The debugger's prompt is ``(Pdb)``. Typical usage to run a program under control
31 of the debugger is::
58 useful than quitting the debugger upon program's exit.
62 in a :file:`.pdbrc` file, see :ref:`debugger-commands`.
64 The typical usage to break into the debugger from a running program is to
69 at the location you want to break into the debugger. You can then step through
70 the code following this statement, and continue running without the debugger
[all …]
/external/skia/site/dev/tools/
Ddebugger.md9 [https://debugger.skia.org](https://debugger.skia.org/) or can be run locally.
23 # Run the debugger locally
26 After running `skiaserve`, follow the instructions to open the debugger in your
/external/skqp/site/dev/tools/
Ddebugger.md9 [https://debugger.skia.org](https://debugger.skia.org/) or can be run locally.
23 # Run the debugger locally
26 After running `skiaserve`, follow the instructions to open the debugger in your
/external/python/cpython2/Lib/
Dpdb.doc4 To use the debugger in its simplest form:
9 The debugger's prompt is '(Pdb) '. This will stop in the first
21 The commands recognized by the debugger are listed in the next
30 Commands that the debugger doesn't recognize are assumed to be Python
36 debugger's state is not changed.
38 The debugger supports aliases, which can save typing. And aliases can
49 debugger prompt. This is particularly useful for aliases. If both
53 Aside from aliases, the debugger is not directly programmable; but it
54 is implemented as a class from which you can derive your own debugger
141 History, breakpoints, actions and debugger options are preserved.
[all …]
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
DLazyValue.java34 import com.intellij.debugger.DebuggerManagerEx;
35 import com.intellij.debugger.engine.DebugProcessImpl;
36 import com.intellij.debugger.engine.evaluation.EvaluateException;
37 import com.intellij.debugger.engine.evaluation.EvaluationContext;
38 import com.intellij.debugger.impl.DebuggerContextImpl;
39 import com.intellij.debugger.jdi.VirtualMachineProxyImpl;
/external/llvm/docs/
DBugpoint.rst42 causes the verifier to abort), ``bugpoint`` starts the `crash debugger`_.
48 selected code generator crashes, ``bugpoint`` starts the `crash debugger`_ on
51 failure, and starts the `code generator debugger`_.
57 `miscompilation debugger`_. Otherwise, there is no problem ``bugpoint`` can
60 .. _crash debugger:
62 Crash debugger
81 .. _code generator debugger: argument
83 Code generator debugger
86 The code generator debugger attempts to narrow down the amount of code that is
95 problem. The code generator debugger assumes that the "safe" backend produces
[all …]
/external/llvm/test/DebugInfo/X86/
Ddebugger-tune.ll1 ; Verify target-based defaults for "debugger tuning," and the ability to
13 ; RUN: llc -mtriple=x86_64-scei-ps4 -filetype=obj -debugger-tune=gdb < %s | llvm-readobj -sections …
14 ; RUN: llc -mtriple=x86_64-pc-linux -filetype=obj -debugger-tune=lldb < %s | llvm-readobj -sections…
15 ; RUN: llc -mtriple=x86_64-apple-darwin12 -filetype=obj -debugger-tune=sce < %s | llvm-readobj -sec…
37 !1 = !DIFile(filename: "debugger-tune.cpp", directory: "/home/probinson/projects/scratch")

12345678910>>...12