Home
last modified time | relevance | path

Searched refs:ObjCCategoryImplDecl (Results 1 – 25 of 38) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DLexicallyOrderedRecursiveASTVisitor.h74 bool TraverseObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { in TraverseObjCCategoryImplDecl()
90 !isa<ObjCCategoryImplDecl>(Child)) { in TraverseDeclContextHelper()
H A DDeclObjC.h50 class ObjCCategoryImplDecl; variable
2383 ObjCCategoryImplDecl *getImplementation() const;
2384 void setImplementation(ObjCCategoryImplDecl *ImplD);
2542 class ObjCCategoryImplDecl : public ObjCImplDecl {
2546 ObjCCategoryImplDecl(DeclContext *DC, const IdentifierInfo *Id, in ObjCCategoryImplDecl() function
2560 static ObjCCategoryImplDecl *
2564 static ObjCCategoryImplDecl *CreateDeserialized(ASTContext &C,
2575 raw_ostream &operator<<(raw_ostream &OS, const ObjCCategoryImplDecl &CID);
H A DTextNodeDumper.h398 void VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D);
H A DJSONNodeDumper.h275 void VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D);
H A DASTContext.h84 class ObjCCategoryImplDecl; variable
3094 ObjCCategoryImplDecl *getObjCImplementation(ObjCCategoryDecl *D);
3107 ObjCCategoryImplDecl *ImplD);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp980 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclarationImpl()
989 } else if (auto *CImplD = dyn_cast<ObjCCategoryImplDecl>(CtxD)) { in getNextRedeclarationImpl()
1030 } else if (auto *CImplD = dyn_cast<ObjCCategoryImplDecl>(CtxD)) { in getCanonicalDecl()
1226 if (auto *IMD = dyn_cast<ObjCCategoryImplDecl>(getDeclContext())) in getCategory()
1767 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryInstanceMethod()
1777 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryClassMethod()
2158 ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const { in getImplementation()
2163 void ObjCCategoryDecl::setImplementation(ObjCCategoryImplDecl *ImplD) { in setImplementation()
2180 void ObjCCategoryImplDecl::anchor() {} in anchor()
2182 ObjCCategoryImplDecl *ObjCCategoryImplDecl::Create( in Create()
[all …]
H A DDeclPrinter.cpp95 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
511 ObjCInterfaceDecl, ObjCProtocolDecl, ObjCCategoryImplDecl, in VisitDeclContext()
1539 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { in VisitObjCCategoryImplDecl()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.h46 class ObjCCategoryImplDecl; variable
155 virtual void GenerateCategory(const ObjCCategoryImplDecl *OCD) = 0;
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp89 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp162 else if (ObjCCategoryImplDecl *CatImpl in CheckObjCMethodOverride()
163 = dyn_cast<ObjCCategoryImplDecl>(DC)) in CheckObjCMethodOverride()
1913 ObjCCategoryImplDecl *SemaObjC::ActOnStartCategoryImplementation( in ActOnStartCategoryImplementation()
1933 ObjCCategoryImplDecl *CDecl = in ActOnStartCategoryImplementation()
1934 ObjCCategoryImplDecl::Create(Context, SemaRef.CurContext, CatName, IDecl, in ActOnStartCategoryImplementation()
2944 ObjCCategoryImplDecl *CatIMPDecl) { in CheckCategoryVsClassMethodMatches()
3031 if (ObjCCategoryImplDecl *CatDecl = in ImplMethodsVsClassMethods()
3032 dyn_cast<ObjCCategoryImplDecl>(IMPDecl)) in ImplMethodsVsClassMethods()
4185 } else if (ObjCCategoryImplDecl* CatImplClass = in ActOnAtEnd()
4186 dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) { in ActOnAtEnd()
[all …]
H A DCodeCompleteConsumer.cpp412 if (const auto *CatImpl = dyn_cast<ObjCCategoryImplDecl>(CurDC)) in getParentName()
H A DSemaAccess.cpp1960 else if (ObjCCategoryImplDecl* CatImplClass in IsSimplyAccessible()
1961 = dyn_cast<ObjCCategoryImplDecl>(Impl)) in IsSimplyAccessible()
H A DSemaExprMember.cpp1480 else if (ObjCCategoryImplDecl* CatImplClass = in LookupMemberExpr()
1481 dyn_cast<ObjCCategoryImplDecl>(ObjCImpDecl)) in LookupMemberExpr()
H A DSemaAPINotes.cpp944 if (auto Impl = dyn_cast<ObjCCategoryImplDecl>(ObjCContainer)) { in ProcessAPINotes()
H A DSemaCodeComplete.cpp7711 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation()) in AddObjCMethods()
8793 !isa<ObjCCategoryImplDecl>(Container))) in CodeCompleteObjCPropertyDefinition()
8812 cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(), in CodeCompleteObjCPropertyDefinition()
8833 !isa<ObjCCategoryImplDecl>(Container))) in CodeCompleteObjCPropertySynthesizeIvar()
8842 Class = cast<ObjCCategoryImplDecl>(Container) in CodeCompleteObjCPropertySynthesizeIvar()
9669 } else if (ObjCCategoryImplDecl *CatImpl = in CodeCompleteObjCMethodDecl()
9670 dyn_cast<ObjCCategoryImplDecl>(D)) { in CodeCompleteObjCMethodDecl()
H A DSemaObjCProperty.cpp1084 ObjCCategoryImplDecl *CatImplClass = nullptr; in ActOnPropertyImplDecl()
1155 } else if ((CatImplClass = dyn_cast<ObjCCategoryImplDecl>(ClassImpDecl))) { in ActOnPropertyImplDecl()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp411 if (auto *ICD = dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext())) in getCategoryContext()
474 const ObjCCategoryImplDecl *CD = cast<ObjCCategoryImplDecl>(D); in VisitObjCContainerDecl()
H A DIndexSymbol.cpp213 ClsD = cast<ObjCCategoryImplDecl>(D)->getClassInterface(); in getSymbolInfo()
H A DIndexDecl.cpp497 bool VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h310 ObjCCategoryImplDecl *ActOnStartCategoryImplementation(
439 void CheckCategoryVsClassMethodMatches(ObjCCategoryImplDecl *CatIMP);
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp113 SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation;
321 ObjCCategoryImplDecl *CID);
455 void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl,
919 ObjCCategoryImplDecl *CID) { in RewritePropertyImplDecl()
1249 if (ObjCCategoryImplDecl *CID = in RewriteObjCMethodDecl()
1250 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) { in RewriteObjCMethodDecl()
1335 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID); in RewriteImplementationDecl()
4011 ObjCCategoryImplDecl *CIMP = CategoryImplementation[i]; in RewriteImplementations()
5739 ObjCCategoryImplDecl *CI = cast<ObjCCategoryImplDecl>(D); in HandleDeclInMainFile()
7260 void RewriteModernObjC::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, in RewriteObjCCategoryImplDecl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp383 } else if (const auto *OCD = dyn_cast<ObjCCategoryImplDecl>(DC)) { in getFunctionName()
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp170 if (const ObjCCategoryImplDecl *CatImpl = dyn_cast<ObjCCategoryImplDecl>(D)) in canModify()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp461 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
1494 void ASTDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl()
4019 D = ObjCCategoryImplDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp153 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
997 void ASTDeclWriter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl()

12