Searched refs:Parent (Results 101 - 125 of 326) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DModuleMap.h379 Attributes Attrs, Module *Parent);
515 /// \param Parent The module that will act as the parent of this submodule,
524 std::pair<Module *, bool> findOrCreateModule(StringRef Name, Module *Parent,
536 Module *createPrivateModuleFragmentForInterfaceUnit(Module *Parent,
555 bool IsSystem, Module *Parent);
570 assert(!ExistingModule->Parent && "expected top-level module");
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp161 for (; Mod; Mod = Mod->Parent) {
601 while (!UmbrellaModule->getUmbrellaDir() && UmbrellaModule->Parent)
602 UmbrellaModule = UmbrellaModule->Parent;
723 while (!UmbrellaModule->getUmbrellaDir() && UmbrellaModule->Parent)
724 UmbrellaModule = UmbrellaModule->Parent;
780 for(; Context; Context = Context->Parent) {
796 Module *Parent,
800 if (Module *Sub = lookupModuleQualified(Name, Parent))
804 Module *Result = new Module(Name, SourceLocation(), Parent, IsFramework,
806 if (!Parent) {
795 findOrCreateModule(StringRef Name, Module *Parent, bool IsFramework, bool IsExplicit) argument
824 createPrivateModuleFragmentForInterfaceUnit(Module *Parent, SourceLocation Loc) argument
909 inferFrameworkModule(const DirectoryEntry *FrameworkDir, bool IsSystem, Module *Parent) argument
916 inferFrameworkModule(const DirectoryEntry *FrameworkDir, Attributes Attrs, Module *Parent) argument
946 StringRef Parent = llvm::sys::path::parent_path(FrameworkDirName); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObjectChecker.cpp530 const auto *Parent = dyn_cast<CXXRecordDecl>(FD->getParent()); local
532 if (!Parent)
535 Parent = Parent->getDefinition();
536 assert(Parent && "The record's definition must be avaible if an uninitialized"
560 for (const CXXMethodDecl *M : Parent->methods()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp90 if (!Successors.empty() || !Parent)
92 assert(Parent->getExit() == this &&
94 return Parent->getEnclosingBlockWithSuccessors();
98 if (!Predecessors.empty() || !Parent)
100 assert(Parent->getEntry() == this &&
102 return Parent->getEnclosingBlockWithPredecessors();
279 assert(!Parent && "Recipe already in some VPBasicBlock");
282 Parent = InsertPos->getParent();
283 Parent->getRecipeList().insert(InsertPos->getIterator(), this);
287 assert(!Parent
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Dasllookup.c329 Next = Node->Parent;
346 Next = Next->Parent;
/freebsd-11-stable/sys/contrib/dev/acpica/components/disassembler/
H A Ddmdeferred.c355 if (SearchOp->Common.Parent == NewRootOp)
357 SearchOp->Common.Parent = Op;
/freebsd-11-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnssearch.c322 ParentNode = Node->Parent;
367 ParentNode = ParentNode->Parent;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DScope.cpp187 if (const Scope *Parent = getParent())
188 OS << "Parent: (clang::Scope*)" << Parent << '\n'; local
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DRunLoopAutoreleaseLeakChecker.cpp61 /// {@code Parent}.
65 static bool seenBefore(const Stmt *Parent, const Stmt *A, const Stmt *B) { argument
66 for (const Stmt *C : Parent->children()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp312 AnalysisDeclContext::getStackFrame(LocationContext const *Parent, const Stmt *S, argument
315 return getLocationContextManager().getStackFrame(this, Parent, S, Blk,
333 while (const DeclContext *Parent = ND->getParent()) {
334 if (!isa<NamespaceDecl>(Parent))
336 ND = cast<NamespaceDecl>(Parent);
458 const LocationContext *Parent = LC->getParent(); local
459 if (Parent == this)
462 LC = Parent;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DRegionInfo.cpp66 DominatorTree *DT, Region *Parent) :
67 RegionBase<RegionTraits<Function>>(Entry, Exit, RI, DT, Parent) {
64 Region(BasicBlock *Entry, BasicBlock *Exit, RegionInfo* RI, DominatorTree *DT, Region *Parent) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.cpp146 while (WebAssemblyException *Parent = WE->getParentException())
147 WE = Parent;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h63 unsigned Parent = 0; member in struct:llvm::DomTreeBuilder::SemiNCAInfo::InfoRec
223 if (NodeToInfo.count(V) != 0) NodeToInfo[V].Parent = AttachToNum;
252 SuccInfo.Parent = LastNum;
264 // We can follow Parent pointers (virtual forest edges) to determine the
272 // (Semi) in its path from V (included) to NodeToInfo[V].Parent (excluded).
276 if (VInfo->Parent < LastLinked)
283 VInfo = &NodeToInfo[NumToNode[VInfo->Parent]];
284 } while (VInfo->Parent >= LastLinked);
286 // Path compression. Point each vertex's Parent to the root and update its
292 VInfo->Parent
563 auto *Parent = DT.Parent; local
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsobject.c205 if ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
206 (Op->Common.Parent->Common.AmlOpcode == AML_VARIABLE_PACKAGE_OP))
257 if ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
258 (Op->Common.Parent->Common.AmlOpcode == AML_VARIABLE_PACKAGE_OP))
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymExpr.h34 #define SYMBOL(Id, Parent) Id##Kind,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dtrie-node.h35 TrieNode<AssociatedData> *Parent; member in struct:TrieNode
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DConstantInitBuilder.cpp165 if (Parent) {
166 Parent->getGEPIndicesTo(indices, Begin);
216 assert(Parent && "Begin != 0 for root builder");
218 offset = Parent->getOffsetFromGlobalTo(Begin);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/
H A DASTDiff.h38 NodeId Parent, LeftMostDescendant, RightMostDescendant; member in struct:clang::diff::Node
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacnamesp.h237 ACPI_NAMESPACE_NODE *Parent,
243 ACPI_NAMESPACE_NODE *Parent,
313 ACPI_NAMESPACE_NODE *Parent);
/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbxface.c397 ParentOp = Op->Common.Parent;
417 ParentOp = ParentOp->Common.Parent;
433 ParentOp = ParentOp->Common.Parent;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DParentMap.cpp127 void ParentMap::setParent(const Stmt *S, const Stmt *Parent) { argument
129 assert(Parent);
131 M->insert(std::make_pair(const_cast<Stmt *>(S), const_cast<Stmt *>(Parent)));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitVector.h32 const BitVectorT &Parent; member in class:llvm::const_set_bits_iterator_impl
37 Current = Parent.find_next(Current);
41 const_set_bits_iterator_impl(const BitVectorT &Parent, int Current) argument
42 : Parent(Parent), Current(Current) {}
43 explicit const_set_bits_iterator_impl(const BitVectorT &Parent) argument
44 : const_set_bits_iterator_impl(Parent, Parent.find_first()) {}
61 assert(&Parent == &Other.Parent
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DSignals.cpp121 StringRef Parent = llvm::sys::path::parent_path(Argv0); local
122 if (!Parent.empty())
123 LLVMSymbolizerPathOrErr = sys::findProgramByName("llvm-symbolizer", Parent);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h211 void setFlags(Scope *Parent, unsigned F);
214 Scope(Scope *Parent, unsigned ScopeFlags, DiagnosticsEngine &Diag) argument
216 Init(Parent, ScopeFlags);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DDwarfEHPrepare.cpp241 BasicBlock *Parent = RI->getParent(); local
242 BranchInst::Create(UnwindBB, Parent);
245 PN->addIncoming(ExnObj, Parent);

Completed in 605 milliseconds

1234567891011>>