| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| H A D | MultiplexConsumer.cpp | 103 const ObjCInterfaceDecl *IFD) override; 199 const ObjCInterfaceDecl *IFD) { in AddedObjCCategoryToInterface() argument 201 Listeners[i]->AddedObjCCategoryToInterface(CatD, IFD); in AddedObjCCategoryToInterface()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | ASTMutationListener.h | 109 const ObjCInterfaceDecl *IFD) {} in AddedObjCCategoryToInterface() argument
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 923 if (auto *IFD = dyn_cast<ObjCInterfaceDecl>(CtxD)) { in getNextRedeclarationImpl() local 924 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclarationImpl() 934 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl() local 935 if (!IFD->isInvalidDecl()) in getNextRedeclarationImpl() 936 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 966 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) { in getCanonicalDecl() local 973 if (ObjCMethodDecl *MD = IFD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl() 975 for (auto *Ext : IFD->known_extensions()) in getCanonicalDecl()
|
| H A D | RecordLayoutBuilder.cpp | 3367 const IndirectFieldDecl *IFD = cast<IndirectFieldDecl>(VD); in getFieldOffset() local 3370 for (const NamedDecl *ND : IFD->chain()) in getFieldOffset()
|
| H A D | ExprConstant.cpp | 3138 const IndirectFieldDecl *IFD) { in HandleLValueIndirectMember() argument 3139 for (const auto *C : IFD->chain()) in HandleLValueIndirectMember() 4665 } else if (const IndirectFieldDecl *IFD = in HandleMemberPointerAccess() local 4667 if (!HandleLValueIndirectMember(Info, RHS, LV, IFD)) in HandleMemberPointerAccess() 6256 } else if (IndirectFieldDecl *IFD = I->getIndirectMember()) { in HandleConstructorCall() local 6259 auto IndirectFieldChain = IFD->chain(); in HandleConstructorCall() 7973 } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) { in VisitMemberExpr() local 7974 if (!HandleLValueIndirectMember(this->Info, E, Result, IFD)) in VisitMemberExpr() 11219 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(ME->getMemberDecl())) { in isDesignatorAtObjectEnd() local 11220 for (auto *FD : IFD->chain()) { in isDesignatorAtObjectEnd()
|
| H A D | Decl.cpp | 678 } else if (const auto *IFD = dyn_cast<IndirectFieldDecl>(D)) { in getLVForNamespaceScopeDecl() local 680 const VarDecl *VD = IFD->getVarDecl(); in getLVForNamespaceScopeDecl()
|
| H A D | ItaniumMangle.cpp | 739 else if (const IndirectFieldDecl *IFD = in mangle() local 741 mangleName(IFD->getAnonField()); in mangle()
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
| H A D | CXType.cpp | 1037 if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(Res.front())) in clang_Type_getOffsetOf() local 1038 return Ctx.getFieldOffset(IFD); in clang_Type_getOffsetOf() 1067 if (const IndirectFieldDecl *IFD = dyn_cast_or_null<IndirectFieldDecl>(D)) in clang_Cursor_getOffsetOfField() local 1068 return Ctx.getFieldOffset(IFD); in clang_Cursor_getOffsetOfField()
|
| H A D | CIndex.cpp | 6642 if (const ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in clang_getCanonicalCursor() local 6643 return MakeCXCursor(IFD, getCursorTU(C)); in clang_getCanonicalCursor()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 2322 const ObjCInterfaceDecl *IFD) { in DiagnoseMissingDesignatedInitOverrides() argument 2323 assert(IFD->hasDesignatedInitializers()); in DiagnoseMissingDesignatedInitOverrides() 2324 const ObjCInterfaceDecl *SuperD = IFD->getSuperClass(); in DiagnoseMissingDesignatedInitOverrides() 2342 if (auto *IMD = IFD->getInstanceMethod(MD->getSelector())) { in DiagnoseMissingDesignatedInitOverrides() 2346 for (auto *Ext : IFD->visible_extensions()) in DiagnoseMissingDesignatedInitOverrides()
|
| H A D | SemaInit.cpp | 2546 if (auto *IFD = dyn_cast<IndirectFieldDecl>(ND)) { in CheckDesignatedInitializer() local 2550 ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, IFD); in CheckDesignatedInitializer() 2552 KnownField = cast<FieldDecl>(*IFD->chain_begin()); in CheckDesignatedInitializer()
|
| H A D | SemaDecl.cpp | 4961 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) in findDefaultInitializer() local 4962 FD = IFD->getAnonField(); in findDefaultInitializer() 17209 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) in ActOnFields() local 17210 if (IFD->getDeclName()) in ActOnFields()
|
| H A D | SemaDeclCXX.cpp | 3894 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) { in DiagnoseUninitializedFields() local 3895 UninitializedFields.insert(IFD->getAnonField()); in DiagnoseUninitializedFields()
|
| H A D | SemaExpr.cpp | 2051 if (IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(D)) in BuildDeclRefExpr() local 2052 FD = IFD->getAnonField(); in BuildDeclRefExpr()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
| H A D | ASTWriter.h | 752 const ObjCInterfaceDecl *IFD) override;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 5874 const ObjCInterfaceDecl *IFD) { in AddedObjCCategoryToInterface() argument 5877 if (!IFD->isFromASTFile()) in AddedObjCCategoryToInterface() 5880 assert(IFD->getDefinition() && "Category on a class without a definition?"); in AddedObjCCategoryToInterface() 5882 const_cast<ObjCInterfaceDecl *>(IFD->getDefinition())); in AddedObjCCategoryToInterface()
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | images | 460 # GPS IFD
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | Sema.h | 4426 const ObjCInterfaceDecl *IFD);
|