/external/clang/lib/ARCMigrate/ |
D | TransZeroOutPropsInDealloc.cpp | 107 ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(D->getDeclContext()); in TraverseObjCMethodDecl() 116 for (ObjCImplDecl::propimpl_iterator in TraverseObjCMethodDecl()
|
D | TransGCAttrs.cpp | 156 if (isa<ObjCImplDecl>(ContD)) in hasObjCImpl()
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 767 if (ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(getDeclContext())) in getClassInterface() 860 } else if (const ObjCImplDecl * in collectOverriddenMethodsSlow() 861 IMD = dyn_cast<ObjCImplDecl>(Method->getDeclContext())) { in collectOverriddenMethodsSlow() 1552 void ObjCImplDecl::anchor() { } in anchor() 1554 void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) { in addPropertyImplementation() 1560 void ObjCImplDecl::setClassInterface(ObjCInterfaceDecl *IFace) { in setClassInterface() 1581 ObjCPropertyImplDecl *ObjCImplDecl:: 1596 ObjCPropertyImplDecl *ObjCImplDecl::
|
D | DumpXML.cpp | 744 void visitObjCImplDeclChildren(ObjCImplDecl *D) { in visitObjCImplDeclChildren() 747 void visitObjCImplDeclAsContext(ObjCImplDecl *D) { in visitObjCImplDeclAsContext()
|
D | ASTContext.cpp | 371 if (const ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(DC)) { in addRedeclaredMethods() 1789 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator in getObjCImplementation() 1797 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator in getObjCImplementation() 1825 if (const ObjCImplDecl *IMD = in getObjContainingInterface() 1826 dyn_cast<ObjCImplDecl>(ND->getDeclContext())) in getObjContainingInterface()
|
D | ASTImporter.cpp | 3783 ObjCImplDecl *InImpl = dyn_cast<ObjCImplDecl>(LexicalDC); in VisitObjCPropertyImplDecl()
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 132 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(DC)) in CheckObjCMethodOverride() 376 ObjCImplDecl *ImplDeclOfMethodDef = in ActOnStartOfObjCMethodDef() 377 dyn_cast<ObjCImplDecl>(MDecl->getDeclContext()); in ActOnStartOfObjCMethodDef() 380 ObjCImplDecl *ImplDeclOfMethodDecl = 0; in ActOnStartOfObjCMethodDef() 1673 ObjCImplDecl* IMPDecl, in MatchAllMethodDeclarations() 1812 void Sema::ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl, in ImplMethodsVsClassMethods() 1881 if (ObjCImplDecl *IMP = ID->getImplementation()) { in ImplMethodsVsClassMethods() 2979 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) { in ActOnMethodDeclaration() 3019 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(ClassDecl)) in ActOnMethodDeclaration()
|
D | SemaObjCProperty.cpp | 1574 void Sema::DefaultSynthesizeProperties(Scope *S, ObjCImplDecl* IMPDecl, in DefaultSynthesizeProperties() 1659 void Sema::DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl, in DiagnoseUnimplementedProperties() 1685 for (ObjCImplDecl::propimpl_iterator in DiagnoseUnimplementedProperties() 1731 Sema::AtomicPropertySetterGetterRules (ObjCImplDecl* IMPDecl, in AtomicPropertySetterGetterRules() 2010 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(CD)) in ProcessPropertyDecl()
|
D | SemaAccess.cpp | 1884 if (ObjCImplDecl *Impl in IsSimplyAccessible() 1885 = dyn_cast<ObjCImplDecl>(FD->getLexicalDeclContext())) { in IsSimplyAccessible()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 1640 class ObjCImplDecl : public ObjCContainerDecl { 1647 ObjCImplDecl(Kind DK, DeclContext *DC, in ObjCImplDecl() function 1704 class ObjCCategoryImplDecl : public ObjCImplDecl { 1717 : ObjCImplDecl(ObjCCategoryImpl, DC, classInterface, nameLoc, atStartLoc), in ObjCCategoryImplDecl() 1784 class ObjCImplementationDecl : public ObjCImplDecl { 1810 : ObjCImplDecl(ObjCImplementation, DC, classInterface, nameLoc, atStartLoc), in ObjCImplDecl() function
|
D | DeclBase.h | 41 class ObjCImplDecl; variable
|
D | ASTContext.h | 152 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*> ObjCImpls;
|
/external/clang/tools/libclang/ |
D | CIndexHigh.cpp | 85 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) { in getCanonical()
|
D | CursorVisitor.h | 226 bool VisitObjCImplDecl(ObjCImplDecl *D);
|
D | CIndex.cpp | 1086 bool CursorVisitor::VisitObjCImplDecl(ObjCImplDecl *D) { in VisitObjCImplDecl() 4620 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in clang_getCanonicalCursor()
|
/external/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 120 void VisitObjCImplDecl(ObjCImplDecl *D); 598 void ASTDeclWriter::VisitObjCImplDecl(ObjCImplDecl *D) { in VisitObjCImplDecl() 1693 if (isa<FileScopeAsmDecl>(D) || isa<ObjCImplDecl>(D)) in isRequiredDecl()
|
D | ASTReaderDecl.cpp | 286 void VisitObjCImplDecl(ObjCImplDecl *D); 836 void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) { in VisitObjCImplDecl() 1676 isa<ObjCImplDecl>(D)) in isConsumerInterestedIn()
|
D | ASTReader.cpp | 5619 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer() 5623 for (ObjCImplDecl::method_iterator in PassObjCImplDeclToConsumer() 5641 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 126 class ObjCImplDecl; variable 2436 void ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl, 2442 void DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl, 2448 void DefaultSynthesizeProperties (Scope *S, ObjCImplDecl* IMPDecl, 2500 void AtomicPropertySetterGetterRules(ObjCImplDecl* IMPDecl, 2524 ObjCImplDecl* IMPDecl,
|
/external/clang/lib/CodeGen/ |
D | CodeGenModule.cpp | 2706 if (ObjCImplDecl *OID = dyn_cast<ObjCImplDecl>(*I)) { in EmitLinkageSpec()
|
D | CGObjC.cpp | 412 const ObjCImplDecl *impl = cast<ObjCImplDecl>(method->getDeclContext()); in Emit()
|
D | CGObjCMac.cpp | 1433 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const; 5770 CGObjCNonFragileABIMac::ImplementationIsNonLazy(const ObjCImplDecl *OD) const { in ImplementationIsNonLazy()
|
D | CGObjCGNU.cpp | 2073 for (ObjCImplDecl::propimpl_iterator in GeneratePropertyList()
|
/external/clang/lib/Rewrite/Frontend/ |
D | RewriteModernObjC.cpp | 592 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const { in ImplementationIsNonLazy() 7290 for (ObjCImplDecl::propimpl_iterator Prop = IDecl->propimpl_begin(), in RewriteObjCClassMetaData() 7551 for (ObjCImplDecl::propimpl_iterator Prop = IDecl->propimpl_begin(), in RewriteObjCCategoryImplDecl()
|
D | RewriteObjC.cpp | 5473 for (ObjCImplDecl::propimpl_iterator Prop = IDecl->propimpl_begin(), in RewriteObjCClassMetaData() 5755 for (ObjCImplDecl::propimpl_iterator Prop = IDecl->propimpl_begin(), in RewriteObjCCategoryImplDecl()
|