Lines Matching refs:stack
406 List<Position> stack(10);
407 stack.Add(Position(root_));
408 while (stack.length() > 0) {
409 Position& current = stack.last();
412 stack.Add(Position(current.current_child()));
415 if (stack.length() > 1) {
416 Position& parent = stack[stack.length() - 2];
420 // Remove child from the stack.
421 stack.RemoveLast();
882 // Allocate space for stack frames + pc + function + vm-state.
898 // Find out, if top of stack was pointing inside a JS function
907 for (const Address* stack_pos = sample.stack,