Lines Matching refs:Child
34 for (const auto &Child : II.Children)
35 OS << Child;
47 for (const auto &Child : II.Children) {
48 if (::getInlineStackHelper(Child, Addr, InlineStack))
130 // Child address ranges are encoded relative to the first address in the
207 // Child address ranges are encoded relative to the first address in the
211 llvm::Expected<InlineInfo> Child = decode(Data, Offset, ChildBaseAddr);
212 if (!Child)
213 return Child.takeError();
215 if (Child.get().Ranges.empty())
217 Inline.Children.emplace_back(std::move(*Child));
243 // Child address ranges are encoded as relative to the first
247 for (const auto &Child : Children) {
250 for (const auto &ChildRange: Child.Ranges) {
255 llvm::Error Err = Child.encode(O, ChildBaseAddr);
270 for (const auto &Child : II.Children)
271 NumChildren += GetTotalNumChildren(Child);