/external/clang/lib/AST/ |
D | DeclObjC.cpp | 648 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclaration() 658 } else if (ObjCCategoryImplDecl *CImplD = in getNextRedeclaration() 659 dyn_cast<ObjCCategoryImplDecl>(CtxD)) { in getNextRedeclaration() 684 } else if (ObjCCategoryImplDecl *CImplD = in getCanonicalDecl() 685 dyn_cast<ObjCCategoryImplDecl>(CtxD)) { in getCanonicalDecl() 1248 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryInstanceMethod() 1261 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) in getCategoryClassMethod() 1576 ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const { in getImplementation() 1581 void ObjCCategoryDecl::setImplementation(ObjCCategoryImplDecl *ImplD) { in setImplementation() 1590 void ObjCCategoryImplDecl::anchor() { } in anchor() [all …]
|
D | Mangle.cpp | 121 if (const ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(CD)) in mangleObjCMethodName()
|
D | DeclPrinter.cpp | 76 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); 306 isa<ObjCCategoryImplDecl>(*D) || in VisitDeclContext() 1039 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { in VisitObjCCategoryImplDecl()
|
D | DumpXML.cpp | 800 void visitObjCCategoryImplDeclAttrs(ObjCCategoryImplDecl *D) { in visitObjCCategoryImplDeclAttrs() 803 void visitObjCCategoryImplDeclChildren(ObjCCategoryImplDecl *D) { in visitObjCCategoryImplDeclChildren()
|
/external/clang/lib/CodeGen/ |
D | CGObjCRuntime.h | 44 class ObjCCategoryImplDecl; variable 140 virtual void GenerateCategory(const ObjCCategoryImplDecl *OCD) = 0;
|
D | CGObjCGNU.cpp | 514 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD); 2031 void CGObjCGNU::GenerateCategory(const ObjCCategoryImplDecl *OCD) { in GenerateCategory() 2037 for (ObjCCategoryImplDecl::instmeth_iterator in GenerateCategory() 2049 for (ObjCCategoryImplDecl::classmeth_iterator in GenerateCategory() 2627 const ObjCCategoryImplDecl *OCD = in GenerateMethod() 2628 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext()); in GenerateMethod()
|
D | CGObjCMac.cpp | 1215 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD); 1493 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD); 2931 void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) { in GenerateCategory() 2947 for (ObjCCategoryImplDecl::instmeth_iterator in GenerateCategory() 2952 for (ObjCCategoryImplDecl::classmeth_iterator in GenerateCategory() 4976 if (const ObjCCategoryImplDecl *CID = in GetNameForMethod() 4977 dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext())) in GetNameForMethod() 5969 void CGObjCNonFragileABIMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) { in GenerateCategory() 5990 for (ObjCCategoryImplDecl::instmeth_iterator in GenerateCategory() 6004 for (ObjCCategoryImplDecl::classmeth_iterator in GenerateCategory()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 1596 ObjCCategoryImplDecl *getImplementation() const; 1597 void setImplementation(ObjCCategoryImplDecl *ImplD); 1725 class ObjCCategoryImplDecl : public ObjCImplDecl { 1734 ObjCCategoryImplDecl(DeclContext *DC, IdentifierInfo *Id, in ObjCCategoryImplDecl() function 1741 static ObjCCategoryImplDecl *Create(ASTContext &C, DeclContext *DC, 1747 static ObjCCategoryImplDecl *CreateDeserialized(ASTContext &C, unsigned ID); 1789 raw_ostream &operator<<(raw_ostream &OS, const ObjCCategoryImplDecl &CID);
|
D | ASTContext.h | 2032 ObjCCategoryImplDecl *getObjCImplementation(ObjCCategoryDecl *D); 2044 ObjCCategoryImplDecl *ImplD);
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 134 else if (ObjCCategoryImplDecl *CatImpl in CheckObjCMethodOverride() 135 = dyn_cast<ObjCCategoryImplDecl>(DC)) in CheckObjCMethodOverride() 928 ObjCCategoryImplDecl *CDecl = in ActOnStartCategoryImplementation() 929 ObjCCategoryImplDecl::Create(Context, CurContext, CatName, IDecl, in ActOnStartCategoryImplementation() 1823 ObjCCategoryImplDecl *CatIMPDecl) { in CheckCategoryVsClassMethodMatches() 1887 if (ObjCCategoryImplDecl *CatDecl = in ImplMethodsVsClassMethods() 1888 dyn_cast<ObjCCategoryImplDecl>(IMPDecl)) in ImplMethodsVsClassMethods() 2667 } else if (ObjCCategoryImplDecl* CatImplClass = in ActOnAtEnd() 2668 dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) { in ActOnAtEnd() 2890 void searchFrom(ObjCCategoryImplDecl *impl) { in searchFrom() [all …]
|
D | CodeCompleteConsumer.cpp | 308 if (const ObjCCategoryImplDecl *CatImpl = dyn_cast<ObjCCategoryImplDecl>(CurDC)) in getParentName()
|
D | SemaExprMember.cpp | 1285 else if (ObjCCategoryImplDecl* CatImplClass = in LookupMemberExpr() 1286 dyn_cast<ObjCCategoryImplDecl>(ObjCImpDecl)) in LookupMemberExpr()
|
D | SemaAccess.cpp | 1902 else if (ObjCCategoryImplDecl* CatImplClass in IsSimplyAccessible() 1903 = dyn_cast<ObjCCategoryImplDecl>(Impl)) in IsSimplyAccessible()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCUnusedIVarsChecker.cpp | 96 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 | CIndexUSRs.cpp | 347 const ObjCCategoryImplDecl *CD = cast<ObjCCategoryImplDecl>(D); in VisitObjCContainerDecl()
|
D | IndexDecl.cpp | 197 bool VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl()
|
D | IndexingContext.cpp | 544 bool IndexingContext::handleObjCCategoryImpl(const ObjCCategoryImplDecl *D) { in handleObjCCategoryImpl() 820 } else if (const ObjCCategoryImplDecl * in getEntityDecl() 821 CatImplD = dyn_cast<ObjCCategoryImplDecl>(D)) { in getEntityDecl()
|
D | IndexingContext.h | 422 bool handleObjCCategoryImpl(const ObjCCategoryImplDecl *D);
|
D | CIndex.cpp | 1107 bool CursorVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { in VisitObjCCategoryImplDecl() 3210 if (const ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND)) in getDeclSpelling() 3399 if (const ObjCCategoryImplDecl * in clang_Cursor_getSpellingNameRange() 3400 CID = dyn_cast_or_null<ObjCCategoryImplDecl>(getCursorDecl(C))) in clang_Cursor_getSpellingNameRange() 4645 if (ObjCCategoryImplDecl *Impl in clang_getCursorDefinition() 4709 if (const ObjCCategoryImplDecl *CatImplD = dyn_cast<ObjCCategoryImplDecl>(D)) in clang_getCanonicalCursor()
|
/external/clang/lib/Rewrite/Frontend/ |
D | RewriteObjC.cpp | 109 SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation; 276 ObjCCategoryImplDecl *CID); 340 virtual void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, 536 virtual void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, 770 ObjCCategoryImplDecl *CID) { in RewritePropertyImplDecl() 1092 if (ObjCCategoryImplDecl *CID = in RewriteObjCMethodDecl() 1093 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) { in RewriteObjCMethodDecl() 1178 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID); in RewriteImplementationDecl() 1182 for (ObjCCategoryImplDecl::instmeth_iterator in RewriteImplementationDecl() 1197 for (ObjCCategoryImplDecl::classmeth_iterator in RewriteImplementationDecl() [all …]
|
D | RewriteModernObjC.cpp | 111 SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation; 316 ObjCCategoryImplDecl *CID); 455 void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, 919 ObjCCategoryImplDecl *CID) { in RewritePropertyImplDecl() 1272 if (ObjCCategoryImplDecl *CID = in RewriteObjCMethodDecl() 1273 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) { in RewriteObjCMethodDecl() 1358 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID); in RewriteImplementationDecl() 1372 for (ObjCCategoryImplDecl::instmeth_iterator in RewriteImplementationDecl() 1387 for (ObjCCategoryImplDecl::classmeth_iterator in RewriteImplementationDecl() 1401 for (ObjCCategoryImplDecl::propimpl_iterator in RewriteImplementationDecl() [all …]
|
/external/clang/test/Index/ |
D | get-cursor.m | 144 // CHECK-SPELLRANGE: 67:17 ObjCCategoryImplDecl=Dido:67:17 (Definition) Extent=[67:1 - 68:2] Spelli…
|
/external/clang/test/Sema/ |
D | warn-documentation.m | 65 @implementation Test1(Test1Category) // a category implementation: ObjCCategoryImplDecl
|