| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 929 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclarationImpl() 938 } else if (auto *CImplD = dyn_cast<ObjCCategoryImplDecl>(CtxD)) { in getNextRedeclarationImpl() 979 } else if (auto *CImplD = dyn_cast<ObjCCategoryImplDecl>(CtxD)) { in getCanonicalDecl() 1175 if (auto *IMD = dyn_cast<ObjCCategoryImplDecl>(getDeclContext())) in getCategory() 1717 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryInstanceMethod() 1727 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryClassMethod() 2076 ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const { in getImplementation() 2081 void ObjCCategoryDecl::setImplementation(ObjCCategoryImplDecl *ImplD) { in setImplementation() 2098 void ObjCCategoryImplDecl::anchor() {} in anchor() 2100 ObjCCategoryImplDecl * [all …]
|
| H A D | DeclPrinter.cpp | 93 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); 467 isa<ObjCCategoryImplDecl>(*D) || in VisitDeclContext() 1421 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { in VisitObjCCategoryImplDecl()
|
| /netbsd-src/external/apache2/llvm/dist/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 | 51 class ObjCCategoryImplDecl; variable 2323 ObjCCategoryImplDecl *getImplementation() const; 2324 void setImplementation(ObjCCategoryImplDecl *ImplD); 2483 class ObjCCategoryImplDecl : public ObjCImplDecl { 2487 ObjCCategoryImplDecl(DeclContext *DC, IdentifierInfo *Id, in ObjCCategoryImplDecl() function 2501 static ObjCCategoryImplDecl *Create(ASTContext &C, DeclContext *DC, 2507 static ObjCCategoryImplDecl *CreateDeserialized(ASTContext &C, unsigned ID); 2517 raw_ostream &operator<<(raw_ostream &OS, const ObjCCategoryImplDecl &CID);
|
| H A D | TextNodeDumper.h | 362 void VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D);
|
| H A D | JSONNodeDumper.h | 256 void VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D);
|
| H A D | ASTContext.h | 113 class ObjCCategoryImplDecl; variable 2800 ObjCCategoryImplDecl *getObjCImplementation(ObjCCategoryDecl *D); 2813 ObjCCategoryImplDecl *ImplD);
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.h | 45 class ObjCCategoryImplDecl; variable 154 virtual void GenerateCategory(const ObjCCategoryImplDecl *OCD) = 0;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCUnusedIVarsChecker.cpp | 90 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 156 else if (ObjCCategoryImplDecl *CatImpl in CheckObjCMethodOverride() 157 = dyn_cast<ObjCCategoryImplDecl>(DC)) in CheckObjCMethodOverride() 1918 ObjCCategoryImplDecl *CDecl = in ActOnStartCategoryImplementation() 1919 ObjCCategoryImplDecl::Create(Context, CurContext, CatName, IDecl, in ActOnStartCategoryImplementation() 2928 ObjCCategoryImplDecl *CatIMPDecl) { in CheckCategoryVsClassMethodMatches() 3015 if (ObjCCategoryImplDecl *CatDecl = in ImplMethodsVsClassMethods() 3016 dyn_cast<ObjCCategoryImplDecl>(IMPDecl)) in ImplMethodsVsClassMethods() 4164 } else if (ObjCCategoryImplDecl* CatImplClass = in ActOnAtEnd() 4165 dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) { in ActOnAtEnd() 4341 void searchFrom(const ObjCCategoryImplDecl *impl) { in searchFrom() [all …]
|
| H A D | CodeCompleteConsumer.cpp | 395 if (const auto *CatImpl = dyn_cast<ObjCCategoryImplDecl>(CurDC)) in getParentName()
|
| H A D | SemaAccess.cpp | 1942 else if (ObjCCategoryImplDecl* CatImplClass in IsSimplyAccessible() 1943 = dyn_cast<ObjCCategoryImplDecl>(Impl)) in IsSimplyAccessible()
|
| H A D | SemaExprMember.cpp | 1416 else if (ObjCCategoryImplDecl* CatImplClass = in LookupMemberExpr() 1417 dyn_cast<ObjCCategoryImplDecl>(ObjCImpDecl)) in LookupMemberExpr()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 389 if (auto *ICD = dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext())) in getCategoryContext() 452 const ObjCCategoryImplDecl *CD = cast<ObjCCategoryImplDecl>(D); in VisitObjCContainerDecl()
|
| H A D | IndexSymbol.cpp | 212 ClsD = cast<ObjCCategoryImplDecl>(D)->getClassInterface(); in getSymbolInfo()
|
| H A D | IndexDecl.cpp | 482 bool VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl()
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
| H A D | CXIndexDataConsumer.cpp | 88 bool VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl() 773 bool CXIndexDataConsumer::handleObjCCategoryImpl(const ObjCCategoryImplDecl *D) { in handleObjCCategoryImpl() 1038 } else if (const ObjCCategoryImplDecl * in getEntityDecl() 1039 CatImplD = dyn_cast<ObjCCategoryImplDecl>(D)) { in getEntityDecl()
|
| H A D | CursorVisitor.h | 231 bool VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
|
| H A D | CXIndexDataConsumer.h | 397 bool handleObjCCategoryImpl(const ObjCCategoryImplDecl *D);
|
| H A D | CIndex.cpp | 1196 bool CursorVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl() 4607 if (const ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND)) in getDeclSpelling() 4828 if (const ObjCCategoryImplDecl *CID = in clang_Cursor_getSpellingNameRange() 4829 dyn_cast_or_null<ObjCCategoryImplDecl>(getCursorDecl(C))) in clang_Cursor_getSpellingNameRange() 6571 if (ObjCCategoryImplDecl *Impl = in clang_getCursorDefinition() 6636 if (const ObjCCategoryImplDecl *CatImplD = in clang_getCanonicalCursor() 6637 dyn_cast<ObjCCategoryImplDecl>(D)) in clang_getCanonicalCursor()
|
| /netbsd-src/external/apache2/llvm/dist/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() 4853 ObjCCategoryImplDecl *CI = cast<ObjCCategoryImplDecl>(D); in HandleDeclInMainFile() 5628 void RewriteObjCFragileABI::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, in RewriteObjCCategoryImplDecl()
|
| H A D | RewriteModernObjC.cpp | 112 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() 4023 ObjCCategoryImplDecl *CIMP = CategoryImplementation[i]; in RewriteImplementations() 5753 ObjCCategoryImplDecl *CI = cast<ObjCCategoryImplDecl>(D); in HandleDeclInMainFile() 7274 void RewriteModernObjC::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, in RewriteObjCCategoryImplDecl() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | AnalysisConsumer.cpp | 613 } else if (const auto *OCD = dyn_cast<ObjCCategoryImplDecl>(DC)) { in getFunctionName()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | ObjCMT.cpp | 173 if (const ObjCCategoryImplDecl *CatImpl = dyn_cast<ObjCCategoryImplDecl>(D)) in canModify()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 817 const internal::VariadicDynCastAllOfMatcher<Decl, ObjCCategoryImplDecl>
|