Searched refs:Child (Results 126 - 150 of 195) sorted by relevance

12345678

/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchTree.cpp73 for (const auto &Child : enumerate(Children)) {
74 OS << format(" Node%p", this) << " -> " << format("Node%p", &Child.value())
75 << " [label=\"#" << Child.index() << " ";
76 Partitioner->emitPartitionName(OS, Child.index());
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTree.h734 const DomTreeNodeBase<NodeT> *Child = *ChildIt; local
737 WorkStack.push_back({Child, Child->begin()});
738 Child->DFSNumIn = DFSNum++;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp265 for (const auto &Child : children())
266 Child.print(O, IndentCount + 4);
299 for (auto &Child : children())
300 CUOffset = Child.computeOffsetsAndAbbrevs(AP, AbbrevSet, CUOffset);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1029 for (auto Child : DIE)
1030 Worklist.push_back(Child);
1098 for (DWARFDie Child : Type) {
1099 if (Child.getTag() != DW_TAG_subrange_type)
1102 if (auto ElemCountAttr = Child.find(DW_AT_count))
1106 if (auto UpperBoundAttr = Child.find(DW_AT_upper_bound))
1110 if (auto LowerBoundAttr = Child.find(DW_AT_lower_bound))
1204 for (auto Child : Die)
1205 addLocalsForDie(CU, Subprogram, Child, Result);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DTextNodeDumper.cpp1536 for (const auto *Child : D->chain())
1537 dumpDeclRef(Child);
2161 for (const auto *Child : D->protocols())
2162 dumpDeclRef(Child);
2170 for (const auto *Child : D->protocols())
2171 dumpDeclRef(Child);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h484 for (const auto *Child : D->specializations())
485 dumpTemplateDeclSpecialization(Child);
H A DRecursiveASTVisitor.h462 bool canIgnoreChildDeclWhileTraversingDeclContext(const Decl *Child);
1365 const Decl *Child) {
1368 if (isa<BlockDecl>(Child) || isa<CapturedDecl>(Child))
1371 if (const CXXRecordDecl* Cls = dyn_cast<CXXRecordDecl>(Child))
1381 for (auto *Child : DC->decls()) {
1382 if (!canIgnoreChildDeclWhileTraversingDeclContext(Child))
1383 TRY_TO(TraverseDecl(Child));
1364 canIgnoreChildDeclWhileTraversingDeclContext( const Decl *Child) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp410 Name = static_cast<const StdQualifiedName *>(Name)->Child;
556 N = static_cast<const StdQualifiedName *>(N)->Child;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CmovConversion.cpp228 for (MachineLoop *Child : Loops[i]->getSubLoops())
229 Loops.push_back(Child);
/freebsd-13-stable/sys/contrib/dev/acpica/common/
H A Dadisasm.c649 AcpiGbl_RootNodeStruct.Child = NULL;
H A Ddmrestag.c696 * Child list contains an entry for each resource descriptor. Find
701 Node = BufferNode->Child;
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Ddtcompiler.h231 struct dt_subtable *Child; member in struct:dt_subtable
H A Ddtio.c1078 Subtable->Parent, Subtable->Child, Subtable->Peer);
1122 "This Parent Child Peer\n\n");
/freebsd-13-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsaccess.c267 AcpiGbl_RootNodeStruct.Child = NewNode;
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp388 for (const Stmt *Child : S->children())
389 if (Child)
390 this->Visit(Child);
H A DCoverageMappingGen.cpp871 for (const Stmt *Child : S->children())
872 if (Child)
873 this->Visit(Child);
1138 for (const auto *Child : CS->children())
1139 Visit(Child);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp503 for (auto Child : Arch.children(Err)) {
504 auto BuffOrErr = Child.getMemoryBufferRef();
506 auto NameOrErr = Child.getName();
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp431 std::string objdump::getFileNameForError(const object::Archive::Child &C,
669 for (const DWARFDie &Child : D.children()) {
670 if (Child.getTag() == dwarf::DW_TAG_variable ||
671 Child.getTag() == dwarf::DW_TAG_formal_parameter)
672 addVariable(D, Child);
674 addFunction(Child);
731 for (const DWARFDie &Child : D.children())
732 addFunction(Child);
2641 static void printArchiveChild(StringRef Filename, const Archive::Child &C) {
2727 const Archive::Child *
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp644 InMemoryNode *addChild(StringRef Name, std::unique_ptr<InMemoryNode> Child) { argument
645 return Entries.insert(make_pair(Name, std::move(Child)))
731 std::unique_ptr<detail::InMemoryNode> Child; local
733 Child.reset(new detail::InMemoryHardLink(P.str(), *HardLinkTarget));
741 Child.reset(new detail::InMemoryDirectory(std::move(Stat)));
743 Child.reset(
747 Dir->addChild(Name, std::move(Child));
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp233 for (const Stmt *Child : Ex->children()) {
234 SVal V = pred->getSVal(Child);
241 processNonLeakError(state, Child->getSourceRange(), hasErr, sym, C);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineLICM.cpp753 for (MachineDomTreeNode *Child : reverse(Node->children())) {
754 ParentMap[Child] = Node;
755 WorkList.push_back(Child);
/freebsd-13-stable/contrib/llvm-project/lld/MachO/
H A DInputFiles.cpp411 object::Archive::Child c =
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp158 for (const object::Archive::Child &C : Archive.children(Err)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp2660 MRT *Child = (*CI);
2662 if (Child->isRegion()) {
2665 Child->getRegionMRT()->getLinearizedRegion();
2686 BBSelectRegOut = Child->getBBSelectRegOut();
2687 BBSelectRegIn = Child->getBBSelectRegIn();
2696 Child->getRegionMRT()->getEntry(),
2700 MachineBasicBlock *MBB = Child->getMBBMRT()->getMBB();
2710 BBSelectRegOut = Child->getBBSelectRegOut();
2711 BBSelectRegIn = Child->getBBSelectRegIn();
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp114 const Archive::Child &c =
128 for (const Archive::Child &c : file->children(err)) {

Completed in 397 milliseconds

12345678