/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaBoundsSafety.cpp | 154 if (auto *IFD = dyn_cast<IndirectFieldDecl>(CountDecl)) { in CheckCountedByAttrOnField() local 155 CountFD = IFD->getAnonField(); in CheckCountedByAttrOnField()
|
H A D | SemaObjCProperty.cpp | 2299 const ObjCImplementationDecl *ImplD, const ObjCInterfaceDecl *IFD) { in DiagnoseMissingDesignatedInitOverrides() argument 2300 assert(IFD->hasDesignatedInitializers()); in DiagnoseMissingDesignatedInitOverrides() 2301 const ObjCInterfaceDecl *SuperD = IFD->getSuperClass(); in DiagnoseMissingDesignatedInitOverrides() 2319 if (auto *IMD = IFD->getInstanceMethod(MD->getSelector())) { in DiagnoseMissingDesignatedInitOverrides() 2323 for (auto *Ext : IFD->visible_extensions()) in DiagnoseMissingDesignatedInitOverrides()
|
H A D | SemaChecking.cpp | 652 auto *IFD = dyn_cast<IndirectFieldDecl>(D); in dumpRecordValue() local 653 auto *FD = IFD ? IFD->getAnonField() : dyn_cast<FieldDecl>(D); in dumpRecordValue() 673 IFD ? S.BuildAnonymousStructUnionMemberReference( in dumpRecordValue() 674 CXXScopeSpec(), Loc, IFD, in dumpRecordValue() 675 DeclAccessPair::make(IFD, AS_public), RecordArg, Loc) in dumpRecordValue()
|
H A D | SemaInit.cpp | 2828 } else if (auto *IFD = dyn_cast_if_present<IndirectFieldDecl>(VD)) { in CheckDesignatedInitializer() local 2832 ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, IFD); in CheckDesignatedInitializer() 2834 KnownField = cast<FieldDecl>(*IFD->chain_begin()); in CheckDesignatedInitializer()
|
H A D | SemaOpenMP.cpp | 1210 for (const auto &IFD : I->ImplicitDefaultFirstprivateFDs) in getImplicitFDCapExprDecl() local 1211 if (IFD.FD == FD && IFD.StackLevel == StackLevel) in getImplicitFDCapExprDecl() 1212 return IFD.VD; in getImplicitFDCapExprDecl() 1224 for (const auto &IFD : I->ImplicitDefaultFirstprivateFDs) in isImplicitDefaultFirstprivateFD() local 1225 if (IFD.VD == VD) in isImplicitDefaultFirstprivateFD()
|
H A D | SemaDecl.cpp | 5422 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) in findDefaultInitializer() local 5423 FD = IFD->getAnonField(); in findDefaultInitializer() 18857 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) in ActOnFields() local 18858 if (IFD->getDeclName()) in ActOnFields()
|
H A D | SemaCodeComplete.cpp | 6592 if (auto *IFD = dyn_cast<IndirectFieldDecl>(D)) in CodeCompleteDesignator() local 6593 FD = IFD->getAnonField(); in CodeCompleteDesignator()
|
H A D | SemaDeclCXX.cpp | 3985 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) { in DiagnoseUninitializedFields() local 3986 UninitializedFields.insert(IFD->getAnonField()); in DiagnoseUninitializedFields()
|
H A D | SemaExpr.cpp | 2301 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(D)) in BuildDeclRefExpr() local 2302 FD = IFD->getAnonField(); in BuildDeclRefExpr()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | MultiplexConsumer.cpp | 112 const ObjCInterfaceDecl *IFD) override; 213 const ObjCInterfaceDecl *IFD) { in AddedObjCCategoryToInterface() argument 215 Listeners[i]->AddedObjCCategoryToInterface(CatD, IFD); in AddedObjCCategoryToInterface()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTMutationListener.h | 111 const ObjCInterfaceDecl *IFD) {} in AddedObjCCategoryToInterface() argument
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclObjC.cpp | 974 if (auto *IFD = dyn_cast<ObjCInterfaceDecl>(CtxD)) { in getNextRedeclarationImpl() local 975 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclarationImpl() 985 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl() local 986 if (!IFD->isInvalidDecl()) in getNextRedeclarationImpl() 987 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 1017 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) { in getCanonicalDecl() local 1024 if (ObjCMethodDecl *MD = IFD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl() 1026 for (auto *Ext : IFD->known_extensions()) in getCanonicalDecl()
|
H A D | Decl.cpp | 667 } else if (const auto *IFD = dyn_cast<IndirectFieldDecl>(D)) { in getLVForNamespaceScopeDecl() local 669 const VarDecl *VD = IFD->getVarDecl(); in getLVForNamespaceScopeDecl() 1102 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(this)) { in isPlaceholderVar() local 1106 const VarDecl *VD = IFD->getVarDecl(); in isPlaceholderVar()
|
H A D | RecordLayoutBuilder.cpp | 3487 const IndirectFieldDecl *IFD = cast<IndirectFieldDecl>(VD); in getFieldOffset() local 3490 for (const NamedDecl *ND : IFD->chain()) in getFieldOffset()
|
H A D | ExprConstant.cpp | 3226 const IndirectFieldDecl *IFD) { in HandleLValueIndirectMember() argument 3227 for (const auto *C : IFD->chain()) in HandleLValueIndirectMember() 4826 } else if (const IndirectFieldDecl *IFD = in HandleMemberPointerAccess() local 4828 if (!HandleLValueIndirectMember(Info, RHS, LV, IFD)) in HandleMemberPointerAccess() 6499 } else if (IndirectFieldDecl *IFD = I->getIndirectMember()) { in HandleConstructorCall() local 6502 auto IndirectFieldChain = IFD->chain(); in HandleConstructorCall() 8408 } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) { in VisitMemberExpr() local 8409 if (!HandleLValueIndirectMember(this->Info, E, Result, IFD)) in VisitMemberExpr() 12105 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(ME->getMemberDecl())) { in isDesignatorAtObjectEnd() local 12106 for (auto *FD : IFD->chain()) { in isDesignatorAtObjectEnd()
|
H A D | ItaniumMangle.cpp | 825 else if (const IndirectFieldDecl *IFD = in mangle() local 827 mangleName(IFD->getAnonField()); in mangle()
|
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/ |
H A D | ASTWriter.h | 901 const ObjCInterfaceDecl *IFD) override;
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaObjC.h | 1022 const ObjCInterfaceDecl *IFD);
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Compiler.cpp | 4772 } else if (const IndirectFieldDecl *IFD = Init->getIndirectMember()) { in visitFunc() local 4773 assert(IFD->getChainingSize() >= 2); in visitFunc() 4777 for (const NamedDecl *ND : IFD->chain()) { in visitFunc()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 6958 const ObjCInterfaceDecl *IFD) { in AddedObjCCategoryToInterface() argument 6961 if (!IFD->isFromASTFile()) in AddedObjCCategoryToInterface() 6964 assert(IFD->getDefinition() && "Category on a class without a definition?"); in AddedObjCCategoryToInterface() 6966 const_cast<ObjCInterfaceDecl *>(IFD->getDefinition())); in AddedObjCCategoryToInterface()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGExpr.cpp | 1161 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(CountDecl)) in FindCountedByField() local 1162 CountDecl = IFD->getAnonField(); in FindCountedByField()
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | images | 475 # GPS IFD
|