Home
last modified time | relevance | path

Searched refs:DominatorTree (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/tools/aapt2/
DDominatorTree.cpp28 DominatorTree::DominatorTree( in DominatorTree() function in aapt::DominatorTree
36 void DominatorTree::Accept(Visitor* visitor) { in Accept()
42 bool DominatorTree::Node::TryAddChild(std::unique_ptr<Node> new_child) { in TryAddChild()
51 bool DominatorTree::Node::AddChild(std::unique_ptr<Node> new_child) { in AddChild()
84 bool DominatorTree::Node::Dominates(const Node* other) const { in Dominates()
DDominatorTree_test.cpp32 class PrettyPrinter : public DominatorTree::Visitor {
37 DominatorTree::Node* root) override { in VisitTree()
43 std::string ToString(DominatorTree* tree) { in ToString()
51 void VisitConfig(const DominatorTree::Node* node, const int indent) { in VisitConfig()
58 void VisitNode(const DominatorTree::Node* node, const int indent) { in VisitNode()
81 DominatorTree tree(configs); in TEST()
102 DominatorTree tree(configs); in TEST()
137 DominatorTree tree(configs); in TEST()
165 DominatorTree tree(configs); in TEST()
DDominatorTree.h48 class DominatorTree {
50 explicit DominatorTree(
114 DISALLOW_COPY_AND_ASSIGN(DominatorTree);
DAndroid.bp132 "DominatorTree.cpp",
/frameworks/base/tools/aapt2/optimize/
DResourceDeduper.cpp42 class DominatedKeyValueRemover : public DominatorTree::BottomUpVisitor {
44 using Node = DominatorTree::Node;
97 DominatorTree tree(entry->values); in DedupeEntry()