Home
last modified time | relevance | path

Searched refs:ObjCImplDecl (Results 1 – 25 of 31) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Checkers/
DCheckObjCDealloc.cpp161 const ObjCImplDecl *getContainingObjCImpl(const LocationContext *LCtx) const;
565 ObjCImplDecl *ImplDecl = Interface->getImplementation(); in diagnoseMissingReleases()
634 const ObjCImplDecl *Container = getContainingObjCImpl(LCtx); in findPropertyOnDeallocatingInstance()
691 const ObjCImplDecl *Container = getContainingObjCImpl(C.getLocationContext()); in diagnoseExtraRelease()
800 const ObjCImplDecl *
803 return cast<ObjCImplDecl>(MD->getDeclContext()); in getContainingObjCImpl()
/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp107 ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(D->getDeclContext()); in TraverseObjCMethodDecl()
DTransGCAttrs.cpp155 return isa<ObjCImplDecl>(ContD); in hasObjCImpl()
DObjCMT.cpp1045 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateMethodInstanceType()
1316 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateFactoryMethod()
/external/clang/lib/AST/
DDeclObjC.cpp1076 if (ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(getDeclContext())) in getClassInterface()
1181 } else if (const ObjCImplDecl * in collectOverriddenMethodsSlow()
1182 IMD = dyn_cast<ObjCImplDecl>(Method->getDeclContext())) { in collectOverriddenMethodsSlow()
2007 void ObjCImplDecl::anchor() { } in anchor()
2009 void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) { in addPropertyImplementation()
2015 void ObjCImplDecl::setClassInterface(ObjCInterfaceDecl *IFace) { in setClassInterface()
2036 ObjCPropertyImplDecl *ObjCImplDecl::
2049 ObjCPropertyImplDecl *ObjCImplDecl::
DASTContext.cpp407 if (const ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(DC)) { in addRedeclaredMethods()
2038 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator in getObjCImplementation()
2046 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator in getObjCImplementation()
2085 if (const ObjCImplDecl *IMD = in getObjContainingInterface()
2086 dyn_cast<ObjCImplDecl>(ND->getDeclContext())) in getObjContainingInterface()
/external/clang/lib/Index/
DIndexingContext.cpp185 return MD->isThisDeclarationADefinition() || isa<ObjCImplDecl>(ContainerDC); in isDeclADefinition()
191 isa<ObjCImplDecl>(D) || in isDeclADefinition()
DIndexDecl.cpp42 const ObjCImplDecl *Container) { in hasUserDefined()
330 auto *ImplD = cast<ObjCImplDecl>(D->getDeclContext()); in VisitObjCPropertyImplDecl()
/external/clang/tools/libclang/
DCIndexHigh.cpp85 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) { in getCanonical()
DCursorVisitor.h229 bool VisitObjCImplDecl(ObjCImplDecl *D);
DCXIndexDataConsumer.cpp95 if (isa<ObjCImplDecl>(LexicalDC) && !D->isThisDeclarationADefinition()) in VisitObjCMethodDecl()
DCIndex.cpp1151 bool CursorVisitor::VisitObjCImplDecl(ObjCImplDecl *D) { in VisitObjCImplDecl()
5804 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in clang_getCanonicalCursor()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp1669 void Sema::DefaultSynthesizeProperties(Scope *S, ObjCImplDecl* IMPDecl, in DefaultSynthesizeProperties()
1770 ObjCImplDecl *IMPDecl, ObjCContainerDecl *CDecl, ObjCCategoryDecl *C, in DiagnoseUnimplementedAccessor()
1806 void Sema::DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl, in DiagnoseUnimplementedProperties()
1886 if (ObjCImplDecl *IMP = PrimaryClass->getImplementation()) { in DiagnoseUnimplementedProperties()
1914 void Sema::diagnoseNullResettableSynthesizedSetters(const ObjCImplDecl *impDecl) { in diagnoseNullResettableSynthesizedSetters()
1942 Sema::AtomicPropertySetterGetterRules (ObjCImplDecl* IMPDecl, in AtomicPropertySetterGetterRules()
2354 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(CD)) in ProcessPropertyDecl()
DSemaDeclObjC.cpp130 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(DC)) in CheckObjCMethodOverride()
370 ObjCImplDecl *ImplDeclOfMethodDef = in ActOnStartOfObjCMethodDef()
371 dyn_cast<ObjCImplDecl>(MDecl->getDeclContext()); in ActOnStartOfObjCMethodDef()
374 ObjCImplDecl *ImplDeclOfMethodDecl = nullptr; in ActOnStartOfObjCMethodDef()
2725 ObjCImplDecl* IMPDecl, in MatchAllMethodDeclarations()
2867 void Sema::ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl, in ImplMethodsVsClassMethods()
4117 } else if (isa<ObjCImplDecl>(ObjCMethod->getDeclContext())) { in CheckObjCMethodOverrides()
4402 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) { in ActOnMethodDeclaration()
4446 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(ClassDecl)) in ActOnMethodDeclaration()
DSemaAccess.cpp1893 if (ObjCImplDecl *Impl in IsSimplyAccessible()
1894 = dyn_cast<ObjCImplDecl>(FD->getLexicalDeclContext())) { in IsSimplyAccessible()
DSemaExprObjC.cpp1108 isa<ObjCImplDecl>(MatchingMethodDecl->getDeclContext()) || in HelperToDiagnoseMismatchedMethodsInGlobalPool()
1413 if (const ObjCImplDecl *impl = in findExplicitInstancetypeDeclarer()
1414 dyn_cast<ObjCImplDecl>(MD->getDeclContext())) { in findExplicitInstancetypeDeclarer()
/external/clang/include/clang/AST/
DDeclObjC.h2308 class ObjCImplDecl : public ObjCContainerDecl {
2315 ObjCImplDecl(Kind DK, DeclContext *DC, in ObjCImplDecl() function
2380 class ObjCCategoryImplDecl : public ObjCImplDecl {
2393 : ObjCImplDecl(ObjCCategoryImpl, DC, classInterface, nameLoc, atStartLoc), in ObjCCategoryImplDecl()
2461 class ObjCImplementationDecl : public ObjCImplDecl {
2490 : ObjCImplDecl(ObjCImplementation, DC, classInterface, nameLoc, atStartLoc), in ObjCImplDecl() function
DDeclBase.h46 class ObjCImplDecl; variable
DASTContext.h170 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*> ObjCImpls;
/external/clang/lib/Analysis/
DBodyFarm.cpp407 } else if (auto *ImplDecl = dyn_cast<ObjCImplDecl>(Container)) { in findBackingIvar()
/external/clang/lib/Serialization/
DASTWriterDecl.cpp135 void VisitObjCImplDecl(ObjCImplDecl *D);
797 void ASTDeclWriter::VisitObjCImplDecl(ObjCImplDecl *D) { in VisitObjCImplDecl()
2120 if (isa<FileScopeAsmDecl>(D) || isa<ObjCImplDecl>(D) || in isRequiredDecl()
DASTReaderDecl.cpp371 void VisitObjCImplDecl(ObjCImplDecl *D);
1135 void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) { in VisitObjCImplDecl()
2503 isa<ObjCImplDecl>(D) || in isConsumerInterestedIn()
DASTReader.cpp6699 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer()
6735 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer()
/external/clang/include/clang/Sema/
DSema.h138 class ObjCImplDecl; variable
3092 void ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl,
3098 void DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl,
3103 void diagnoseNullResettableSynthesizedSetters(const ObjCImplDecl *impDecl);
3107 void DefaultSynthesizeProperties (Scope *S, ObjCImplDecl* IMPDecl,
3163 void AtomicPropertySetterGetterRules(ObjCImplDecl* IMPDecl,
3191 ObjCImplDecl* IMPDecl,
/external/clang/lib/CodeGen/
DCGObjC.cpp492 const ObjCImplDecl *impl = cast<ObjCImplDecl>(method->getDeclContext()); in Emit()

12