Lines Matching refs:Node
31 util::make_unique<Node>(config.get(), nullptr));
41 bool DominatorTree::Node::TryAddChild(std::unique_ptr<Node> new_child) {
42 CHECK(new_child->value_) << "cannot add a root or empty node as a child";
50 bool DominatorTree::Node::AddChild(std::unique_ptr<Node> new_child) {
65 [](const std::unique_ptr<Node>& child) -> bool {
83 bool DominatorTree::Node::Dominates(const Node* other) const {
84 // Check root node dominations.
90 // Neither node is a root node; compare the configurations.