/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/windows/visualc/ |
freetype.sln | 7 Debug Multithreaded|Win32 = Debug Multithreaded|Win32
8 Debug Singlethreaded|Win32 = Debug Singlethreaded|Win32
9 Debug|Win32 = Debug|Win32
15 {78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Debug Multithreaded|Win32.ActiveCfg = Debug Multithreaded|Win32
16 {78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Debug Multithreaded|Win32.Build.0 = Debug Multithreaded|Win32 [all...] |
/external/v8/test/mjsunit/ |
debug-constructor.js | 28 // Flags: --expose-debug-as debug 29 // Get the Debug object exposed from the debug context global object. 30 Debug = debug.Debug 35 if (event == Debug.DebugEvent.Break) 38 exec_state.prepareStep(Debug.StepAction.StepIn); 42 // Add the debug event listener [all...] |
debug-ignore-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-script-breakpoints-closure.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-evaluate-declaration.js | 5 // Flags: --expose-debug-as debug 7 // Test that debug-evaluate only resolves variables that are used by 8 // the function inside which we debug-evaluate. This is to avoid 14 var Debug = debug.Debug 18 if (event != Debug.DebugEvent.Break) return; 30 Debug.setListener(listener); 43 Debug.setListener(null) [all...] |
function-source.js | 28 // Flags: --expose-debug-as debug 29 // Get the Debug object exposed from the debug context global object. 30 Debug = debug.Debug 35 assertEquals(Debug.scriptSource(f), Debug.scriptSource(h)); 42 assertEquals(Debug.scriptSource(f), Debug.scriptSource(h)) [all...] |
/external/v8/test/mjsunit/regress/ |
regress-debug-code-recompilation.js | 28 // Flags: --allow-natives-syntax --hydrogen-filter=Debug.setBreakPoint 29 // Flags: --expose-debug-as debug 31 Debug = debug.Debug 32 Debug.setListener(function(){}); 40 bp = Debug.setBreakPoint(f, 0, 0); 41 Debug.clearBreakPoint(bp); 42 %OptimizeFunctionOnNextCall(Debug.setBreakPoint) [all...] |
regress-crbug-467180.js | 5 // Flags: --expose-debug-as debug 18 if (event != Debug.DebugEvent.Break) return; 23 exec_state.prepareStep(Debug.StepAction.StepNext); 31 var Debug = debug.Debug; 32 Debug.setListener(listener); 34 Debug.setBreakPoint(f, 2, 0, "i == 12"); 38 Debug.setListener(null); // [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
MemInfoReader.java | 19 import android.os.Debug; 23 final long[] mInfos = new long[Debug.MEMINFO_COUNT]; 31 Debug.getMemInfo(mInfos); 41 return mInfos[Debug.MEMINFO_TOTAL] * 1024; 48 return mInfos[Debug.MEMINFO_FREE] * 1024; 70 return mInfos[Debug.MEMINFO_TOTAL]; 77 return mInfos[Debug.MEMINFO_FREE]; 85 return mInfos[Debug.MEMINFO_BUFFERS] 86 + mInfos[Debug.MEMINFO_CACHED] - mInfos[Debug.MEMINFO_MAPPED] [all...] |
/external/v8/test/mjsunit/es6/debug-promises/ |
promise-all-caught.js | 5 // Flags: --expose-debug-as debug --allow-natives-syntax 7 // Test debug events when we only listen to uncaught exceptions and a 10 // expect no Exception debug event to be triggered, since p3 and by 13 var Debug = debug.Debug; 33 assertTrue(event != Debug.DebugEvent.Exception) 39 Debug.setBreakOnUncaughtException(); 40 Debug.setListener(listener) [all...] |
promise-race-caught.js | 5 // Flags: --expose-debug-as debug --allow-natives-syntax 7 // Test debug events when we only listen to uncaught exceptions and a 10 // expect no Exception debug event to be triggered, since p3 and by 13 var Debug = debug.Debug; 33 assertTrue(event != Debug.DebugEvent.Exception) 39 Debug.setBreakOnUncaughtException(); 40 Debug.setListener(listener) [all...] |
reject-after-resolve.js | 5 // Flags: --expose-debug-as debug --allow-natives-syntax --promise-extra 7 // Test debug events when we listen to uncaught exceptions and 9 // We expect no Exception debug event to be triggered. 11 Debug = debug.Debug; 28 assertTrue(event != Debug.DebugEvent.Exception); 34 Debug.setBreakOnException(); 35 Debug.setListener(listener) [all...] |
reject-caught-all.js | 5 // Flags: --expose-debug-as debug --allow-natives-syntax --promise-extra 7 // Test debug events when we listen to all exceptions and 9 // We expect a normal Exception debug event to be triggered. 11 Debug = debug.Debug; 35 if (event == Debug.DebugEvent.Exception) { 47 Debug.setBreakOnException(); 48 Debug.setListener(listener) [all...] |
throw-caught-all.js | 5 // Flags: --expose-debug-as debug --allow-natives-syntax --promise-extra 7 // Test debug events when we listen to all exceptions and 9 // We expect a normal Exception debug event to be triggered. 11 Debug = debug.Debug; 34 if (event == Debug.DebugEvent.Exception) { 46 Debug.setBreakOnException(); 47 Debug.setListener(listener) [all...] |
throw-eventually-caught.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 no Exception debug events, since the default reject handler passes 12 Debug = debug.Debug; 35 assertTrue(event != Debug.DebugEvent.Exception); 41 Debug.setBreakOnUncaughtException(); 42 Debug.setListener(listener) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.debug.core_3.6.0.v20100519.jar | |
/external/clang/test/Driver/ |
compress.c | 1 // RUN: %clang -### -c -integrated-as -Wa,-compress-debug-sections %s 2>&1 | FileCheck --check-prefix=COMPRESS_DEBUG %s 2 // RUN: %clang -### -c -integrated-as -Wa,--compress-debug-sections %s 2>&1 | FileCheck --check-prefix=COMPRESS_DEBUG %s 5 // COMPRESS_DEBUG: "-compress-debug-sections" 7 // RUN: %clang -### -c -integrated-as -Wa,--compress-debug-sections -Wa,--nocompress-debug-sections %s 2>&1 | FileCheck --check-prefix=NOCOMPRESS_DEBUG %s 8 // NOCOMPRESS_DEBUG-NOT: "-compress-debug-sections"
|
/external/srtp/ |
srtp7.sln | 8 Debug = Debug 12 {7E1E1308-F82E-4DD3-B25C-CD12756A1DD9}.Debug.ActiveCfg = Debug|Win32 13 {7E1E1308-F82E-4DD3-B25C-CD12756A1DD9}.Debug.Build.0 = Debug|Win32
|
/external/zlib/src/contrib/dotzlib/ |
DotZLib.sln | 8 Debug = Debug
12 {BB1EE0B1-1808-46CB-B786-949D91117FC5}.Debug.ActiveCfg = Debug|.NET
13 {BB1EE0B1-1808-46CB-B786-949D91117FC5}.Debug.Build.0 = Debug|.NET
|
/ndk/sources/host-tools/make-3.81/ |
make_msvc_net2003.sln | 8 Debug = Debug
12 {E96B5060-3240-4723-91C9-E64F1C877A04}.Debug.ActiveCfg = Debug|Win32
13 {E96B5060-3240-4723-91C9-E64F1C877A04}.Debug.Build.0 = Debug|Win32
|
/external/llvm/lib/Support/ |
Debug.cpp | 1 //===-- Debug.cpp - An easy way to add debug output to your code ----------===// 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. 17 // that your debug code belongs to class "foo". Then, on the command line, you 18 // can specify '-debug-only=foo' to enable JUST the debug information for the 21 // When compiling without assertions, the -debug-* options and all code in 22 // DEBUG() statements disappears, so it does not affect the runtime of the code. 26 #include "llvm/Support/Debug.h [all...] |
/cts/tests/tests/networksecurityconfig/networksecurityconfig-debug-basic-disabled/res/xml/ |
network_security_config.xml | 8 <!-- debug overrides, should be ignored in this case since the app is not debuggable --> 9 <debug-overrides> 13 </debug-overrides>
|
/external/clang/test/CodeGenCXX/ |
debug-info-class-limited-plugin.test | 1 RUN: %clang_cc1 -emit-llvm -fno-standalone-debug -g -o - -load %llvmshlibdir/PrintFunctionNames%pluginext -add-plugin print-function-names %S/Inputs/debug-info-class-limited.cpp 2>&1 | FileCheck %S/Inputs/debug-info-class-limited.cpp
|
/external/icu/icu4c/source/samples/case/ |
case.sln | 7 Debug|Win32 = Debug|Win32 8 Debug|x64 = Debug|x64 13 {2316BE8C-189D-4C8B-B506-9D9EE25AC46D}.Debug|Win32.ActiveCfg = Debug|Win32 14 {2316BE8C-189D-4C8B-B506-9D9EE25AC46D}.Debug|Win32.Build.0 = Debug|Win32 15 {2316BE8C-189D-4C8B-B506-9D9EE25AC46D}.Debug|x64.ActiveCfg = Debug|Win3 [all...] |
/external/icu/icu4c/source/samples/uciter8/ |
uciter8.sln | 7 Debug|Win32 = Debug|Win32 8 Debug|x64 = Debug|x64 13 {94379DD9-E6CC-47AC-8E62-0A4ABD8EB121}.Debug|Win32.ActiveCfg = Debug|Win32 14 {94379DD9-E6CC-47AC-8E62-0A4ABD8EB121}.Debug|Win32.Build.0 = Debug|Win32 15 {94379DD9-E6CC-47AC-8E62-0A4ABD8EB121}.Debug|x64.ActiveCfg = Debug|Win3 [all...] |