HomeSort by relevance Sort by last modified time
    Searched defs:Debug (Results 101 - 125 of 248) sorted by null

1 2 3 45 6 7 8 910

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
debug.rb 5 module Debug
6 =begin rdoc ANTLR3::Debug::TreeAdaptor
104 =begin rdoc ANTLR3::Debug::TreeNodeStream
108 not already a Debug::TreeNodeStream.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/
debug.py 17 class Debug:
25 raise error.PyAsn1Error('bad debug flag %s' % (f,))
27 self('debug category \'%s\' enabled' % f)
  /external/v8/include/
v8-debug.h 15 // Debug events which can occur in the V8 JavaScript engine.
28 class V8_EXPORT Debug {
41 * A message object passed to the debug message handler.
61 * debugger event that started the debug message loop.
72 * Get the context active when the debug event happened. Note this is not
80 * client_data data value passed into Debug::SendCommand along with the
94 * An event details object passed to the debug event listener.
104 * Access to execution state and event data of the debug event. Don't store
111 * Get the context active when the debug event happened. Note this is not
134 * Debug event callback function
    [all...]
  /external/v8/test/mjsunit/
for-in-opt.js 5 // Flags: --harmony-proxies --allow-natives-syntax --expose-debug-as debug
130 var Debug = debug.Debug;
133 if (event == Debug.DebugEvent.Break) {
165 Debug.setListener(listener);
167 Debug.setListener(null);
  /external/vboot_reference/futility/
misc.c 29 void Debug(const char *format, ...)
36 fprintf(stderr, "DEBUG: ");
187 Debug("%s(%s, %s)\n", __func__, infile, outfile);
  /external/vogar/src/vogar/target/
TestActivity.java 23 import android.os.Debug;
47 // If vogar is invoked with the intention to debug code running in an activity (using
48 // --debug-app) then the manifest is made to support debugging. We detect if we support
55 Debug.waitForDebugger();
58 Log.e(TAG, "Malformed manifest: missing debug information.");
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_debugger.cpp 131 void HWCDebugHandler::Debug(DebugTag tag, const char *format, ...) {
  /packages/services/Telephony/src/com/android/phone/
CallTime.java 20 import android.os.Debug;
218 Debug.startMethodTracing(baseName, 8 * 1024 * 1024);
227 Debug.stopMethodTracing();
  /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...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
BlankDebugEventListener.cs 33 namespace Antlr.Runtime.Debug {
37 * sensitive to updates to debug interface.
DebugEventHub.cs 33 namespace Antlr.Runtime.Debug {
37 * Broadcast debug events to multiple listeners. Lets you debug and still
DebugEventRepeater.cs 33 namespace Antlr.Runtime.Debug {
38 * debug events w/o interrupting the debugger. Just subclass the repeater
DebugTreeAdaptor.cs 33 namespace Antlr.Runtime.Debug {
47 * The debug listener has to deal with tree node IDs for which it did
83 // to simulate what dupTree has done. dupTree does not call this debug
IDebugEventListener.cs 33 namespace Antlr.Runtime.Debug {
167 * without having to alter all the debug objects.
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
IDebugEventListener.cs 33 namespace Antlr.Runtime.Debug
169 * without having to alter all the debug objects.
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
BlankDebugEventListener.cs 33 namespace Antlr.Runtime.Debug
38 * sensitive to updates to debug interface.
DebugEventHub.cs 33 namespace Antlr.Runtime.Debug
38 * Broadcast debug events to multiple listeners. Lets you debug and still
DebugEventRepeater.cs 33 namespace Antlr.Runtime.Debug
39 * debug events w/o interrupting the debugger. Just subclass the repeater
DebugTreeAdaptor.cs 33 namespace Antlr.Runtime.Debug
48 * The debug listener has to deal with tree node IDs for which it did
91 // to simulate what dupTree has done. dupTree does not call this debug
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
event-hub.rb 5 module Debug
6 =begin rdoc ANTLR3::Debug::EventHub
8 A special event listener that intercepts debug events and forwards them to other
9 debug event listners. As debug-mode recognizers are able to send event
15 include ANTLR3::Debug::EventListener
  /external/v8/test/mjsunit/es6/
debug-blockscopes.js 28 // Flags: --expose-debug-as debug --allow-natives-syntax
29 // Flags: --debug-eval-readonly-locals
35 // Get the Debug object exposed from the debug context global object.
36 var Debug = debug.Debug;
47 // Debug event listener which delegates.
50 if (event == Debug.DebugEvent.Break)
    [all...]
  /frameworks/base/core/java/android/ddm/
DdmHandleHeap.java 23 import android.os.Debug;
166 Debug.dumpHprofData(fileName);
199 Debug.dumpHprofDataDdms();
  /frameworks/base/tests/utils/SleepUtils/SleepHelper/src/com/android/testing/sleephelper/
SetAlarm.java 26 import android.os.Debug;
93 if ("true".equals(arguments.getString("debug"))) {
94 Debug.waitForDebugger();
  /frameworks/compile/mclinker/include/mcld/LD/
LDFileFormat.h 32 Debug,
  /hardware/qcom/display/msm8996/sdm/include/utils/
debug.h 38 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \
44 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS__)
52 #define DTRACE_BEGIN(custom_string) Debug::Get()->BeginTrace(__CLASS__, __FUNCTION__, custom_string)
53 #define DTRACE_END() Debug::Get()->EndTrace()
54 #define DTRACE_SCOPED() ScopeTracer <Debug> scope_tracer(__CLASS__, __FUNCTION__)
58 class Debug {
79 Debug();
88 virtual void Debug(DebugTag /*tag*/, const char */*format*/, ...) { }
103 static Debug debug_;

Completed in 332 milliseconds

1 2 3 45 6 7 8 910