Lines Matching refs:node_stack
244 std::vector<Node*> node_stack;
245 node_stack.push_back(&root);
261 last_segment = node_stack.back()->AddChild(std::move(segment_node));
289 node_stack.push_back(node_stack.back()->AddChild(std::move(span_node)));
303 node_stack.push_back(
304 node_stack.back()->AddChild(util::make_unique<UntranslatableNode>()));
308 node_stack.push_back(node_stack.back()->AddChild(util::make_unique<Node>()));
315 node_stack.push_back(node_stack.back()->AddChild(util::make_unique<Node>()));
329 node_stack.pop_back();
343 CHECK(node_stack.size() == 1u);
344 CHECK(node_stack.back() == &root);