HomeSort by relevance Sort by last modified time
    Searched refs:Debug (Results 76 - 100 of 376) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v8/test/mjsunit/
debug-stepout-to-builtin.js 28 // Flags: --expose-debug-as debug
30 // Get the Debug object exposed from the debug context global object.
31 Debug = debug.Debug
38 // Simple debug event handler which first time will cause 'step out' action
43 if (event == Debug.DebugEvent.Break) {
45 exec_state.prepareStep(Debug.StepAction.StepOut, 2)
    [all...]
debug-compile-event.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
32 var exception = false; // Exception in debug event listener.
50 if (event == Debug.DebugEvent.BeforeCompile ||
51 event == Debug.DebugEvent.AfterCompile)
    [all...]
debug-evaluate-recursive.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
48 // Get the debug command processor in paused state.
72 if (event == Debug.DebugEvent.Break)
110 if (event == Debug.DebugEvent.Break
    [all...]
debug-liveedit-1.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
31 Debug = debug.Debug
39 var script = Debug.findScript(ChooseAnimal);
46 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
debug-liveedit-check-stack.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
31 Debug = debug.Debug
48 var script = Debug.findScript(this.ChooseAnimal);
57 // Should be called from Debug context.
63 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, ch (…)
    [all...]
debug-stepin-call-function-stub.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
39 // Simple debug event handler which first time will cause 'step in' action
44 if (event == Debug.DebugEvent.Break) {
47 exec_state.prepareStep(Debug.StepAction.StepIn, step_in_count)
    [all...]
debug-clearbreakpoint.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 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/core/java/com/android/internal/os/
ZygoteInit.java 25 import android.os.Debug;
261 Debug.startAllocCounting();
281 if (Debug.getGlobalAllocSize() > PRELOAD_GC_THRESHOLD) {
284 " GC at " + Debug.getGlobalAllocSize());
288 Debug.resetGlobalAllocSize();
314 Debug.stopAllocCounting();
333 Debug.startAllocCounting();
362 Debug.stopAllocCounting();
369 if (Debug.getGlobalAllocSize() > PRELOAD_GC_THRESHOLD) {
371 Log.v(TAG, " GC at " + Debug.getGlobalAllocSize())
    [all...]
  /external/v8/test/mjsunit/regress/
regress-998565.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
39 // Add the debug event listener.
40 Debug.setListener(listener);
46 // Set a break point and call to invoke the debug event listener
    [all...]
regress-crbug-107996.js 28 // Flags: --expose-debug-as debug
30 Debug = debug.Debug;
32 Debug.setListener(listener);
38 if (event == Debug.DebugEvent.Break) {
64 Debug.setListener(null);
regress-1081309.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
65 if (event == Debug.DebugEvent.Exception)
71 // Get the debug command processor.
92 // Add the debug event listener
    [all...]
regress-1639-2.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
33 // Get the debug command processor in paused state.
43 if (event == Debug.DebugEvent.Break) {
85 // Add the debug event listener
    [all...]
regress-1639.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
34 // Get the debug command processor in paused state.
42 if (event == Debug.DebugEvent.Break) {
62 // Add the debug event listener
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Performance.java 20 import android.os.Debug;
70 Debug.startMethodTracing(host, 20 * 1024 * 1024);
77 Debug.stopMethodTracing();
  /external/v8/src/
debug.cc 37 #include "debug.h"
51 #include "../include/v8-debug.h"
59 Debug::Debug(Isolate* isolate)
73 Debug::~Debug() {
96 Handle<Context> context = isolate->debug()->debugger_entry()->GetContext();
151 // There is always a possible break point at a debug break slot.
175 if (Debug::IsBreakStub(code)) {
181 if (Debug::IsSourceBreakStub(code))
696 Debug* debug = Isolate::Current()->debug(); local
2477 Debug* debug = isolate_->debug(); local
2582 Debug* debug = isolate_->debug(); local
2779 Debug* debug = isolate_->debug(); local
3215 Debug* debug = isolate_->debug(); local
3246 Debug* debug = isolate_->debug(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Tracer.cs 33 namespace Antlr.Runtime.Debug
42 * that you cannot debug and trace at the same time.
  /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/webkit/Tools/Scripts/
webkit-build-directory 45 --configuration Show the build directory for a specific configuration (e.g. Debug, Release. Defaults to the active configuration set by set-webkit-configuration)
52 setConfiguration(); # Figure out from the command line if we're --debug or --release or the default.
  /frameworks/native/libs/utils/
Debug.cpp 17 #include <utils/Debug.h>
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTDbg.stg 63 <inputStreamType> = new Debug<inputStreamType>( input, proxy );
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTDbg.stg 67 <inputStreamType> = new Debug<inputStreamType>( input, proxy );
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
ASTDbg.stg 56 set<inputStreamType>(new Debug<inputStreamType>(input,proxy));
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
ASTDbg.stg 51 debug=debug_socket, port=port)
55 #self.set<inputStreamType>(Debug<inputStreamType>(self.input, proxy))
  /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
  /external/nist-sip/java/gov/nist/core/
ParserCore.java 41 public static final boolean debug = Debug.parserDebug; field in class:ParserCore
49 if (debug) dbg_enter("nameValue");
94 if (debug) dbg_leave("nameValue");
105 if (debug) {
119 if (debug) {
136 if (debug) {
137 Debug.println(rule +" " + lexer.peekLine());

Completed in 2021 milliseconds

1 2 34 5 6 7 8 91011>>