/external/clang/lib/AST/ |
D | DeclObjC.cpp | 743 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclarationImpl() 753 } else if (ObjCCategoryImplDecl *CImplD = in getNextRedeclarationImpl() 754 dyn_cast<ObjCCategoryImplDecl>(CtxD)) { in getNextRedeclarationImpl() 779 } else if (ObjCCategoryImplDecl *CImplD = in getCanonicalDecl() 780 dyn_cast<ObjCCategoryImplDecl>(CtxD)) { in getCanonicalDecl() 1363 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryInstanceMethod() 1373 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryClassMethod() 1682 ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const { in getImplementation() 1687 void ObjCCategoryDecl::setImplementation(ObjCCategoryImplDecl *ImplD) { in setImplementation() 1696 void ObjCCategoryImplDecl::anchor() { } in anchor() [all …]
|
D | Mangle.cpp | 269 if (const ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(CD)) in mangleObjCMethodName()
|
D | DeclPrinter.cpp | 76 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); 309 isa<ObjCCategoryImplDecl>(*D) || in VisitDeclContext() 1065 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { in VisitObjCCategoryImplDecl()
|
D | ASTImporter.cpp | 157 Decl *VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); 3395 ObjCCategoryImplDecl *Impl in VisitObjCCategoryDecl() 3396 = cast_or_null<ObjCCategoryImplDecl>( in VisitObjCCategoryDecl() 3673 Decl *ASTNodeImporter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl() 3679 ObjCCategoryImplDecl *ToImpl = Category->getImplementation(); in VisitObjCCategoryImplDecl() 3686 ToImpl = ObjCCategoryImplDecl::Create(Importer.getToContext(), DC, in VisitObjCCategoryImplDecl()
|
/external/clang/lib/CodeGen/ |
D | CGObjCRuntime.h | 44 class ObjCCategoryImplDecl; variable 140 virtual void GenerateCategory(const ObjCCategoryImplDecl *OCD) = 0;
|
D | CGObjCGNU.cpp | 510 void GenerateCategory(const ObjCCategoryImplDecl *CMD) override; 2008 void CGObjCGNU::GenerateCategory(const ObjCCategoryImplDecl *OCD) { in GenerateCategory() 2590 const ObjCCategoryImplDecl *OCD = in GenerateMethod() 2591 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext()); in GenerateMethod()
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 132 else if (ObjCCategoryImplDecl *CatImpl in CheckObjCMethodOverride() 133 = dyn_cast<ObjCCategoryImplDecl>(DC)) in CheckObjCMethodOverride() 970 ObjCCategoryImplDecl *CDecl = in ActOnStartCategoryImplementation() 971 ObjCCategoryImplDecl::Create(Context, CurContext, CatName, IDecl, in ActOnStartCategoryImplementation() 1909 ObjCCategoryImplDecl *CatIMPDecl) { in CheckCategoryVsClassMethodMatches() 1979 if (ObjCCategoryImplDecl *CatDecl = in ImplMethodsVsClassMethods() 1980 dyn_cast<ObjCCategoryImplDecl>(IMPDecl)) in ImplMethodsVsClassMethods() 2766 } else if (ObjCCategoryImplDecl* CatImplClass = in ActOnAtEnd() 2767 dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) { in ActOnAtEnd() 2931 void searchFrom(ObjCCategoryImplDecl *impl) { in searchFrom() [all …]
|
D | CodeCompleteConsumer.cpp | 304 if (const ObjCCategoryImplDecl *CatImpl = dyn_cast<ObjCCategoryImplDecl>(CurDC)) in getParentName()
|
D | SemaAccess.cpp | 1886 else if (ObjCCategoryImplDecl* CatImplClass in IsSimplyAccessible() 1887 = dyn_cast<ObjCCategoryImplDecl>(Impl)) in IsSimplyAccessible()
|
D | SemaExprMember.cpp | 1357 else if (ObjCCategoryImplDecl* CatImplClass = in LookupMemberExpr() 1358 dyn_cast<ObjCCategoryImplDecl>(ObjCImpDecl)) in LookupMemberExpr()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 1762 ObjCCategoryImplDecl *getImplementation() const; 1763 void setImplementation(ObjCCategoryImplDecl *ImplD); 1913 class ObjCCategoryImplDecl : public ObjCImplDecl { 1922 ObjCCategoryImplDecl(DeclContext *DC, IdentifierInfo *Id, in ObjCCategoryImplDecl() function 1929 static ObjCCategoryImplDecl *Create(ASTContext &C, DeclContext *DC, 1935 static ObjCCategoryImplDecl *CreateDeserialized(ASTContext &C, unsigned ID); 1975 raw_ostream &operator<<(raw_ostream &OS, const ObjCCategoryImplDecl &CID);
|
D | ASTContext.h | 2120 ObjCCategoryImplDecl *getObjCImplementation(ObjCCategoryDecl *D); 2132 ObjCCategoryImplDecl *ImplD);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCUnusedIVarsChecker.cpp | 91 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
|
/external/clang/test/Misc/ |
D | ast-dump-decl.m | 88 // CHECK: ObjCCategoryImplDecl{{.*}} TestObjCClass
|
/external/clang/tools/libclang/ |
D | CursorVisitor.h | 227 bool VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
|
D | IndexDecl.cpp | 187 bool VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl()
|
D | IndexingContext.cpp | 544 bool IndexingContext::handleObjCCategoryImpl(const ObjCCategoryImplDecl *D) { in handleObjCCategoryImpl() 821 } else if (const ObjCCategoryImplDecl * in getEntityDecl() 822 CatImplD = dyn_cast<ObjCCategoryImplDecl>(D)) { in getEntityDecl()
|
D | IndexingContext.h | 418 bool handleObjCCategoryImpl(const ObjCCategoryImplDecl *D);
|
D | CIndex.cpp | 1109 bool CursorVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl() 3541 if (const ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND)) in getDeclSpelling() 3750 if (const ObjCCategoryImplDecl * in clang_Cursor_getSpellingNameRange() 3751 CID = dyn_cast_or_null<ObjCCategoryImplDecl>(getCursorDecl(C))) in clang_Cursor_getSpellingNameRange() 5111 if (ObjCCategoryImplDecl *Impl in clang_getCursorDefinition() 5175 if (const ObjCCategoryImplDecl *CatImplD = dyn_cast<ObjCCategoryImplDecl>(D)) in clang_getCanonicalCursor()
|
/external/clang/lib/Index/ |
D | USRGeneration.cpp | 379 const ObjCCategoryImplDecl *CD = cast<ObjCCategoryImplDecl>(D); in VisitObjCContainerDecl()
|
/external/clang/test/Index/ |
D | get-cursor.m | 144 // CHECK-SPELLRANGE: 67:17 ObjCCategoryImplDecl=Dido:67:17 (Definition) Extent=[67:1 - 68:2] Spelli…
|
D | usrs.m | 275 // CHECK-source: usrs.m:68:17: ObjCCategoryImplDecl=Bar:68:17 (Definition) Extent=[68:1 - 70:2]
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 111 SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation; 268 ObjCCategoryImplDecl *CID); 332 virtual void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, 535 void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, 768 ObjCCategoryImplDecl *CID) { in RewritePropertyImplDecl() 1079 if (ObjCCategoryImplDecl *CID = in RewriteObjCMethodDecl() 1080 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) { in RewriteObjCMethodDecl() 1164 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID); in RewriteImplementationDecl() 4878 ObjCCategoryImplDecl *CI = cast<ObjCCategoryImplDecl>(D); in HandleDeclInMainFile() 5657 void RewriteObjCFragileABI::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, in RewriteObjCCategoryImplDecl()
|
D | RewriteModernObjC.cpp | 112 SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation; 322 ObjCCategoryImplDecl *CID); 460 void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, 928 ObjCCategoryImplDecl *CID) { in RewritePropertyImplDecl() 1274 if (ObjCCategoryImplDecl *CID = in RewriteObjCMethodDecl() 1275 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) { in RewriteObjCMethodDecl() 1359 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID); in RewriteImplementationDecl() 4104 ObjCCategoryImplDecl *CIMP = CategoryImplementation[i]; in RewriteImplementations() 5855 ObjCCategoryImplDecl *CI = cast<ObjCCategoryImplDecl>(D); in HandleDeclInMainFile() 7422 void RewriteModernObjC::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, in RewriteObjCCategoryImplDecl() [all …]
|
/external/clang/test/Sema/ |
D | warn-documentation.m | 65 @implementation Test1(Test1Category) // a category implementation: ObjCCategoryImplDecl
|