Home | History | Annotate | Download | only in AsmPrinter

Lines Matching defs:Children

65   /// Children - Whether or not this node has children.
68 // are 0 and 1 for no children and children respectively.
69 bool Children;
76 DIEAbbrev(dwarf::Tag T, bool C) : Tag(T), Children(C), Data() {}
81 bool hasChildren() const { return Children; }
83 void setChildrenFlag(bool hasChild) { Children = hasChild; }
117 /// Size - Size of instance + children.
125 /// Children DIEs.
133 std::vector<std::unique_ptr<DIE>> Children;
159 return Children;
185 Children.push_back(std::move(Child));