HomeSort by relevance Sort by last modified time
    Searched refs:Debug (Results 1 - 25 of 620) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/scripts/
debug.in 3 cmake -DCMAKE_BUILD_TYPE=Debug .
  /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);
38 return mInfos[Debug.MEMINFO_TOTAL] * 1024;
42 return mInfos[Debug.MEMINFO_FREE] * 1024;
46 return mInfos[Debug.MEMINFO_CACHED] * 1024;
50 return mInfos[Debug.MEMINFO_TOTAL];
54 return mInfos[Debug.MEMINFO_FREE];
58 return mInfos[Debug.MEMINFO_CACHED];
62 return mInfos[Debug.MEMINFO_BUFFERS]
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 25 import android.os.Debug;
35 Debug.stopAllocCounting();
36 Debug.resetAllCounts();
40 Debug.printLoadedClasses(Debug.SHOW_FULL_DETAIL);
41 Debug.printLoadedClasses(Debug.SHOW_CLASSLOADER);
42 Debug.printLoadedClasses(Debug.SHOW_INITIALIZED);
52 Debug.startMethodTracing()
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
Debug.java 19 public class Debug {
21 public final static boolean DEBUG = false;
  /external/v8/test/mjsunit/
debug-breakpoints.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
38 bp = Debug.setBreakPoint(f, 0, 0);
39 assertEquals("() {[B0]a=1;b=2}", Debug.showBreakPoints(f));
40 Debug.clearBreakPoint(bp)
    [all...]
debug-conditional-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.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
33 var sbp = Debug.setScriptBreakPointByName("1", 2, 3);
34 assertEquals(1, Debug.scriptBreakPoints().length);
35 assertEquals("1", Debug.scriptBreakPoints()[0].script_name())
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventListenerConstants.cs 33 namespace Antlr.Runtime.Debug
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventListenerConstants.cs 33 namespace Antlr.Runtime.Debug
  /frameworks/base/tools/preload/loadclass/
LoadClass.java 18 import android.os.Debug;
34 Debug.startAllocCounting();
51 int allocCount = Debug.getGlobalAllocCount();
52 int allocSize = Debug.getGlobalAllocSize();
53 int freedCount = Debug.getGlobalFreedCount();
54 int freedSize = Debug.getGlobalFreedSize();
55 long nativeHeapSize = Debug.getNativeHeapSize();
57 Debug.stopAllocCounting();
62 Debug.MemoryInfo memoryInfo = new Debug.MemoryInfo()
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-conditional-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-breakpoints.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
38 bp = Debug.setBreakPoint(f, 0, 0);
39 assertEquals("() {[B0]a=1;b=2}", Debug.showBreakPoints(f));
40 Debug.clearBreakPoint(bp)
    [all...]
debug-script-breakpoints.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
33 var sbp = Debug.setScriptBreakPointByName("1", 2, 3);
34 assertEquals(1, Debug.scriptBreakPoints().length);
35 assertEquals("1", Debug.scriptBreakPoints()[0].script_name())
    [all...]
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...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
CAVLCWriter.java 23 import com.googlecode.mp4parser.h264.Debug;
41 Debug.print(string + "\t");
43 Debug.println("\t" + value);
62 Debug.print(string + "\t");
64 Debug.println("\t" + value);
68 Debug.print(string + "\t");
70 Debug.println("\t" + value);
74 Debug.print(string + "\t");
76 Debug.println("\t" + value);
84 Debug.print(string + "\t")
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
HeapStatsLogger.java 11 import android.os.Debug;
36 Debug.startAllocCounting();
63 "gc_count=" + Debug.getGlobalGcInvocationCount() + " times " +
64 "alloc_count=" + Debug.getGlobalAllocCount() + " times " +
65 "alloc_size=" + Debug.getGlobalAllocSize() + " bytes " +
66 "freed_count=" + Debug.getGlobalFreedCount() + " times " +
67 "freed_size=" + Debug.getGlobalFreedSize() + " bytes"
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
DebugTest.java 19 import android.os.Debug;
38 return Debug.getCaller();
49 return Debug.getCallers(3);
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
AsyncChannelTest.java 19 import android.os.Debug;
36 if (WAIT_FOR_DEBUGGER) Debug.waitForDebugger();
  /packages/experimental/TestBack/src/foo/bar/testback/
IdleMaintenanceReceiver.java 6 import android.os.Debug;
15 Debug.waitForDebugger();
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PipelinedMsgParser.java 102 * @param debug
106 Pipeline in, boolean debug, int maxMessageSize) {
223 if (Debug.parserDebug)
224 Debug.println("Starting parse!");
234 if (Debug.parserDebug) {
235 Debug.println("Discarding blank line. ");
241 Debug.printStackTrace(ex);
252 Debug.println("Reading Input Stream");
261 Debug.printStackTrace(ex);
275 if (Debug.debug)
    [all...]
  /external/llvm/test/Object/
coff-archive.test 7 CHECKIDX: ??0invalid_argument@std@@QAE@PBD@Z in Debug\mymath.obj
8 CHECKIDX: ??0logic_error@std@@QAE@PBD@Z in Debug\mymath.obj
9 CHECKIDX: ??1invalid_argument@std@@UAE@XZ in Debug\mymath.obj
10 CHECKIDX: ??1logic_error@std@@UAE@XZ in Debug\mymath.obj
11 CHECKIDX: ??_7invalid_argument@std@@6B@ in Debug\mymath.obj
12 CHECKIDX: ??_7logic_error@std@@6B@ in Debug\mymath.obj
13 CHECKIDX: ??_C@_0BC@IHENMCGI@b?5cannot?5be?5zero?$CB?$AA@ in Debug\mymath.obj
14 CHECKIDX: ??_Ginvalid_argument@std@@UAEPAXI@Z in Debug\mymath.obj
15 CHECKIDX: ??_Glogic_error@std@@UAEPAXI@Z in Debug\mymath.obj
16 CHECKIDX: ??_R0?AVexception@std@@@8 in Debug\mymath.ob
    [all...]
  /external/chromium_org/v8/src/ia32/
debug-ia32.cc 33 #include "debug.h"
42 return Debug::IsDebugBreakAtReturn(rinfo());
46 // Patch the JS frame exit code with a debug break call. See
53 rinfo()->PatchCodeWithCall(isolate->debug()->debug_break_return()->entry(),
65 // A debug break in the frame exit code is identified by the JS frame exit code
67 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
75 // Check whether the debug break slot instructions have been patched.
84 isolate->debug()->debug_break_slot()->entry(),
95 // All debug break stubs support padding for LiveEdit.
96 const bool Debug::FramePaddingLayout::kIsSupported = true
    [all...]
  /external/chromium_org/v8/src/x64/
debug-x64.cc 34 #include "debug.h"
43 return Debug::IsDebugBreakAtReturn(rinfo());
47 // Patch the JS frame exit code with a debug break call. See
53 Isolate::Current()->debug()->debug_break_return()->entry(),
65 // A debug break in the frame exit code is identified by the JS frame exit code
67 bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo* rinfo) {
75 // Check whether the debug break slot instructions have been patched.
83 Isolate::Current()->debug()->debug_break_slot()->entry(),
93 const bool Debug::FramePaddingLayout::kIsSupported = true;
108 for (int i = 0; i < Debug::FramePaddingLayout::kInitialSize; i++)
    [all...]
  /external/chromium_org/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
39 bp = Debug.setBreakPoint(f, 0, 0);
40 Debug.clearBreakPoint(bp);
41 %OptimizeFunctionOnNextCall(Debug.setBreakPoint);
42 bp = Debug.setBreakPoint(f, 0, 0)
    [all...]
  /external/v8/test/mjsunit/regress/
regress-debug-code-recompilation.js 28 // Flags: --allow-natives-syntax --hydrogen-filter=Debug.setBreakPoint --expose-debug-as debug
30 Debug = debug.Debug
38 bp = Debug.setBreakPoint(f, 0, 0);
39 Debug.clearBreakPoint(bp);
40 %OptimizeFunctionOnNextCall(Debug.setBreakPoint);
41 bp = Debug.setBreakPoint(f, 0, 0)
    [all...]

Completed in 379 milliseconds

1 2 3 4 5 6 7 8 91011>>