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

1 2 3 4 5 6 7 8 91011

  /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
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 19 import android.os.Debug;
39 Debug.stopAllocCounting();
40 Debug.resetAllCounts();
44 Debug.printLoadedClasses(Debug.SHOW_FULL_DETAIL);
45 Debug.printLoadedClasses(Debug.SHOW_CLASSLOADER);
46 Debug.printLoadedClasses(Debug.SHOW_INITIALIZED);
56 Debug.startMethodTracing()
    [all...]
  /external/v8/src/debug/
debug.js 25 var Debug = {};
32 // Debug events which can occour in the V8 JavaScript engine. These originate
33 // from the API include file debug.h.
34 Debug.DebugEvent = { Break: 1,
41 Debug.ExceptionBreak = { Caught : 0,
45 Debug.StepAction = { StepOut: 0,
50 Debug.ScriptType = { Native: 0,
57 Debug.ScriptCompilationType = { Host: 0,
62 Debug.ScriptBreakPointType = { ScriptId: 0,
67 // Must match BreakPositionAlignment in debug.h
    [all...]
  /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
  /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
  /external/ltp/pan/
debug.c 33 /* $Id: debug.c,v 1.1 2000/09/21 21:35:06 alaffin Exp $ */
39 int Debug[MAXDEBUG]; /* Debug level in their areas */
43 * set debug areas & levels
50 /* pointers to the debug area and level in the option's arguments */
52 /* debug area and level after converted to integers */
64 printf("Error - Debug area %s > maximum of %d\n",
71 printf("Debug area %d set to %d\n", db_area, db_level);
72 Debug[db_area] = db_level;
  /frameworks/base/tools/aapt2/
Debug.h 35 struct Debug {
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
Debug.java 19 public class Debug {
21 public final static boolean DEBUG = false;
  /external/autotest/client/site_tests/firmware_TouchMTB/
common_util.py 69 class Debug:
70 """A simple class to print the debug message."""
  /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());
EndPrologueMethodItem.java 32 package org.jf.baksmali.Adaptors.Debug;
LineNumberMethodItem.java 32 package org.jf.baksmali.Adaptors.Debug;
34 import org.jf.dexlib2.iface.debug.LineNumber;
LocalFormatter.java 32 package org.jf.baksmali.Adaptors.Debug;
  /frameworks/base/apct-tests/perftests/core/src/android/os/
PssPerfTest.java 38 Debug.getPss();
  /system/keymaster/android_keymaster/
logger.cpp 40 int Logger::Debug(const char* fmt, ...) {
  /frameworks/base/core/java/android/ddm/
DdmHandleProfiling.java 22 import android.os.Debug;
39 private static final boolean DEBUG = false;
75 if (DEBUG)
109 if (DEBUG)
114 Debug.startMethodTracing(fileName, bufferSize, flags);
128 Debug.stopMethodTracing();
149 if (DEBUG) {
155 Debug.startMethodTracingDdms(bufferSize, flags, false, 0);
167 if (DEBUG) {
172 Debug.stopMethodTracing()
    [all...]
  /external/v8/src/inspector/
debugger_script_externs.js 45 var Debug = {};
47 Debug.clearAllBreakPoints = function() {}
50 Debug.scripts = function() {}
58 * @param {Debug.BreakPositionAlignment=} positionAlignment
60 Debug.setScriptBreakPointById = function(scriptId, line, column, condition, groupId, positionAlignment) {}
66 Debug.findBreakPointActualLocations = function(breakId) {}
73 Debug.findBreakPoint = function(breakId, remove) {}
80 Debug.BreakPositionAlignment = BreakPositionAlignment;
97 Debug.LiveEdit = LiveEdit;
  /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...]

Completed in 567 milliseconds

1 2 3 4 5 6 7 8 91011