| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
| NativeSymbolEnumerator.h | 23 const NativeTypeEnum &Parent, 43 const NativeTypeEnum &Parent;
|
| /src/sys/external/bsd/acpica/dist/parser/ |
| pswalk.c | 72 ACPI_PARSE_OBJECT *Parent = NULL; 85 if (Op != Parent) 123 Parent = Op->Common.Parent; 141 Op = Parent;
|
| pstree.c | 195 /* Set the parent in this arg and any args linked after it */ 199 Arg->Common.Parent = Op; 229 ACPI_PARSE_OBJECT *Parent; 259 /* Look for a sibling of parent */ 261 Parent = Op->Common.Parent; 263 while (Parent) 265 Arg = AcpiPsGetArg (Parent, 0); 275 /* Reached parent of origin, end search */ 280 if (Parent->Common.Next [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| Argument.h | 30 Function *Parent; 34 void setParent(Function *parent); 41 inline const Function *getParent() const { return Parent; } 42 inline Function *getParent() { return Parent; } 48 assert(Parent && "can't get number of unparented arg");
|
| Use.h | 60 Use(User *Parent) : Parent(Parent) {} 73 User *getUser() const { return Parent; }; 97 User *Parent = nullptr;
|
| /src/external/apache2/llvm/dist/clang/include/clang/Index/ |
| IndexDataConsumer.h | 31 const Decl *Parent;
|
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| InterpState.h | 36 InterpState(State &Parent, Program &P, InterpStack &Stk, Context &Ctx, 42 Frame *getSplitFrame() { return Parent.getCurrentFrame(); } 46 return Parent.getBottomFrame(); 51 return Parent.getEvalStatus(); 53 ASTContext &getCtx() const override { return Parent.getCtx(); } 57 return Parent.checkingForUndefinedBehavior(); 60 return Parent.keepEvaluatingAfterFailure(); 63 return Parent.checkingPotentialConstantExpression(); 66 return Parent.noteUndefinedBehavior(); 68 bool hasActiveDiagnostic() override { return Parent.hasActiveDiagnostic(); [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| Scope.cpp | 20 void Scope::setFlags(Scope *parent, unsigned flags) { 21 AnyParent = parent; 24 if (parent && !(flags & FnScope)) { 25 BreakParent = parent->BreakParent; 26 ContinueParent = parent->ContinueParent; 33 if (parent) { 34 Depth = parent->Depth + 1; 35 PrototypeDepth = parent->PrototypeDepth; 37 FnParent = parent->FnParent; 38 BlockParent = parent->BlockParent [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| TraversalChecker.cpp | 40 const Stmt *Parent = dyn_cast<ObjCForCollectionStmt>(Condition); 41 if (!Parent) { 43 Parent = Parents.getParent(Condition); 49 SourceLocation Loc = Parent->getBeginLoc(); 51 << Parent->getStmtClassName() << "\n";
|
| ConversionChecker.cpp | 67 // Get Parent. 69 const Stmt *Parent = PM.getParent(Cast); 70 if (!Parent) 77 if (const auto *B = dyn_cast<BinaryOperator>(Parent)) { 100 } else if (isa<DeclStmt>(Parent)) {
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/ |
| trie-node.h | 35 TrieNode<AssociatedData> *Parent;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| ref-params.cc | 20 struct Parent { 21 Parent (int id0) : id(id0) { } 25 struct Child : public Parent { 26 Child (int id0) : Parent(id0) { } 29 int f1(Parent& R) 49 struct MultiChild : public Parent, OtherParent { 50 MultiChild (int id0) : Parent(id0), OtherParent(id0 * 2) { }
|
| rvalue-ref-params.cc | 22 struct Parent 24 Parent (int id0) : id (id0) { } 28 struct Child : public Parent 30 Child (int id0) : Parent (id0) { } 34 f1 (Parent &&R) 63 struct MultiChild : public Parent, OtherParent 65 MultiChild (int id0) : Parent (id0), OtherParent (id0 * 2) { }
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| ref-params.cc | 20 struct Parent { 21 Parent (int id0) : id(id0) { } 25 struct Child : public Parent { 26 Child (int id0) : Parent(id0) { } 29 int f1(Parent& R) 49 struct MultiChild : public Parent, OtherParent { 50 MultiChild (int id0) : Parent(id0), OtherParent(id0 * 2) { }
|
| rvalue-ref-params.cc | 22 struct Parent 24 Parent (int id0) : id (id0) { } 28 struct Child : public Parent 30 Child (int id0) : Parent (id0) { } 34 f1 (Parent &&R) 63 struct MultiChild : public Parent, OtherParent 65 MultiChild (int id0) : Parent (id0), OtherParent (id0 * 2) { }
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| TaskQueue.h | 42 explicit Task(Callable C, TaskQueue &Parent) 44 Parent(&Parent) {} 59 Parent->completeTask(); 64 TaskQueue *Parent;
|
| /src/sys/external/bsd/acpica/dist/dispatcher/ |
| dspkginit.c | 101 ACPI_PARSE_OBJECT *Parent; 120 /* Find the parent of a possibly nested package */ 122 Parent = Op->Common.Parent; 123 while ((Parent->Common.AmlOpcode == AML_PACKAGE_OP) || 124 (Parent->Common.AmlOpcode == AML_VARIABLE_PACKAGE_OP)) 126 Parent = Parent->Common.Parent; 144 ObjDesc->Package.Node = Parent->Common.Node [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| ASTTypeTraits.cpp | 88 NodeKindId Parent = Kind1.KindId; 89 while (!isBaseOf(Parent, Kind2.KindId, nullptr) && Parent != NKI_None) { 90 Parent = AllKindInfo[Parent].ParentId; 92 return ASTNodeKind(Parent); 108 #define STMT(CLASS, PARENT) \
|
| ExternalASTMerger.cpp | 54 // If we couldn't find the parent DC in this TranslationUnit, give up. 101 ExternalASTMerger &Parent; 111 llvm::raw_ostream &logs() { return Parent.logs(); } 120 Parent(_Parent), 171 ASTImporter &OtherImporter = Parent.ImporterForOrigin(PersistentCtx); 202 const bool LoggingEnabled = Parent.LoggingEnabled(); 204 logs() << "(ExternalASTMerger*)" << (void*)&Parent 213 Parent.HasImporterForOrigin(*FromOrigins.at(FromDC).AST)) { 215 logs() << "(ExternalASTMerger*)" << (void*)&Parent 221 Parent.ForceRecordOrigin(ToDC, FromOrigins.at(FromDC)) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| AggressiveAntiDepBreaker.cpp | 90 assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!"); 97 // if either group is 0, then that must become the parent 98 unsigned Parent = (Group1 == 0) ? Group1 : Group2; 99 unsigned Other = (Parent == Group1) ? Group2 : Group1; 100 GroupNodes.at(Other) = Parent; 101 return Parent;
|
| /src/sys/external/bsd/acpica/dist/compiler/ |
| aslanalyze.c | 294 * PARAMETERS: Op - Parent 295 * OpInfo - Parent info 329 /* Examine the parent op of this method */ 380 * PARAMETERS: Op - Parent op for the operator 393 ACPI_PARSE_OBJECT *Parent; 410 /* Examine parent to determine if the return value is used */ 412 Parent = Op->Asl.Parent; 413 switch (Parent->Asl.ParseOpcode) 422 if (Parent->Asl.Child == Op [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/ |
| ASTDiff.h | 38 NodeId Parent, LeftMostDescendant, RightMostDescendant;
|
| /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| TransProtectedScope.cpp | 67 Stmt *Parent = getCaseParent(Curr); 71 if (getCaseParent(Curr) != Parent) 89 Stmt *Parent = PMap.getParent(S); 90 while (Parent && (isa<SwitchCase>(Parent) || isa<LabelStmt>(Parent))) 91 Parent = PMap.getParent(Parent); 92 return Parent;
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CodeGenTBAA.cpp | 59 llvm::MDNode *Parent, 63 return MDHelper.createTBAATypeNode(Parent, Size, Id); 65 return MDHelper.createTBAAScalarTypeNode(Name, Parent); 365 llvm::MDNode *Parent = getChar(); 368 return MDHelper.createTBAATypeNode(Parent, Size, Id, Fields);
|
| /src/external/apache2/llvm/dist/clang/lib/Index/ |
| IndexTypeSourceInfo.cpp | 20 const NamedDecl *Parent; 28 TypeIndexer(IndexingContext &indexCtx, const NamedDecl *parent, 30 : IndexCtx(indexCtx), Parent(parent), ParentDC(DC), IsBase(isBase) { 32 assert(Parent); 33 Relations.emplace_back((unsigned)SymbolRole::RelationBaseOf, Parent); 36 assert(Parent); 37 Relations.emplace_back((unsigned)SymbolRole::RelationIBTypeOf, Parent); 52 return IndexCtx.handleReference(TTPD, Loc, Parent, ParentDC, 61 return IndexCtx.handleReference(Underlying, Loc, Parent, [all...] |