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

1 2 3 4 5 6

  /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...]
  /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/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-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);
  /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.
DebugParser.cs 33 namespace Antlr.Runtime.Debug {
51 * Create a normal parser except wrap the token stream in a debug
75 * Provide a new debug event listener for this parser. Notify the
DebugTreeParser.cs 35 namespace Antlr.Runtime.Debug {
55 * Create a normal parser except wrap the token stream in a debug
79 * Provide a new debug event listener for this parser. Notify the
ParseTreeBuilder.cs 33 namespace Antlr.Runtime.Debug {
  /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.
DebugParser.cs 33 namespace Antlr.Runtime.Debug
53 * Create a normal parser except wrap the token stream in a debug
82 * Provide a new debug event listener for this parser. Notify the
DebugTreeParser.cs 33 namespace Antlr.Runtime.Debug
55 * Create a normal parser except wrap the token stream in a debug
84 * Provide a new debug event listener for this parser. Notify the
  /external/v8/test/mjsunit/
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...]
  /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/src/
debug-debugger.js 31 var Debug = {};
38 // Debug events which can occour in the V8 JavaScript engine. These originate
39 // from the API include file debug.h.
40 Debug.DebugEvent = { Break: 1,
48 Debug.ExceptionBreak = { Caught : 0,
52 Debug.StepAction = { StepOut: 0,
59 Debug.ScriptType = { Native: 0,
65 Debug.ScriptCompilationType = { Host: 0,
70 Debug.ScriptBreakPointType = { ScriptId: 0,
93 getValue: function() { return Debug.isBreakOnException(); }
    [all...]
d8.js 66 var mirror = new $debug.ObjectMirror(current);
81 var Debug = {};
84 // Debug events which can occour in the V8 JavaScript engine. These originate
85 // from the API include file v8-debug.h.
86 Debug.DebugEvent = { Break: 1,
94 Debug.ScriptType = { Native: 0,
101 Debug.ScriptCompilationType = { Host: 0,
107 Debug.ScopeType = { Global: 0,
115 // Current debug state.
117 Debug.State =
    [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;
  /external/compiler-rt/make/platform/
darwin_fat.mk 7 # example, Debug and Release builds, or builds with and without
26 Configs := Debug Release Profile
43 CFLAGS.Debug := $(CFLAGS) -g
54 OPTIMIZED.Debug := 0
  /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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
Debug.java 25 public class Debug {
72 public final static boolean debug = false; field in class:Debug
75 if (debug)
80 if (debug)
85 if (debug)
  /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 ) {
  /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/apps/Browser/src/com/android/browser/
Performance.java 20 import android.os.Debug;
70 Debug.startMethodTracing(host, 20 * 1024 * 1024);
77 Debug.stopMethodTracing();

Completed in 1000 milliseconds

1 2 3 4 5 6