Lines Matching refs:Children
315 SmallVector<std::unique_ptr<DIE>, 8> Children; in constructScopeDIE() local
326 createScopeChildrenDIE(Scope, Children); in constructScopeDIE()
336 createScopeChildrenDIE(Scope, Children, &ChildScopeCount); in constructScopeDIE()
342 Children.push_back( in constructScopeDIE()
348 if (Children.size() == ChildScopeCount) { in constructScopeDIE()
350 std::make_move_iterator(Children.begin()), in constructScopeDIE()
351 std::make_move_iterator(Children.end())); in constructScopeDIE()
359 for (auto &I : Children) in constructScopeDIE()
543 LexicalScope *Scope, SmallVectorImpl<std::unique_ptr<DIE>> &Children, in createScopeChildrenDIE() argument
548 Children.push_back(constructVariableDIE(*DV, *Scope, ObjectPointer)); in createScopeChildrenDIE()
550 unsigned ChildCountWithoutScopes = Children.size(); in createScopeChildrenDIE()
553 constructScopeDIE(LS, Children); in createScopeChildrenDIE()
556 *ChildScopeCount = Children.size() - ChildCountWithoutScopes; in createScopeChildrenDIE()
591 SmallVector<std::unique_ptr<DIE>, 8> Children; in createAndAddScopeChildren() local
592 DIE *ObjectPointer = createScopeChildrenDIE(Scope, Children); in createAndAddScopeChildren()
595 for (auto &I : Children) in createAndAddScopeChildren()