/external/v8/test/mjsunit/ |
debug-step.js | 28 // Flags: --expose-debug-as debug 29 // Get the Debug object exposed from the debug context global object. 30 Debug = debug.Debug 32 // Simple debug event handler which first time hit will perform 1000 steps and 39 if (event == Debug.DebugEvent.Break) { 41 exec_state.prepareStep(Debug.StepAction.StepIn) [all...] |
debug-stepin-accessor-ic.js | 5 // Flags: --expose-debug-as debug 30 if (event != Debug.DebugEvent.Break) return; 34 exec_state.prepareStep(Debug.StepAction.StepIn); 41 var Debug = debug.Debug; 42 Debug.setListener(listener); 47 Debug.setListener(null); // Break
|
debug-stepin-builtin-callback-opt.js | 5 // Flags: --expose-debug-as debug 7 Debug = debug.Debug 13 if (event != Debug.DebugEvent.Break) return; 18 exec_state.prepareStep(Debug.StepAction.StepIn); 32 Debug.setListener(listener); 35 Debug.setListener(null); // Break 4.
|
deserialize-script-id.js | 8 var Debug = %GetDebugContext().Debug; 9 Debug.setListener(function(){}); 17 Debug.setListener(null);
|
regress-3225.js | 5 // Flags: --expose-debug-as debug --debug-eval-readonly-locals 7 Debug = debug.Debug 13 if (event != Debug.DebugEvent.Break) return; 31 Debug.setListener(listener); 52 Debug.setListener(null);
|
debug-enable-disable-breakpoints.js | 28 // Flags: --expose-debug-as debug 29 // Get the Debug object exposed from the debug context global object. 30 Debug = debug.Debug 32 // Simple debug event handler which just counts the number of break points hit. 36 if (event == Debug.DebugEvent.Break) { 41 // Add the debug event listener [all...] |
debug-liveedit-breakpoints.js | 28 // Flags: --expose-debug-as debug 29 // Get the Debug object exposed from the debug context global object. 31 Debug = debug.Debug 32 Debug.setListener(function(){}); 64 var script = Debug.findScript(F25); 66 assertEquals(0, Debug.scriptBreakPoints().length) [all...] |
debug-multiple-breakpoints.js | 28 // Flags: --expose-debug-as debug 29 // Get the Debug object exposed from the debug context global object. 30 Debug = debug.Debug 32 // Simple debug event handler which just counts the number of break points hit. 36 if (event == Debug.DebugEvent.Break) { 41 // Add the debug event listener [all...] |
debug-stepin-builtin-callback.js | 28 // Flags: --expose-debug-as debug 32 Debug = debug.Debug 38 if (event == Debug.DebugEvent.Break) { 41 exec_state.prepareStep(Debug.StepAction.StepIn); 68 Debug.setListener(array_listener); 71 Debug.setListener(null); // B11 76 Debug.setListener(array_listener) [all...] |
debug-mirror-cache.js | 28 // Flags: --expose-debug-as debug 40 // Get the Debug object exposed from the debug context global object. 41 Debug = debug.Debug 49 if (event == Debug.DebugEvent.Break) 54 assertTrue(debug.MirrorCacheIsEmpty(), "Mirror cache not cleared"); 56 // Get the debug command processor in paused state [all...] |
/external/v8/test/mjsunit/es6/ |
debug-stepin-string-template.js | 5 // Flags: --expose-debug-as debug 7 Debug = debug.Debug 13 if (event != Debug.DebugEvent.Break) return; 22 exec_state.prepareStep(Debug.StepAction.StepIn); 42 Debug.setListener(listener); 45 Debug.setListener(null); // c
|
/external/v8/test/mjsunit/harmony/ |
debug-stepin-default-parameters.js | 5 // Flags: --expose-debug-as debug --harmony-default-parameters 7 Debug = debug.Debug 13 if (event != Debug.DebugEvent.Break) return; 22 exec_state.prepareStep(Debug.StepAction.StepIn); 37 Debug.setListener(listener); 40 Debug.setListener(null); // c
|
/external/v8/test/mjsunit/regress/ |
regress-2825.js | 5 // Flags: --expose-debug-as debug 20 Debug = debug.Debug; 25 if (event != Debug.DebugEvent.Break) return; 35 Debug.setListener(listener); 37 Debug.setBreakPoint(f, 3, 0); 41 Debug.setListener(null);
|
regress-crbug-465298.js | 5 // Flags: --noturbo-osr --noturbo-inlining --expose-debug-as debug 11 // Get the Debug object exposed from the debug context global object. 12 Debug = debug.Debug; 17 if (event == Debug.DebugEvent.Break) { 28 function debugme() { Debug.setListener(listener); debugger; }
|
/toolchain/binutils/binutils-2.25/config/ |
bootstrap-debug-lib.mk | 9 STAGE1_TFLAGS += -g0 -fcompare-debug= 10 STAGE2_TFLAGS += -fcompare-debug= 11 STAGE3_TFLAGS += -fcompare-debug=-g0 12 do-compare = $(SHELL) $(srcdir)/contrib/compare-debug $$f1 $$f2
|
/external/chromium-trace/catapult/third_party/coverage/coverage/ |
plugin_support.py | 25 self.debug = None 28 def load_plugins(cls, modules, config, debug=None): 35 plugins.debug = debug 79 if self.debug and self.debug.should('plugin'): 80 self.debug.write("Loaded plugin %r: %r" % (self.current_module, plugin)) 81 labelled = LabelledDebug("plugin %r" % (self.current_module,), self.debug) 106 """A Debug writer, but with labels for prepending to the messages.""" 108 def __init__(self, label, debug, prev_labels=()) [all...] |
/external/llvm/test/DebugInfo/MIR/X86/ |
live-debug-values-3preds.mir | 3 # Test the extension of debug ranges from 3 predecessors. 24 # with clang -g -O1 -c -emit-llvm LiveDebugValues-3preds.c -S -o live-debug-values-3preds.ll 25 # then llc -stop-after stackmap-liveness live-debug-values-3preds.ll -o /dev/null > live-debug-values-3preds.mir 30 # CHECK: DBG_VALUE debug-use %edx, debug-use _, !11, !17, debug-location !21 31 # CHECK-NEXT: DBG_VALUE debug-use %esi, debug-use _, !10, !17, debug-location !1 [all...] |
/external/llvm/include/llvm/Support/ |
Debug.h | 1 //===- llvm/Support/Debug.h - Easy way to add debug output ------*- C++ -*-===// 14 // In particular, just wrap your code with the DEBUG() macro, and it will be 15 // enabled automatically if you specify '-debug' on the command-line. 16 // DEBUG() requires the DEBUG_TYPE macro to be defined. Set it to "foo" specify 17 // that your debug code belongs to class "foo". Be careful that you only do 18 // this after including Debug.h and not around any #include of headers. Headers 20 // DEBUG() macro. Then, on the command line, you can specify '-debug-only=foo' 21 // to enable JUST the debug information for the foo class [all...] |
/external/curl/projects/Windows/VC10/ |
curl-all.sln | 12 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 13 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 14 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32 15 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64 16 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win3 [all...] |
/external/curl/projects/Windows/VC11/ |
curl-all.sln | 12 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 13 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 14 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32 15 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64 16 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win3 [all...] |
/external/curl/projects/Windows/VC12/ |
curl-all.sln | 12 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 13 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 14 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32 15 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64 16 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win3 [all...] |
/external/curl/projects/Windows/VC7/lib/ |
libcurl.sln | 6 ConfigName.0 = DLL Debug 7 ConfigName.1 = DLL Debug - DLL OpenSSL 8 ConfigName.2 = DLL Debug - DLL OpenSSL - DLL LibSSH2 9 ConfigName.3 = DLL Debug - DLL Windows SSPI 10 ConfigName.4 = DLL Debug - DLL Windows SSPI - DLL WinIDN 16 ConfigName.10 = LIB Debug 17 ConfigName.11 = LIB Debug - DLL OpenSSL 18 ConfigName.12 = LIB Debug - DLL OpenSSL - DLL LibSSH2 19 ConfigName.13 = LIB Debug - DLL Windows SSPI 20 ConfigName.14 = LIB Debug - DLL Windows SSPI - DLL WinID [all...] |
/external/curl/projects/Windows/VC7/src/ |
curlsrc.sln | 6 ConfigName.0 = DLL Debug 7 ConfigName.1 = DLL Debug - DLL OpenSSL 8 ConfigName.2 = DLL Debug - DLL OpenSSL - DLL LibSSH2 9 ConfigName.3 = DLL Debug - DLL Windows SSPI 10 ConfigName.4 = DLL Debug - DLL Windows SSPI - DLL WinIDN 16 ConfigName.10 = LIB Debug 17 ConfigName.11 = LIB Debug - DLL OpenSSL 18 ConfigName.12 = LIB Debug - DLL OpenSSL - DLL LibSSH2 19 ConfigName.13 = LIB Debug - DLL Windows SSPI 20 ConfigName.14 = LIB Debug - DLL Windows SSPI - DLL WinID [all...] |
/external/curl/projects/Windows/VC8/ |
curl-all.sln | 12 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 13 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 14 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32 15 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64 16 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win3 [all...] |
/external/curl/projects/Windows/VC9/ |
curl-all.sln | 12 DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 = DLL Debug - DLL OpenSSL - DLL LibSSH2|Win32 13 DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 = DLL Debug - DLL OpenSSL - DLL LibSSH2|x64 14 DLL Debug - DLL OpenSSL|Win32 = DLL Debug - DLL OpenSSL|Win32 15 DLL Debug - DLL OpenSSL|x64 = DLL Debug - DLL OpenSSL|x64 16 DLL Debug - DLL Windows SSPI - DLL WinIDN|Win32 = DLL Debug - DLL Windows SSPI - DLL WinIDN|Win3 [all...] |