Home | History | Annotate | Download | only in src

Lines Matching refs:stack

399   List<Position> stack(10);
400 stack.Add(Position(root_));
401 while (stack.length() > 0) {
402 Position& current = stack.last();
405 stack.Add(Position(current.current_child()));
408 if (stack.length() > 1) {
409 Position& parent = stack[stack.length() - 2];
413 // Remove child from the stack.
414 stack.RemoveLast();
845 // Allocate space for stack frames + pc + function + vm-state.
861 // Find out, if top of stack was pointing inside a JS function
870 for (const Address *stack_pos = sample.stack,