HomeSort by relevance Sort by last modified time
    Searched refs:Debug (Results 26 - 50 of 376) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/
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
40 var scripts = Debug.scripts();
42 if (scripts[i].type == Debug.ScriptType.Native) {
51 } 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...]
debug-step-2.js 28 // Flags: --expose-debug-as debug
30 // This test tests that full code compiled without debug break slots
31 // is recompiled with debug break slots when debugging is started.
33 // Get the Debug object exposed from the debug context global object.
34 Debug = debug.Debug
40 // Debug event listener which steps until the global variable done is true
    [all...]
debug-step-3.js 28 // Flags: --expose-debug-as debug
30 // This test tests that full code compiled without debug break slots
31 // is recompiled with debug break slots when debugging is started.
33 // Get the Debug object exposed from the debug context global object.
34 Debug = debug.Debug
41 // Debug event listener which steps until the global variable done is true
    [all...]
debug-clearbreakpointgroup.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 var Debug = debug.Debug
32 // Simple function which stores the last debug event.
61 if (event == Debug.DebugEvent.Break) {
62 // Get the debug command processor
    [all...]
debug-sourceinfo.js 28 // Flags: --expose-debug-as debug
59 // Get the Debug object exposed from the debug context global object.
60 Debug = debug.Debug
66 // file size of <debug-sourceinfo.js> - 1, since starting at 0).
89 assertEquals(start_a, Debug.sourcePosition(a));
90 assertEquals(start_b, Debug.sourcePosition(b));
    [all...]
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)
42 // Add the debug event listener.
43 Debug.setListener(listener)
    [all...]
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, 1000)
    [all...]
debug-set-script-source.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
37 if (event == Debug.DebugEvent.BeforeCompile) {
40 } else if (event == Debug.DebugEvent.AfterCompile) {
51 // Add the debug event listener
    [all...]
debug-stepnext-do-while.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
37 if (event == Debug.DebugEvent.Break) {
51 exec_state.prepareStep(Debug.StepAction.StepNext);
60 // Add the debug event listener
    [all...]
  /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/
debug.h 34 #include "debug-agent.h"
45 #include "../include/v8-debug.h"
199 // Linked list holding debug info objects. The debug info objects are kept as
200 // weak handles to avoid a debug info object to keep a function alive.
211 // Global (weak) handle to the debug info object.
221 // This class controls the debug info for all functions which currently have
222 // active breakpoints in them. This debug info is held in the heap root object
225 class Debug {
269 // Find the builtin to use for invoking the debug brea
946 Debug* debug = isolate->debug(); local
    [all...]
  /external/v8/test/mjsunit/harmony/
debug-evaluate-blockscopes.js 28 // Flags: --expose-debug-as debug --harmony-scoping
30 // Test debug evaluation for functions without local context, but with
50 // Get the Debug object exposed from the debug context global object.
51 var Debug = debug.Debug
53 var bp = Debug.setBreakPoint(f, 6);
56 if (event == Debug.DebugEvent.Break)
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1586.js 28 // Flags: --expose-debug-as debug
30 // Test debug evaluation for functions without local context, but with
44 // Get the Debug object exposed from the debug context global object.
45 Debug = debug.Debug
47 var bp = Debug.setBreakPoint(f, 6);
50 if (event == Debug.DebugEvent.Break)
    [all...]
regress-102153.js 28 // Flags: --expose-debug-as debug
33 Debug = debug.Debug;
38 if (event == Debug.DebugEvent.Break) {
43 Debug.setListener(listener);
51 Debug.setBreakPoint(test, 1, 0);
53 assertTrue(Debug.showBreakPoints(test).indexOf("// Break here.") >= 0);
regress-1523.js 30 // Flags: --expose-debug-as debug
31 // Get the Debug object exposed from the debug context global object.
33 Debug = debug.Debug
42 // Add the debug event listener.
43 Debug.setListener(listener);
57 // Set a break points and call each function to invoke the debug event listener
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
DebuggerAgentManager.cpp 58 class CallerIdWrapper : public v8::Debug::ClientData {
111 v8::Debug::SetMessageHandler(0);
112 v8::Debug::SetHostDispatchHandler(0);
124 v8::Debug::SetMessageHandler2(&DebuggerAgentManager::onV8DebugMessage);
125 v8::Debug::SetHostDispatchHandler(&DebuggerAgentManager::debugHostDispatchHandler, 100 /* ms */);
153 v8::Debug::SetMessageHandler2(0);
154 v8::Debug::SetHostDispatchHandler(0);
172 void DebuggerAgentManager::onV8DebugMessage(const v8::Debug::Message& message)
179 if (v8::Debug::ClientData* callerData = message.GetClientData()) {
234 v8::Debug::DebugBreak()
    [all...]
  /external/v8/test/cctest/
test-debug.cc 37 #include "debug.h"
51 using ::v8::internal::Debug;
146 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
147 // Expose the debug context global object in the global object for testing.
148 debug->Load();
149 debug->debug_context()->set_security_token(
155 FACTORY->LookupAsciiSymbol("debug");
157 Handle<Object>(debug->debug_context()->global_proxy()), DONT_ENUM
201 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
285 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
346 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
373 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
385 Debug* debug = Isolate::Current()->debug(); local
490 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
655 Debug* debug = v8::internal::Isolate::Current()->debug(); local
766 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
826 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
853 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
872 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
899 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
930 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
956 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
982 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
6448 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
6495 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
6918 v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug(); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
TraceTest.java 19 import android.os.Debug;
41 Debug.startNativeTracing();
47 Debug.stopNativeTracing();
74 Debug.startMethodTracing("traceTest");
76 Debug.stopMethodTracing();
  /external/icu4c/extra/uconv/
makedata.mak 7 # nmake /f makedata.mak icup=<path_to_icu_instalation> [Debug|Release]
11 #If no config, we default to debug
13 CFG=Debug
14 !MESSAGE No configuration specified. Defaulting to common - Win32 Debug.
18 !IF "$(CFG)" != "Release" && "$(CFG)" != "release" && "$(CFG)" != "Debug" && "$(CFG)" != "debug" && "$(CFG)" != "x86\Release" && "$(CFG)" != "x86\Debug" && "$(CFG)" != "x64\Release" && "$(CFG)" != "x64\Debug"
23 !MESSAGE NMAKE /f "makedata.mak" CFG="Debug"
28 !MESSAGE "Debug"
    [all...]
  /frameworks/base/core/java/android/ddm/
DdmHandleProfiling.java 22 import android.os.Debug;
106 Debug.startMethodTracing(fileName, bufferSize, flags);
120 Debug.stopMethodTracing();
147 Debug.startMethodTracingDdms(bufferSize, flags);
165 Debug.stopMethodTracing();
181 int result = Debug.isMethodTracingActive() ? 1 : 0;

Completed in 1529 milliseconds

12 3 4 5 6 7 8 91011>>