| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | LexicallyOrderedRecursiveASTVisitor.h | 74 bool TraverseObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { in TraverseObjCCategoryImplDecl() 90 !isa<ObjCCategoryImplDecl>(Child)) { in TraverseDeclContextHelper()
|
| H A D | DeclObjC.h | 50 class ObjCCategoryImplDecl; variable 2382 ObjCCategoryImplDecl *getImplementation() const; 2383 void setImplementation(ObjCCategoryImplDecl *ImplD); 2542 class ObjCCategoryImplDecl : public ObjCImplDecl { 2546 ObjCCategoryImplDecl(DeclContext *DC, IdentifierInfo *Id, in ObjCCategoryImplDecl() function 2560 static ObjCCategoryImplDecl *Create(ASTContext &C, DeclContext *DC, 2566 static ObjCCategoryImplDecl *CreateDeserialized(ASTContext &C, unsigned ID); 2576 raw_ostream &operator<<(raw_ostream &OS, const ObjCCategoryImplDecl &CID);
|
| H A D | TextNodeDumper.h | 384 void VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D);
|
| H A D | JSONNodeDumper.h | 272 void VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D);
|
| H A D | ASTContext.h | 83 class ObjCCategoryImplDecl; variable 3001 ObjCCategoryImplDecl *getObjCImplementation(ObjCCategoryDecl *D); 3014 ObjCCategoryImplDecl *ImplD);
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 1030 } else if (auto *CImplD = dyn_cast<ObjCCategoryImplDecl>(CtxD)) { in getCanonicalDecl() 1226 if (auto *IMD = dyn_cast<ObjCCategoryImplDecl>(getDeclContext())) in getCategory() 1773 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryInstanceMethod() 1783 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryClassMethod() 2169 ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const { in getImplementation() 2191 void ObjCCategoryImplDecl::anchor() {} in anchor() 2193 ObjCCategoryImplDecl * 2194 ObjCCategoryImplDecl::Create(ASTContext &C, DeclContext *DC, in Create() 2206 ObjCCategoryImplDecl *ObjCCategoryImplDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized() 2213 ObjCCategoryDecl *ObjCCategoryImplDecl::getCategoryDecl() const { in getCategoryDecl() [all …]
|
| H A D | DeclPrinter.cpp | 106 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); 557 ObjCInterfaceDecl, ObjCProtocolDecl, ObjCCategoryImplDecl, in VisitDeclContext() 1577 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { in VisitObjCCategoryImplDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.h | 46 class ObjCCategoryImplDecl; variable 155 virtual void GenerateCategory(const ObjCCategoryImplDecl *OCD) = 0;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCUnusedIVarsChecker.cpp | 89 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 156 else if (ObjCCategoryImplDecl *CatImpl in CheckObjCMethodOverride() 157 = dyn_cast<ObjCCategoryImplDecl>(DC)) in CheckObjCMethodOverride() 1916 ObjCCategoryImplDecl *Sema::ActOnStartCategoryImplementation( in ActOnStartCategoryImplementation() 1935 ObjCCategoryImplDecl *CDecl = in ActOnStartCategoryImplementation() 1936 ObjCCategoryImplDecl::Create(Context, CurContext, CatName, IDecl, in ActOnStartCategoryImplementation() 3029 if (ObjCCategoryImplDecl *CatDecl = in ImplMethodsVsClassMethods() 3030 dyn_cast<ObjCCategoryImplDecl>(IMPDecl)) in ImplMethodsVsClassMethods() 4179 } else if (ObjCCategoryImplDecl* CatImplClass = in ActOnAtEnd() 4356 void searchFrom(const ObjCCategoryImplDecl *impl) { in searchFrom() 4918 if (isa<ObjCCategoryImplDecl>(ImpDecl)) in ActOnMethodDeclaration() [all …]
|
| H A D | CodeCompleteConsumer.cpp | 412 if (const auto *CatImpl = dyn_cast<ObjCCategoryImplDecl>(CurDC)) in getParentName()
|
| H A D | SemaAccess.cpp | 1975 else if (ObjCCategoryImplDecl* CatImplClass in IsSimplyAccessible() 1976 = dyn_cast<ObjCCategoryImplDecl>(Impl)) in IsSimplyAccessible()
|
| H A D | SemaExprMember.cpp | 1466 else if (ObjCCategoryImplDecl* CatImplClass = in LookupMemberExpr() 1467 dyn_cast<ObjCCategoryImplDecl>(ObjCImpDecl)) in LookupMemberExpr()
|
| H A D | SemaCodeComplete.cpp | 7642 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation()) in AddObjCMethods() 8702 !isa<ObjCCategoryImplDecl>(Container))) in CodeCompleteObjCPropertyDefinition() 8721 cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(), in CodeCompleteObjCPropertyDefinition() 8741 !isa<ObjCCategoryImplDecl>(Container))) in CodeCompleteObjCPropertySynthesizeIvar() 8750 Class = cast<ObjCCategoryImplDecl>(Container) in CodeCompleteObjCPropertySynthesizeIvar() 9576 } else if (ObjCCategoryImplDecl *CatImpl = in CodeCompleteObjCMethodDecl() 9577 dyn_cast<ObjCCategoryImplDecl>(D)) { in CodeCompleteObjCMethodDecl()
|
| H A D | SemaObjCProperty.cpp | 1102 ObjCCategoryImplDecl *CatImplClass = nullptr; in ActOnPropertyImplDecl() 1173 } else if ((CatImplClass = dyn_cast<ObjCCategoryImplDecl>(ClassImpDecl))) { in ActOnPropertyImplDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 400 if (auto *ICD = dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext())) in getCategoryContext() 463 const ObjCCategoryImplDecl *CD = cast<ObjCCategoryImplDecl>(D); in VisitObjCContainerDecl()
|
| H A D | IndexSymbol.cpp | 213 ClsD = cast<ObjCCategoryImplDecl>(D)->getClassInterface(); in getSymbolInfo()
|
| H A D | IndexDecl.cpp | 497 bool VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 110 SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation; 269 ObjCCategoryImplDecl *CID); 333 virtual void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, 535 void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, 769 ObjCCategoryImplDecl *CID) { in RewritePropertyImplDecl() 1083 if (ObjCCategoryImplDecl *CID = in RewriteObjCMethodDecl() 1084 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) { in RewriteObjCMethodDecl() 1169 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID); in RewriteImplementationDecl() 4841 ObjCCategoryImplDecl *CI = cast<ObjCCategoryImplDecl>(D); in HandleDeclInMainFile() 5616 void RewriteObjCFragileABI::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, in RewriteObjCCategoryImplDecl()
|
| H A D | RewriteModernObjC.cpp | 113 SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation; 322 ObjCCategoryImplDecl *CID); 456 void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, 920 ObjCCategoryImplDecl *CID) { in RewritePropertyImplDecl() 1250 if (ObjCCategoryImplDecl *CID = in RewriteObjCMethodDecl() 1251 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) { in RewriteObjCMethodDecl() 1336 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID); in RewriteImplementationDecl() 4012 ObjCCategoryImplDecl *CIMP = CategoryImplementation[i]; in RewriteImplementations() 5741 ObjCCategoryImplDecl *CI = cast<ObjCCategoryImplDecl>(D); in HandleDeclInMainFile() 7262 void RewriteModernObjC::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, in RewriteObjCCategoryImplDecl() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 383 } else if (const auto *OCD = dyn_cast<ObjCCategoryImplDecl>(DC)) { in getFunctionName()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/ |
| H A D | ObjCMT.cpp | 170 if (const ObjCCategoryImplDecl *CatImpl = dyn_cast<ObjCCategoryImplDecl>(D)) in canModify()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 833 const internal::VariadicDynCastAllOfMatcher<Decl, ObjCCategoryImplDecl>
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 466 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); 1502 void ASTDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl() 3995 D = ObjCCategoryImplDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 150 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); 959 void ASTDeclWriter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl()
|