Searched refs:ObjCImplDecl (Results 1 - 25 of 27) sorted by relevance

12

/external/clang/tools/libclang/
H A DIndexDecl.cpp28 const ObjCImplDecl *Container) {
237 !hasUserDefined(MD, cast<ObjCImplDecl>(D->getDeclContext())))
243 !hasUserDefined(MD, cast<ObjCImplDecl>(D->getDeclContext())))
H A DCIndexHigh.cpp85 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) {
H A DCursorVisitor.h226 bool VisitObjCImplDecl(ObjCImplDecl *D);
H A DCIndex.cpp1102 bool CursorVisitor::VisitObjCImplDecl(ObjCImplDecl *D) {
4918 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
/external/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp107 ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(D->getDeclContext());
H A DTransGCAttrs.cpp155 if (isa<ObjCImplDecl>(ContD))
H A DObjCMT.cpp913 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl))
1185 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl))
/external/clang/lib/AST/
H A DDeclObjC.cpp948 if (ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(getDeclContext()))
1032 } else if (const ObjCImplDecl *
1033 IMD = dyn_cast<ObjCImplDecl>(Method->getDeclContext())) {
1687 void ObjCImplDecl::anchor() { }
1689 void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) {
1695 void ObjCImplDecl::setClassInterface(ObjCInterfaceDecl *IFace) {
1716 ObjCPropertyImplDecl *ObjCImplDecl::
1729 ObjCPropertyImplDecl *ObjCImplDecl::
H A DASTContext.cpp404 if (const ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(DC)) {
1903 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
1911 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
1939 if (const ObjCImplDecl *IMD =
1940 dyn_cast<ObjCImplDecl>(ND->getDeclContext()))
H A DASTImporter.cpp3813 ObjCImplDecl *InImpl = dyn_cast<ObjCImplDecl>(LexicalDC);
/external/clang/include/clang/AST/
H A DDeclObjC.h506 /// ObjCProtocolDecl, and ObjCImplDecl.
1833 class ObjCImplDecl : public ObjCContainerDecl { class in namespace:clang
1840 ObjCImplDecl(Kind DK, DeclContext *DC, function in class:clang::ObjCImplDecl
1904 class ObjCCategoryImplDecl : public ObjCImplDecl {
1917 : ObjCImplDecl(ObjCCategoryImpl, DC, classInterface, nameLoc, atStartLoc),
1985 class ObjCImplementationDecl : public ObjCImplDecl {
2014 : ObjCImplDecl(ObjCImplementation, DC, classInterface, nameLoc, atStartLoc),
H A DDeclBase.h45 class ObjCImplDecl;
H A DASTContext.h155 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*> ObjCImpls;
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp133 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(DC))
374 ObjCImplDecl *ImplDeclOfMethodDef =
375 dyn_cast<ObjCImplDecl>(MDecl->getDeclContext());
378 ObjCImplDecl *ImplDeclOfMethodDecl = nullptr;
1814 ObjCImplDecl* IMPDecl,
1952 void Sema::ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl,
2965 } else if (isa<ObjCImplDecl>(ObjCMethod->getDeclContext())) {
3165 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDec
[all...]
H A DSemaObjCProperty.cpp1524 void Sema::DefaultSynthesizeProperties(Scope *S, ObjCImplDecl* IMPDecl,
1619 ObjCImplDecl* IMPDecl,
1646 void Sema::DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl,
1721 if (ObjCImplDecl *IMP = PrimaryClass->getImplementation()) {
1750 Sema::AtomicPropertySetterGetterRules (ObjCImplDecl* IMPDecl,
2067 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(CD))
H A DSemaAccess.cpp1881 if (ObjCImplDecl *Impl
1882 = dyn_cast<ObjCImplDecl>(FD->getLexicalDeclContext())) {
H A DSemaExprObjC.cpp988 isa<ObjCImplDecl>(MatchingMethodDecl->getDeclContext()) ||
1187 if (const ObjCImplDecl *impl =
1188 dyn_cast<ObjCImplDecl>(MD->getDeclContext())) {
/external/clang/lib/Serialization/
H A DASTWriterDecl.cpp126 void VisitObjCImplDecl(ObjCImplDecl *D);
626 void ASTDeclWriter::VisitObjCImplDecl(ObjCImplDecl *D) {
1830 if (isa<FileScopeAsmDecl>(D) || isa<ObjCImplDecl>(D) || isa<ImportDecl>(D))
H A DASTReaderDecl.cpp330 void VisitObjCImplDecl(ObjCImplDecl *D);
918 void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) {
2187 isa<ObjCImplDecl>(D) ||
H A DASTReader.cpp6570 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD,
6600 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
/external/clang/include/clang/Sema/
H A DSema.h137 class ObjCImplDecl;
2749 void ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl,
2755 void DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl,
2761 void DefaultSynthesizeProperties (Scope *S, ObjCImplDecl* IMPDecl,
2818 void AtomicPropertySetterGetterRules(ObjCImplDecl* IMPDecl,
2846 ObjCImplDecl* IMPDecl,
/external/clang/lib/CodeGen/
H A DCGObjC.cpp437 const ObjCImplDecl *impl = cast<ObjCImplDecl>(method->getDeclContext());
H A DCGObjCMac.cpp1436 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const;
5745 CGObjCNonFragileABIMac::ImplementationIsNonLazy(const ObjCImplDecl *OD) const {
H A DCodeGenModule.cpp3061 if (auto *OID = dyn_cast<ObjCImplDecl>(I)) {
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp606 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const {

Completed in 224 milliseconds

12