/external/v8/test/mjsunit/ |
debug-step-4.js | 28 // Flags: --expose-debug-as debug 29 // Get the Debug object exposed from the debug context global object. 30 Debug = debug.Debug 66 if (event == Debug.DebugEvent.Break) { 68 Debug.clearBreakPoint(bp); 69 exec_state.prepareStep(Debug.StepAction.StepNext) [all...] |
debug-setbreakpoint.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 function which stores the last debug event. 71 if (event == Debug.DebugEvent.Break) { 72 // Get the debug command processor [all...] |
debug-evaluate-shadowed-context.js | 5 // Flags: --expose-debug-as debug --no-analyze-environment-liveness 7 // Test that debug-evaluate only resolves variables that are used by 8 // the function inside which we debug-evaluate. This is to avoid 12 Debug = debug.Debug 16 if (event != Debug.DebugEvent.Break) return; 42 Debug.setListener(listener); 82 Debug.setListener(null) [all...] |
debug-scripts-request.js | 28 // Flags: --expose-debug-as debug 29 // Get the Debug object exposed from the debug context global object. 30 Debug = debug.Debug 61 if (event == Debug.DebugEvent.Break) { 62 // Get the debug command processor. 101 // Add the debug event listener [all...] |
debug-stepframe-clearing.js | 5 // Flags: --expose-debug-as debug 33 Debug = debug.Debug; 40 if (event != Debug.DebugEvent.Break) return; 51 exec_state.prepareStep(Debug.StepAction.StepFrame); 60 Debug.clearBreakPoint(bp_f1_line7); 61 exec_state.prepareStep(Debug.StepAction.StepFrame); 68 Debug.clearBreakPoint(bp_f1_line9) [all...] |
/external/llvm/test/CodeGen/MIR/ARM/ |
ARMLoadStoreDBG.mir | 3 ; ModuleID = '/Volumes/Data/llvm/test/CodeGen/ARM/sched-it-debug-nodes.ll' 65 !23 = !{i32 2, !"Debug Info Version", i32 3} 129 DBG_VALUE debug-use %r0, debug-use _, !18, !27, debug-location !28 130 DBG_VALUE debug-use %r1, debug-use _, !19, !27, debug-location !28 131 DBG_VALUE debug-use %r2, debug-use _, !20, !27, debug-location !2 [all...] |
/device/moto/shamu/ |
init.mmi.touch.sh | 35 debug() function 37 [ $dbg_on ] && echo "Debug: $*" 63 debug "searching driver for vendor [$touch_vendor]" 66 debug "no driver for vendor [$touch_vendor] is running" 69 debug "driver for vendor [$touch_vendor] found!!!" 77 debug "sysfs touch path: $touch_path" 82 debug "wait until driver reports <ready to flash>..." 86 debug "ready to flash!!!" 90 debug "not ready; keep waiting..." 103 debug "retrieving property: [$touch_path/$1] [all...] |
/external/icu/icu4c/source/samples/ufortune/ |
ufortune.vcxproj | 4 <ProjectConfiguration Include="Debug|Win32"> 5 <Configuration>Debug</Configuration> 8 <ProjectConfiguration Include="Debug|x64"> 9 <Configuration>Debug</Configuration> 30 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 52 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 60 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 67 <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">.\x86\Debug\</OutDir [all...] |
/external/icu/icu4c/source/samples/ugrep/ |
ugrep.vcxproj | 4 <ProjectConfiguration Include="Debug|Win32"> 5 <Configuration>Debug</Configuration> 8 <ProjectConfiguration Include="Debug|x64"> 9 <Configuration>Debug</Configuration> 25 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 48 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 56 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 73 <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">.\x86\Debug\</OutDir [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
Logger.java | 30 static public final int DEBUG = 3;
44 public void debug (String message) {
method in class:Logger 45 if (level >= DEBUG) Gdx.app.debug(tag, message);
48 public void debug (String message, Exception exception) {
method in class:Logger 49 if (level >= DEBUG) Gdx.app.debug(tag, message, exception);
69 * {@link #INFO} will let all non-debug messages through, and {@link #DEBUG} will let all messages through.
70 * @param level {@link #NONE}, {@link #ERROR}, {@link #INFO}, {@link #DEBUG}. */ [all...] |
/external/v8/test/mjsunit/es6/debug-promises/ |
reject-caught-by-default-reject-handler.js | 5 // Flags: --expose-debug-as debug --allow-natives-syntax 7 // Test debug events when we only listen to uncaught exceptions and 9 // We expect two Exception debug events: 13 Debug = debug.Debug; 41 if (event == Debug.DebugEvent.Exception) { 61 Debug.setBreakOnUncaughtException(); 62 Debug.setListener(listener) [all...] |
throw-caught-by-default-reject-handler.js | 5 // Flags: --expose-debug-as debug --allow-natives-syntax 7 // Test debug events when we only listen to uncaught exceptions and 9 // We expect two Exception debug events: 13 Debug = debug.Debug; 41 if (event == Debug.DebugEvent.Exception) { 62 Debug.setBreakOnUncaughtException(); 63 Debug.setListener(listener) [all...] |
throw-with-throw-in-reject.js | 5 // Flags: --expose-debug-as debug --allow-natives-syntax --promise-extra 7 // Test debug events when an exception is thrown inside a Promise, which is 9 // handler. We expect two Exception debug events: 13 Debug = debug.Debug; 44 if (event == Debug.DebugEvent.Exception) { 64 Debug.setBreakOnUncaughtException(); 65 Debug.setListener(listener) [all...] |
throw-with-undefined-reject.js | 5 // Flags: --expose-debug-as debug --allow-natives-syntax --promise-extra 7 // Test debug events when an exception is thrown inside a Promise, which is 9 // We expect two Exception debug events: 13 Debug = debug.Debug; 41 if (event == Debug.DebugEvent.Exception) { 63 Debug.setBreakOnUncaughtException(); 64 Debug.setListener(listener) [all...] |
/external/v8/test/mjsunit/es6/ |
generators-mirror.js | 5 // Flags: --expose-debug-as debug 29 var mirror = debug.MakeMirror(g); 30 var serializer = debug.MakeMirrorSerializer(); 36 assertTrue(mirror instanceof debug.Mirror); 37 assertTrue(mirror instanceof debug.ValueMirror); 38 assertTrue(mirror instanceof debug.ObjectMirror); 39 assertTrue(mirror instanceof debug.GeneratorMirror); 77 var mirror = debug.MakeMirror(iter); 97 var mirror = debug.MakeMirror(iter2) [all...] |
/external/v8/test/mjsunit/harmony/ |
debug-step-destructuring-assignment.js | 5 // Flags: --expose-debug-as debug --harmony-destructuring-assignment 9 var Debug = debug.Debug; 13 if (event != Debug.DebugEvent.Break) return; 19 exec_state.prepareStep(Debug.StepAction.StepNext); 21 exec_state.prepareStep(Debug.StepAction.StepIn); 29 Debug.setListener(listener); 85 Debug.setListener(null); // B4 [all...] |
debug-step-destructuring-bind.js | 5 // Flags: --expose-debug-as debug --harmony-destructuring-bind 8 var Debug = debug.Debug; 12 if (event != Debug.DebugEvent.Break) return; 18 exec_state.prepareStep(Debug.StepAction.StepNext); 20 exec_state.prepareStep(Debug.StepAction.StepIn); 28 Debug.setListener(listener); 109 Debug.setListener(null); // B5 [all...] |
/prebuilts/go/darwin-x86/api/ |
go1.5.txt | 45 pkg debug/dwarf, const ClassAddress = 1 46 pkg debug/dwarf, const ClassAddress Class 47 pkg debug/dwarf, const ClassBlock = 2 48 pkg debug/dwarf, const ClassBlock Class 49 pkg debug/dwarf, const ClassConstant = 3 50 pkg debug/dwarf, const ClassConstant Class 51 pkg debug/dwarf, const ClassExprLoc = 4 52 pkg debug/dwarf, const ClassExprLoc Class 53 pkg debug/dwarf, const ClassFlag = 5 54 pkg debug/dwarf, const ClassFlag Clas [all...] |
go1.txt | [all...] |
/prebuilts/go/linux-x86/api/ |
go1.5.txt | 45 pkg debug/dwarf, const ClassAddress = 1 46 pkg debug/dwarf, const ClassAddress Class 47 pkg debug/dwarf, const ClassBlock = 2 48 pkg debug/dwarf, const ClassBlock Class 49 pkg debug/dwarf, const ClassConstant = 3 50 pkg debug/dwarf, const ClassConstant Class 51 pkg debug/dwarf, const ClassExprLoc = 4 52 pkg debug/dwarf, const ClassExprLoc Class 53 pkg debug/dwarf, const ClassFlag = 5 54 pkg debug/dwarf, const ClassFlag Clas [all...] |
go1.txt | [all...] |
/frameworks/base/docs/downloads/training/ |
AndroidTestingFun.zip | |
/dalvik/dx/tests/003-magic-version-access/ |
run | 17 # The tests that don't specify "--debug" are expected to 18 # throw exceptions. If --debug is on we'll get a stack 30 dx --debug --dump --width=100 class-version-45.0.txt 31 dx --debug --dump --width=100 class-version-45.65535.txt 32 dx --debug --dump --width=100 class-version-48.0.txt 33 dx --debug --dump --width=100 class-version-48.65535.txt 34 dx --debug --dump --width=100 class-version-49.0.txt 35 dx --debug --dump --width=100 class-version-49.1.txt 36 dx --debug --dump --width=100 class-version-49.65535.txt 37 dx --debug --dump --width=100 class-version-50.0.tx [all...] |
/external/autotest/client/cros/cellular/ |
cell_tools_test_on_chromebook.py | 37 logger.debug('making flimflam object..') 39 logger.debug('Find Cellular Device ...') 41 logger.debug('Find Celluar Service..') 43 logger.debug('Set Auto Connect to False ..') 46 logger.debug('Reset all modems ..') 48 logger.debug('Prepare Modem for LTE..') 51 logger.debug('Make another flimflam..') 53 logger.debug('Sleep for 5...') 55 logger.debug('Connect to Cellular...') 57 logger.debug('Clearing errors...' [all...] |
/external/libpng/projects/vstudio/ |
vstudio.sln | 43 Debug Library|Win32 = Debug Library|Win32 44 Debug|Win32 = Debug|Win32 49 {D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug Library|Win32.ActiveCfg = Debug Library|Win32 50 {D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug Library|Win32.Build.0 = Debug Library|Win32 51 {D6973076-9317-4EF2-A0B8-B7A18AC0713E}.Debug|Win32.ActiveCfg = Debug|Win3 [all...] |