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

1 2 3 4 5 6 7 8

  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 26 import android.os.Debug;
36 Debug.stopAllocCounting();
37 Debug.resetAllCounts();
41 Debug.printLoadedClasses(Debug.SHOW_FULL_DETAIL);
42 Debug.printLoadedClasses(Debug.SHOW_CLASSLOADER);
43 Debug.printLoadedClasses(Debug.SHOW_INITIALIZED);
53 Debug.startMethodTracing()
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/regress/
regress-3280.js 5 // Flags: --harmony-generators --expose-debug-as debug
7 var Debug = debug.Debug;
12 if (event == Debug.DebugEvent.Break) {
18 Debug.setListener(listener);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
record-event-listener.rb 5 module Debug
7 =begin rdoc ANTLR3::Debug::RecordEventListener
9 A debug listener that records intercepted events as strings in an array.
24 end # module Debug
rule-tracer.rb 5 module Debug
6 =begin rdoc ANTLR3::Debug::RuleTracer
8 RuleTracer is simple debug event listener that writes the names of rule methods
  /external/chromium_org/v8/test/mjsunit/
debug-stepout-scope-part4.js 28 // Flags: --expose-debug-as debug --expose-natives-as=builtins
33 var Debug = debug.Debug;
36 if (event == Debug.DebugEvent.Break) {
48 exec_state.prepareStep(Debug.StepAction.StepInMin, 1);
53 Debug.setListener(listener);
debug-stepout-scope-part5.js 28 // Flags: --expose-debug-as debug --expose-natives-as=builtins
33 var Debug = debug.Debug;
36 if (event == Debug.DebugEvent.Break) {
48 exec_state.prepareStep(Debug.StepAction.StepInMin, 1);
53 Debug.setListener(listener);
debug-stepout-scope-part6.js 28 // Flags: --expose-debug-as debug --expose-natives-as=builtins
33 var Debug = debug.Debug;
36 if (event == Debug.DebugEvent.Break) {
48 exec_state.prepareStep(Debug.StepAction.StepInMin, 1);
53 Debug.setListener(listener);
debug-stepout-scope-part7.js 28 // Flags: --expose-debug-as debug --expose-natives-as=builtins
33 var Debug = debug.Debug;
36 if (event == Debug.DebugEvent.Break) {
48 exec_state.prepareStep(Debug.StepAction.StepInMin, 1);
53 Debug.setListener(listener);
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-stepout-scope-part2.js 28 // Flags: --expose-debug-as debug --expose-natives-as=builtins
33 var Debug = debug.Debug;
36 if (event == Debug.DebugEvent.Break) {
48 exec_state.prepareStep(Debug.StepAction.StepInMin, 1);
53 Debug.setListener(listener);
debug-stepout-scope-part3.js 28 // Flags: --expose-debug-as debug --expose-natives-as=builtins
33 var Debug = debug.Debug;
36 if (event == Debug.DebugEvent.Break) {
48 exec_state.prepareStep(Debug.StepAction.StepInMin, 1);
53 Debug.setListener(listener);
debug-stepout-scope-part8.js 28 // Flags: --expose-debug-as debug --expose-natives-as=builtins
33 var Debug = debug.Debug;
36 if (event == Debug.DebugEvent.Break) {
48 exec_state.prepareStep(Debug.StepAction.StepInMin, 1);
53 Debug.setListener(listener);
  /external/chromium_org/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
49 // Get the Debug object exposed from the debug context global object.
50 var Debug = debug.Debug
52 var bp = Debug.setBreakPoint(f, 6);
55 if (event == Debug.DebugEvent.Break)
    [all...]
generators-relocation.js 5 // Flags: --expose-debug-as debug --harmony-generators
7 var Debug = debug.Debug;
29 var bp = Debug.setBreakPoint(gen, 3);
33 Debug.setListener(listener);
39 Debug.clearBreakPoint(bp);
40 Debug.setListener(null);
generators-debug-scopes.js 5 // Flags: --expose-debug-as debug --harmony-generators
7 var Debug = debug.Debug;
15 if (event == Debug.DebugEvent.Break) {
39 Debug.setListener(listener);
45 // Debug.setListener(null);
79 if (scopes[i] == debug.ScopeType.Global) {
87 // Get the debug command processor
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-109195.js 28 // Flags: --expose-debug-as debug
29 var Debug = debug.Debug;
35 exec_state.prepareStep(Debug.StepAction.Continue, 1);
38 Debug.setListener(listener);
regress-325676.js 28 // Flags: --expose-debug-as debug
31 // debug evaluate need to resolve it to a context slot instead of
34 var Debug = debug.Debug;
40 if (event != Debug.DebugEvent.Break) return;
49 Debug.setListener(listener);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventListenerConstants.cs 33 namespace Antlr.Runtime.Debug
Tracer.cs 35 namespace Antlr.Runtime.Debug
46 /// that you cannot debug and trace at the same time.
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventListenerConstants.cs 33 namespace Antlr.Runtime.Debug
Tracer.cs 33 namespace Antlr.Runtime.Debug
42 * that you cannot debug and trace at the same time.
  /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/chromium_org/v8/src/
debug-debugger.js 8 var Debug = {};
15 // Debug events which can occour in the V8 JavaScript engine. These originate
16 // from the API include file debug.h.
17 Debug.DebugEvent = { Break: 1,
25 Debug.ExceptionBreak = { Caught : 0,
29 Debug.StepAction = { StepOut: 0,
36 Debug.ScriptType = { Native: 0,
42 Debug.ScriptCompilationType = { Host: 0,
47 Debug.ScriptBreakPointType = { ScriptId: 0,
52 // Must match BreakPositionAlignment in debug.h
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
BeginEpilogueMethodItem.java 32 package org.jf.baksmali.Adaptors.Debug;
DebugMethodItem.java 32 package org.jf.baksmali.Adaptors.Debug;
37 import org.jf.dexlib2.iface.debug.*;
68 throw new ExceptionWithContext("Invalid debug item type: %d", debugItem.getDebugItemType());

Completed in 876 milliseconds

1 2 3 4 5 6 7 8