Home
last modified time | relevance | path

Searched refs:StepAction (Results 1 – 22 of 22) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
DDebuggerScript.js152 execState.prepareStep(Debug.StepAction.StepIn, 1);
157 execState.prepareStep(Debug.StepAction.StepNext, 1);
162 execState.prepareStep(Debug.StepAction.StepOut, 1);
/external/v8/test/mjsunit/regress/
Dregress-269.js34 exec_state.prepareStep(Debug.StepAction.StepIn);
Dregress-109195.js35 exec_state.prepareStep(Debug.StepAction.Continue, 1);
/external/v8/test/mjsunit/
Ddebug-step-stub-callfunction.js39 exec_state.prepareStep(Debug.StepAction.StepIn);
Ddebug-stepin-constructor.js39 exec_state.prepareStep(Debug.StepAction.StepIn);
Ddebug-stepnext-do-while.js51 exec_state.prepareStep(Debug.StepAction.StepNext);
Ddebug-stepin-builtin.js45 exec_state.prepareStep(Debug.StepAction.StepIn, 2);
Ddebug-step-2.js43 if (!done) exec_state.prepareStep(Debug.StepAction.StepNext);
Ddebug-step.js41 exec_state.prepareStep(Debug.StepAction.StepIn, 1000);
Ddebug-stepout-to-builtin.js45 exec_state.prepareStep(Debug.StepAction.StepOut, 2);
Ddebug-step-3.js44 if (!done) exec_state.prepareStep(Debug.StepAction.StepNext);
Ddebug-stepin-call-function-stub.js47 exec_state.prepareStep(Debug.StepAction.StepIn, step_in_count);
Ddebug-stepout-recursive-function.js43 exec_state.prepareStep(Debug.StepAction.StepOut, step_out_count);
Ddebug-stepin-function-call.js43 exec_state.prepareStep(Debug.StepAction.StepIn, 2);
Ddebug-return-value.js101 exec_state.prepareStep(Debug.StepAction.StepIn, 1);
Ddebug-stepin-accessor.js45 exec_state.prepareStep(Debug.StepAction.StepIn, 2);
Ddebug-stepout-scope.js48 exec_state.prepareStep(Debug.StepAction.StepInMin, 1);
/external/v8/src/
Ddebug.h56 enum StepAction { enum
246 void PrepareStep(StepAction step_action, int step_count);
505 StepAction last_step_action_;
Ddebug-debugger.js52 Debug.StepAction = { StepOut: 0,
943 var action = Debug.StepAction.StepIn;
1522 var action = Debug.StepAction.StepIn;
1539 action = Debug.StepAction.StepIn;
1541 action = Debug.StepAction.StepMin;
1543 action = Debug.StepAction.StepNext;
1545 action = Debug.StepAction.StepOut;
Ddebug.cc978 StepAction step_action = thread_local_.last_step_action_; in Break()
1287 void Debug::PrepareStep(StepAction step_action, int step_count) { in PrepareStep()
Druntime.cc11619 StepAction step_action = static_cast<StepAction>(NumberToInt32(args[1])); in RUNTIME_FUNCTION()
11638 isolate->debug()->PrepareStep(static_cast<StepAction>(step_action), in RUNTIME_FUNCTION()
/external/v8/test/cctest/
Dtest-debug.cc55 using ::v8::internal::StepAction;
372 static void PrepareStep(StepAction step_action) { in PrepareStep()
867 StepAction step_action = StepIn; // Step action to perform when stepping.