Home
last modified time | relevance | path

Searched refs:IFD (Results 1 – 16 of 16) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/lib/Frontend/
HDMultiplexConsumer.cpp123 const ObjCInterfaceDecl *IFD) override;
201 const ObjCInterfaceDecl *IFD) { in AddedObjCCategoryToInterface() argument
203 Listeners[i]->AddedObjCCategoryToInterface(CatD, IFD); in AddedObjCCategoryToInterface()
HDASTConsumers.cpp409 IndirectFieldDecl* IFD = cast<IndirectFieldDecl>(I); in PrintDeclContext() local
410 Out << "<IndirectField> " << *IFD << '\n'; in PrintDeclContext()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDASTMutationListener.h93 const ObjCInterfaceDecl *IFD) {} in AddedObjCCategoryToInterface() argument
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDDeclObjC.cpp793 if (ObjCInterfaceDecl *IFD = dyn_cast<ObjCInterfaceDecl>(CtxD)) { in getNextRedeclarationImpl() local
794 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclarationImpl()
805 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclarationImpl() local
806 if (!IFD->isInvalidDecl()) in getNextRedeclarationImpl()
807 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
830 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getCanonicalDecl() local
831 if (ObjCMethodDecl *MD = IFD->getMethod(getSelector(), in getCanonicalDecl()
HDExprConstant.cpp1870 const IndirectFieldDecl *IFD) { in HandleLValueIndirectMember() argument
1871 for (const auto *C : IFD->chain()) in HandleLValueIndirectMember()
3130 } else if (const IndirectFieldDecl *IFD = in HandleMemberPointerAccess() local
3132 if (!HandleLValueIndirectMember(Info, RHS, LV, IFD)) in HandleMemberPointerAccess()
3850 } else if (IndirectFieldDecl *IFD = I->getIndirectMember()) { in HandleConstructorCall() local
3853 for (auto *C : IFD->chain()) { in HandleConstructorCall()
4370 } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) { in VisitMemberExpr() local
4371 if (!HandleLValueIndirectMember(this->Info, E, Result, IFD)) in VisitMemberExpr()
HDRecordLayoutBuilder.cpp3011 const IndirectFieldDecl *IFD = cast<IndirectFieldDecl>(VD); in getFieldOffset() local
3014 for (const NamedDecl *ND : IFD->chain()) in getFieldOffset()
HDDecl.cpp628 } else if (const auto *IFD = dyn_cast<IndirectFieldDecl>(D)) { in getLVForNamespaceScopeDecl() local
630 const VarDecl *VD = IFD->getVarDecl(); in getLVForNamespaceScopeDecl()
HDItaniumMangle.cpp468 else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(D)) in mangle() local
469 mangleName(IFD->getAnonField()); in mangle()
/NextBSD/contrib/llvm/tools/clang/include/clang/Serialization/
HDASTWriter.h862 const ObjCInterfaceDecl *IFD) override;
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaObjCProperty.cpp1936 const ObjCInterfaceDecl *IFD) { in DiagnoseMissingDesignatedInitOverrides() argument
1937 assert(IFD->hasDesignatedInitializers()); in DiagnoseMissingDesignatedInitOverrides()
1938 const ObjCInterfaceDecl *SuperD = IFD->getSuperClass(); in DiagnoseMissingDesignatedInitOverrides()
HDSemaInit.cpp2092 if (auto *IFD = dyn_cast<IndirectFieldDecl>(ND)) { in CheckDesignatedInitializer() local
2096 ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, IFD); in CheckDesignatedInitializer()
2098 KnownField = cast<FieldDecl>(*IFD->chain_begin()); in CheckDesignatedInitializer()
HDSemaDecl.cpp4016 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) in findDefaultInitializer() local
4017 FD = IFD->getAnonField(); in findDefaultInitializer()
13081 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) in ActOnFields() local
13082 if (IFD->getDeclName()) in ActOnFields()
HDSemaDeclCXX.cpp2629 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) { in DiagnoseUninitializedFields() local
2630 UninitializedFields.insert(IFD->getAnonField()); in DiagnoseUninitializedFields()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTWriter.cpp5800 const ObjCInterfaceDecl *IFD) { in AddedObjCCategoryToInterface() argument
5802 if (!IFD->isFromASTFile()) in AddedObjCCategoryToInterface()
5805 assert(IFD->getDefinition() && "Category on a class without a definition?"); in AddedObjCCategoryToInterface()
5807 const_cast<ObjCInterfaceDecl *>(IFD->getDefinition())); in AddedObjCCategoryToInterface()
/NextBSD/contrib/file/magic/Magdir/
HDimages266 # GPS IFD
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h3048 const ObjCInterfaceDecl *IFD);