Home | History | Annotate | Download | only in AsmPrinter

Lines Matching defs:Children

463   SmallVector<DIE *, 8> Children;
471 Children.push_back(Arg);
473 // Collect lexical scope children first.
478 Children.push_back(Variable);
482 Children.push_back(Nested);
500 if (Children.empty())
507 // Add children
508 for (SmallVector<DIE *, 8>::iterator I = Children.begin(),
509 E = Children.end(); I != E; ++I)
1169 const SmallVector<LexicalScope *, 4> &Children = S->getChildren();
1170 if (!Children.empty())
1171 for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(),
1172 SE = Children.end(); SI != SE; ++SI)
1502 // Get the children.
1503 const std::vector<DIE *> &Children = Die->getChildren();
1526 // Size the DIE children if any.
1527 if (!Children.empty()) {
1529 "Children flag not set");
1531 for (unsigned j = 0, M = Children.size(); j < M; ++j)
1532 Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M);
1534 // End of children marker.
1660 // Emit the DIE children if any.
1662 const std::vector<DIE *> &Children = Die->getChildren();
1664 for (unsigned j = 0, M = Children.size(); j < M; ++j)
1665 emitDIE(Children[j]);
1668 Asm->OutStreamer.AddComment("End Of Children Mark");