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

1 23 4 5 6 7 8

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
TraceDebugEventListener.cs 33 namespace Antlr.Runtime.Debug
DebugTokenStream.cs 33 namespace Antlr.Runtime.Debug
DebugTreeNodeStream.cs 33 namespace Antlr.Runtime.Debug
40 * Debug any tree node stream. The constructor accepts the stream
41 * and a debug listener. As node stream calls come in, debug events
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
trace-event-listener.rb 5 module Debug
6 =begin rdoc ANTLR3::Debug::EventListener
91 end # module Debug
  /external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/shell/
AwShellApplication.java 8 import android.os.Debug;
36 Debug.waitForDebugger();
  /external/chromium_org/v8/test/mjsunit/
debug-stepout-scope-part1.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/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
EndLocalMethodItem.java 32 package org.jf.baksmali.Adaptors.Debug;
35 import org.jf.dexlib2.iface.debug.EndLocal;
RestartLocalMethodItem.java 32 package org.jf.baksmali.Adaptors.Debug;
35 import org.jf.dexlib2.iface.debug.RestartLocal;
StartLocalMethodItem.java 32 package org.jf.baksmali.Adaptors.Debug;
35 import org.jf.dexlib2.iface.debug.StartLocal;
  /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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTokenStream.cs 33 namespace Antlr.Runtime.Debug {
DebugTreeNodeStream.cs 33 namespace Antlr.Runtime.Debug {
39 * Debug any tree node stream. The constructor accepts the stream
40 * and a debug listener. As node stream calls come in, debug events
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/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_org/extensions/renderer/
console.cc 8 #include "base/debug/alias.h"
58 base::debug::Alias(&minidump);
93 void Debug(content::RenderView* render_view, const std::string& message) {
140 void Debug(v8::Handle<v8::Context> context, const std::string& message) {
180 BindLogMethod(isolate, console_object, "debug", &Debug);
  /external/chromium_org/v8/include/
v8-debug.h 15 // Debug events which can occur in the V8 JavaScript engine.
27 class V8_EXPORT Debug {
40 * A message object passed to the debug message handler.
60 * debugger event that started the debug message loop.
71 * Get the context active when the debug event happened. Note this is not
79 * client_data data value passed into Debug::SendCommand along with the
93 * An event details object passed to the debug event listener.
103 * Access to execution state and event data of the debug event. Don't store
110 * Get the context active when the debug event happened. Note this is not
133 * Debug event callback function
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
debug-blockscopes.js 28 // Flags: --expose-debug-as debug --harmony-scoping
34 // Get the Debug object exposed from the debug context global object.
35 var Debug = debug.Debug;
46 // Debug event listener which delegates.
49 if (event == Debug.DebugEvent.Break) {
59 // Add the debug event listener
    [all...]
  /external/lldb/include/lldb/Symbol/
Symtab.h 30 typedef enum Debug {
31 eDebugNo, // Not a debug symbol
32 eDebugYes, // A debug symbol
34 } Debug;
59 Symbol * FindSymbolWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t &start_idx);
62 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
64 uint32_t AppendSymbolIndexesWithName (const ConstString& symbol_name, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches);
66 uint32_t AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches);
68 uint32_t AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regex, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes);
70 size_t FindAllSymbolsWithNameAndType (const ConstString &name, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& symbol_indexes)
    [all...]
  /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/CSharp3/Sources/Antlr3.Runtime/Debug/
IDebugEventListener.cs 33 namespace Antlr.Runtime.Debug
169 * without having to alter all the debug objects.

Completed in 1518 milliseconds

1 23 4 5 6 7 8