Home
last modified time | relevance | path

Searched refs:step_count (Results 1 – 5 of 5) sorted by relevance

/external/v8/test/mjsunit/
Ddebug-step-2.js38 var step_count = 0; variable
44 step_count++;
51 step_count = 0;
71 assertEquals(4, step_count);
80 assertEquals(4, step_count);
86 assertEquals(0, step_count);
Ddebug-step-3.js38 var step_count = 0; variable
45 step_count++;
52 step_count = 0;
85 assertEquals(4, step_count);
91 assertEquals(0, step_count);
/external/v8/src/
Ddebug.cc965 int step_count = thread_local_.queued_step_count_; in Break() local
970 PrepareStep(StepNext, step_count); in Break()
979 int step_count = thread_local_.step_count_; in Break() local
994 if (step_count > 1) { in Break()
997 thread_local_.queued_step_count_ = step_count - 1; in Break()
1002 step_count = count; in Break()
1010 PrepareStep(step_action, step_count); in Break()
1287 void Debug::PrepareStep(StepAction step_action, int step_count) { in PrepareStep() argument
1301 thread_local_.step_count_ = step_count; in PrepareStep()
1389 while (step_count-- > 0 && !frames_it.done()) { in PrepareStep()
Ddebug.h246 void PrepareStep(StepAction step_action, int step_count);
Druntime.cc11629 int step_count = NumberToInt32(args[2]); in RUNTIME_FUNCTION() local
11630 if (step_count < 1) { in RUNTIME_FUNCTION()
11639 step_count); in RUNTIME_FUNCTION()