HomeSort by relevance Sort by last modified time
    Searched defs:Debugger (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/tools/cr/cr/actions/
debugger.py 5 """A module for the Debugger base class."""
10 class Debugger(cr.Action, cr.Plugin.Type):
16 SELECTOR_ARG = '--debugger'
18 SELECTOR_HELP = 'Sets the debugger to use for debug commands.'
26 """Checks if the debugger is attaching or launching."""
31 """Ask the debugger to restart.
40 """Kill the running debugger."""
45 """Invoke the program within a debugger."""
50 """Attach a debugger to a running program."""
  /external/antlr/antlr-3.4/runtime/Python/tests/
t059debug.py 13 class Debugger(threading.Thread):
15 super(Debugger, self).__init__()
78 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
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 35 if prev_frame.f_code.co_filename.count('Debugger.py'):
36 # (that test will catch both Debugger.py and RemoteDebugger.py)
51 class Debugger:
77 # Clean up pyshell if user clicked debugger control close widget.
79 # toggled debugger from pyshell Debug menu)
81 # Now close the debugger control window....
313 "Load PyShellEditorWindow breakpoints into subprocess debugger"
RemoteDebugger.py 25 from idlelib import Debugger
177 """Start the debugger and its RPC link in the Python subprocess
179 Start the subprocess side of the split debugger and set up that side of the
180 RPC link by instantiating the GUIProxy, Idb debugger, and IdbAdapter
182 RPCServer to handle RPC requests from the split debugger GUI via the
187 idb = Debugger.Idb(gui_proxy)
339 """Start the subprocess debugger, initialize the debugger GUI and RPC link
341 Request the RPCServer start the Python subprocess debugger and link. Set
342 up the Idle side of the split debugger by instantiating the IdbProxy
    [all...]
PyShell.py 36 from idlelib import Debugger
143 try: # update the subprocess debugger
144 debug = self.flist.pyshell.interp.debugger
146 except: # but debugger may not be active right now....
172 debug = self.flist.pyshell.interp.debugger
187 debug = self.flist.pyshell.interp.debugger
212 # debugger is loaded) is updated during the save, the visible
451 # close only the subprocess debugger
455 # Only close subprocess debugger, don't unregister gui_adap!
483 # restart subprocess debugger
575 debugger = None variable in class:ModifiedInterpreter
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 35 if prev_frame.f_code.co_filename.count('Debugger.py'):
36 # (that test will catch both Debugger.py and RemoteDebugger.py)
51 class Debugger:
77 # Clean up pyshell if user clicked debugger control close widget.
79 # toggled debugger from pyshell Debug menu)
81 # Now close the debugger control window....
313 "Load PyShellEditorWindow breakpoints into subprocess debugger"
RemoteDebugger.py 25 from idlelib import Debugger
177 """Start the debugger and its RPC link in the Python subprocess
179 Start the subprocess side of the split debugger and set up that side of the
180 RPC link by instantiating the GUIProxy, Idb debugger, and IdbAdapter
182 RPCServer to handle RPC requests from the split debugger GUI via the
187 idb = Debugger.Idb(gui_proxy)
339 """Start the subprocess debugger, initialize the debugger GUI and RPC link
341 Request the RPCServer start the Python subprocess debugger and link. Set
342 up the Idle side of the split debugger by instantiating the IdbProxy
    [all...]
PyShell.py 36 from idlelib import Debugger
143 try: # update the subprocess debugger
144 debug = self.flist.pyshell.interp.debugger
146 except: # but debugger may not be active right now....
172 debug = self.flist.pyshell.interp.debugger
187 debug = self.flist.pyshell.interp.debugger
212 # debugger is loaded) is updated during the save, the visible
451 # close only the subprocess debugger
455 # Only close subprocess debugger, don't unregister gui_adap!
483 # restart subprocess debugger
575 debugger = None variable in class:ModifiedInterpreter
    [all...]
  /external/chromium_org/v8/src/
debug.cc 324 // Debugger statement always calls debugger. No need to modify it.
341 // Debugger statement always calls debugger. No need to modify it.
359 // Debugger statement always calls debugger. No need to modify it.
387 // Debugger statement always calls debugger. No need to modify it.
535 // shutting down the debugger as it will leave the break point information in
674 Debugger* debugger = isolate_->debugger() local
    [all...]
debug.h 84 // Must match Debug.BreakPositionAlignment in debug-debugger.js
188 // Generate debugger events for collected scripts.
233 // This class contains the debugger support. The main purpose is to handle
287 // Returns true if the current stub call is patched to call the debugger.
290 // a debugger breakpoint.
410 friend class Debugger;
552 // Global handle to debug context where all the debugger JavaScript code is
599 // Frame pointer for the frame where debugger should be called when current
607 // debugger returns control back to user script.
610 // Top debugger entry
    [all...]
  /external/v8/src/
debug.cc 306 // Debugger statement always calls debugger. No need to modify it.
323 // Debugger statement always calls debugger. No need to modify it.
341 // Debugger statement always calls debugger. No need to modify it.
369 // Debugger statement always calls debugger. No need to modify it.
500 // shutting down the debugger as it will leave the break point information in
639 Debugger* debugger = Isolate::Current()->debugger() local
913 EnterDebugger debugger; local
2494 EnterDebugger debugger; local
2597 EnterDebugger debugger; local
2773 EnterDebugger debugger; local
3125 EnterDebugger debugger; local
    [all...]
debug.h 176 // Generate debugger events for collected scripts.
218 // This class contains the debugger support. The main purpose is to handle
258 // Returns true if the current stub call is patched to call the debugger.
261 // a debugger breakpoint.
378 friend class Debugger;
475 // Global handle to debug context where all the debugger JavaScript code is
522 // Frame pointer for the frame where debugger should be called when current
530 // debugger returns control back to user script.
533 // Top debugger entry.
567 // Message delivered to the message handler callback. This is either a debugger
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Workspace.js 216 return this._projectDelegate.type() === WebInspector.projectTypes.Debugger || this._projectDelegate.type() === WebInspector.projectTypes.LiveEdit;
481 Debugger: "debugger",
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/
ddmlib-22.2.0.jar 
  /prebuilts/misc/common/ddmlib/
ddmlib-prebuilt.jar 
  /prebuilts/tools/common/freemarker/
freemarker-2.3.19.jar 

Completed in 348 milliseconds