Lines Matching refs:stack
252 info.stack.push_back(CpuProfileDeoptFrame(
255 info.stack = rare_data_->deopt_inlined_frames_;
438 indent + 10, "", info.stack[0].script_id, info.stack[0].position,
440 for (size_t index = 1; index < info.stack.size(); ++index) {
442 indent + 10, "", info.stack[index].script_id,
443 info.stack[index].position);
545 std::vector<Position> stack;
546 stack.emplace_back(root_);
547 while (stack.size() > 0) {
548 Position& current = stack.back();
551 stack.emplace_back(current.current_child());
554 if (stack.size() > 1) {
555 Position& parent = stack[stack.size() - 2];
559 // Remove child from the stack.
560 stack.pop_back();
1208 // If the context filter check failed, omit the contents of the stack.