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

1 2 3 4 5 6 7 8 91011

  /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...]
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
63 var script = Debug.findScript(F25);
65 assertEquals(0, Debug.scriptBreakPoints().length);
67 Debug.setScriptBreakPoint(Debug.ScriptBreakPointType.ScriptId, script.id, 1, 1, "true || false || false" (…)
    [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-script.js 28 // Flags: --expose-debug-as debug --expose-gc
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
39 var scripts = Debug.scripts();
41 if (scripts[i].type == Debug.ScriptType.Native) {
45 } else if (scripts[i].type == Debug.ScriptType.Extension)
    [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...]
debug-event-listener.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.
35 if (event == Debug.DebugEvent.Break ||
36 event == Debug.DebugEvent.Exception
    [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...]
  /external/v8/src/mips/
debug-mips.cc 35 #include "debug.h"
59 // A debug break in the exit code is identified by the JS frame exit code
61 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
86 void Debug::GenerateLoadICDebugBreak(MacroAssembler* masm) {
91 void Debug::GenerateStoreICDebugBreak(MacroAssembler* masm) {
96 void Debug::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) {
101 void Debug::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
106 void Debug::GenerateCallICDebugBreak(MacroAssembler* masm) {
111 void Debug::GenerateConstructCallDebugBreak(MacroAssembler* masm) {
116 void Debug::GenerateReturnDebugBreak(MacroAssembler* masm)
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 23 import android.os.Debug;
32 @TestTargetClass(Debug.class)
39 Debug.stopAllocCounting();
40 Debug.resetAllCounts();
74 Debug.printLoadedClasses(Debug.SHOW_FULL_DETAIL);
75 Debug.printLoadedClasses(Debug.SHOW_CLASSLOADER);
76 Debug.printLoadedClasses(Debug.SHOW_INITIALIZED)
    [all...]
Debug_InstructionCountTest.java 24 import android.os.Debug;
28 @TestTargetClass(Debug.InstructionCount.class)
34 method = "Debug.InstructionCount",
59 Debug.InstructionCount instructionCount = new Debug.InstructionCount();
  /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...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
AsyncChannelTest.java 19 import android.os.Debug;
36 if (WAIT_FOR_DEBUGGER) 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/nist-sip/java/gov/nist/core/
Debug.java 33 * A class to do debug printfs
35 public class Debug {
37 public static boolean debug = false; field in class:Debug
43 Debug.stackLogger = stackLogger;
47 if ((parserDebug || debug )&& stackLogger != null )
51 if ((parserDebug || debug ) && stackLogger != null) {
57 if ((parserDebug || debug) && stackLogger != null ) {
  /external/webkit/Source/WebCore/bindings/v8/
DebuggerScript.js 42 Debug.clearBreakOnException();
43 Debug.clearBreakOnUncaughtException();
53 var scripts = Debug.scripts();
78 var scripts = Debug.scripts();
101 var breakId = Debug.setScriptBreakPointById(args.sourceID, args.lineNumber, args.columnNumber, args.condition);
103 var locations = Debug.findBreakPointActualLocations(breakId);
113 Debug.findBreakPoint(args.breakpointId, true);
126 Debug.setBreakOnException();
128 Debug.clearBreakOnException();
131 Debug.setBreakOnUncaughtException()
    [all...]
  /external/webkit/Source/WebKit/android/nav/
CachedColor.cpp 36 CachedColor* CachedColor::Debug::base() const {
41 void CachedColor::Debug::print() const
  /frameworks/base/core/java/android/os/
PerformanceCollector.java 488 long nativeMax = Debug.getNativeHeapSize() / 1024;
489 long nativeAllocated = Debug.getNativeHeapAllocatedSize() / 1024;
490 long nativeFree = Debug.getNativeHeapFreeSize() / 1024;
492 Debug.MemoryInfo memInfo = new Debug.MemoryInfo();
493 Debug.getMemoryInfo(memInfo);
539 // Before we start trigger a GC and reset the debug counts. Run the
547 Debug.resetAllCounts();
550 Debug.startAllocCounting();
560 Debug.stopAllocCounting()
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DelegateManager.java 19 import com.android.layoutlib.bridge.util.Debug;
101 if (Debug.DEBUG) {
125 if (Debug.DEBUG) {
139 if (Debug.DEBUG) {
  /external/v8/src/arm/
debug-arm.cc 33 #include "debug.h"
40 return Debug::IsDebugBreakAtReturn(rinfo());
50 // to a call to the debug break return code.
58 // <debug break return code entry point address>
68 patcher.Emit(Isolate::Current()->debug()->debug_break_return()->entry());
80 // A debug break in the frame exit code is identified by the JS frame exit code
82 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
90 // Check whether the debug break slot instructions have been patched.
97 // Patch the code changing the debug break slot code from
101 // to a call to the debug break slot code
    [all...]
  /external/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(),
127 #ifdef DEBUG
128 __ RecordComment("// Calling from debug break to runtime - come in - over")
    [all...]
  /external/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
54 Isolate::Current()->debug()->debug_break_return()->entry(),
66 // A debug break in the frame exit code is identified by the JS frame exit code
68 bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo* rinfo) {
76 // Check whether the debug break slot instructions have been patched.
84 Isolate::Current()->debug()->debug_break_slot()->entry(),
129 #ifdef DEBUG
130 __ RecordComment("// Calling from debug break to runtime - come in - over")
    [all...]

Completed in 894 milliseconds

1 2 3 4 5 6 7 8 91011