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

1 23 4 5 6 7 8 910

  /external/smali/baksmali/src/main/java/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;
SetSourceFileMethodItem.java 32 package org.jf.baksmali.Adaptors.Debug;
34 import org.jf.dexlib2.iface.debug.SetSourceFile;
  /external/v8/src/debug/
debug.js 39 var Debug = {};
46 // Debug events which can occour in the V8 JavaScript engine. These originate
47 // from the API include file debug.h.
48 Debug.DebugEvent = { Break: 1,
58 Debug.ExceptionBreak = { Caught : 0,
62 Debug.StepAction = { StepOut: 0,
68 Debug.ScriptType = { Native: 0,
74 Debug.ScriptCompilationType = { Host: 0,
79 Debug.ScriptBreakPointType = { ScriptId: 0,
84 // Must match BreakPositionAlignment in debug.h
    [all...]
  /external/v8/test/mjsunit/
debug-stepout-scope-part8.js 28 // Flags: --expose-debug-as debug
33 var Debug = debug.Debug;
36 if (event == Debug.DebugEvent.Break) {
47 exec_state.prepareStep(Debug.StepAction.StepIn);
51 Debug.setListener(listener);
debug-function-scopes.js 28 // Flags: --expose-debug-as debug
30 // Get the Debug object exposed from the debug context global object.
31 var Debug = debug.Debug;
45 // A copy of the scope types from debug/mirrors.js.
70 var mirror = Debug.MakeMirror(f1);
83 var mirror = Debug.MakeMirror(f2)
    [all...]
debug-set-variable-value.js 28 // Flags: --expose-debug-as debug
30 // Get the Debug object exposed from the debug context global object.
31 var Debug = debug.Debug;
32 var DebugCommandProcessor = debug.DebugCommandProcessor;
54 if (event == Debug.DebugEvent.Break) {
63 // Add the debug event listener
    [all...]
  /external/v8/test/mjsunit/es6/debug-promises/
promise-all-uncaught.js 5 // Flags: --expose-debug-as debug --allow-natives-syntax
7 // Test debug events when we only listen to uncaught exceptions and a
10 // expect two Exception debug events to be triggered, for p2 and p3 each,
13 var Debug = debug.Debug;
32 if (event != Debug.DebugEvent.Exception) return;
39 // Assert that the debug event is triggered at the throw site.
51 Debug.setBreakOnUncaughtException()
    [all...]
promise-race-uncaught.js 5 // Flags: --expose-debug-as debug --allow-natives-syntax
7 // Test debug events when we only listen to uncaught exceptions and a
10 // expect two Exception debug events to be triggered, for p2 and p3 each,
13 var Debug = debug.Debug;
32 if (event != Debug.DebugEvent.Exception) return;
39 // Assert that the debug event is triggered at the throw site.
51 Debug.setBreakOnUncaughtException()
    [all...]
  /external/v8/test/mjsunit/es6/
generators-debug-scopes.js 5 // Flags: --expose-debug-as debug
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/v8/test/mjsunit/regress/
regress-419663.js 5 // Flags: --expose-debug-as debug
16 var Debug = debug.Debug;
18 Debug.setListener(function() {});
20 var script = Debug.findScript(sentinel);
22 // Used in Debug.setScriptBreakPointById.
23 var p = Debug.findScriptSourcePosition(script, 9, 0);
24 var q = Debug.setBreakPointByScriptIdAndPosition(script.id, p).actual_position
    [all...]
regress-crbug-481896.js 5 // Flags: --expose-debug-as debug
11 var Debug = debug.Debug;
16 if (event != Debug.DebugEvent.Break) return;
26 Debug.setListener(listener);
37 var scripts = Debug.scripts();
45 Debug.setScriptBreakPointById(dynamic_script.id, 1);
46 Debug.setScriptBreakPointById(static_script.id, 7)
    [all...]
regress-crbug-568477-1.js 5 // Flags: --expose-debug-as debug --allow-natives-syntax
7 var Debug = debug.Debug;
12 if (event != Debug.DebugEvent.Break) return;
15 exec_state.prepareStep(Debug.StepAction.StepNext);
21 Debug.setListener(listener);
regress-crbug-568477-3.js 5 // Flags: --expose-debug-as debug --allow-natives-syntax
7 var Debug = debug.Debug;
12 if (event != Debug.DebugEvent.Break) return;
15 exec_state.prepareStep(Debug.StepAction.StepNext);
21 Debug.setListener(listener);
  /system/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...]
  /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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
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/
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/autotest/client/site_tests/firmware_TouchMTB/
common_util.py 69 class Debug:
70 """A simple class to print the debug message."""
  /external/llvm/tools/llvm-cov/
CoverageViewOptions.h 19 bool Debug;
  /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 ) {

Completed in 2003 milliseconds

1 23 4 5 6 7 8 910