Home
last modified time | relevance | path

Searched refs:ObjCPropertyImplDecl (Results 1 – 25 of 33) sorted by relevance

12

/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp32 llvm::DenseMap<ObjCPropertyDecl*, ObjCPropertyImplDecl*> SynthesizedProperties;
58 for (llvm::DenseMap<ObjCPropertyDecl*, ObjCPropertyImplDecl*>::iterator in VisitObjCMessageExpr()
118 ObjCPropertyImplDecl::Synthesize) { in TraverseObjCMethodDecl()
175 for (llvm::DenseMap<ObjCPropertyDecl*, ObjCPropertyImplDecl*>::iterator in isZeroingPropIvar()
178 ObjCPropertyImplDecl *PropImpDecl = P->second; in isZeroingPropIvar()
DTransProperties.cpp62 ObjCPropertyImplDecl *ImplD;
103 typedef DeclContext::specific_decl_iterator<ObjCPropertyImplDecl> in doTransform()
108 ObjCPropertyImplDecl *implD = *I; in doTransform()
109 if (implD->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize) in doTransform()
/external/clang/tools/libclang/
DIndexDecl.cpp221 bool VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
225 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in VisitObjCPropertyImplDecl()
227 assert(D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize); in VisitObjCPropertyImplDecl()
DCursorVisitor.h233 bool VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD);
DIndexingContext.h422 bool handleSynthesizedObjCProperty(const ObjCPropertyImplDecl *D);
DCIndex.cpp1176 bool CursorVisitor::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD) { in VisitObjCPropertyImplDecl()
3685 if (const ObjCPropertyImplDecl *PropImpl = in getDeclSpelling()
3686 dyn_cast<ObjCPropertyImplDecl>(D)) in getDeclSpelling()
4591 } else if (const ObjCPropertyImplDecl *PropImp in GetCursorVisitor()
4592 = dyn_cast_or_null<ObjCPropertyImplDecl>(getCursorDecl(cursor))) { in GetCursorVisitor()
5109 if (const ObjCPropertyImplDecl *PropImpl = in clang_getCursorReferenced()
5110 dyn_cast<ObjCPropertyImplDecl>(D)) in clang_getCursorReferenced()
DIndexingContext.cpp590 const ObjCPropertyImplDecl *D) { in handleSynthesizedObjCProperty()
/external/clang/test/Misc/
Dast-dump-decl.m120 // CHECK: ObjCPropertyImplDecl{{.*}} foo synthesize
124 // CHECK-NEXT: ObjCPropertyImplDecl{{.*}} bar synthesize
/external/clang/lib/Sema/
DSemaObjCProperty.cpp1219 ObjCPropertyImplDecl *PIDecl = in ActOnPropertyImplDecl()
1220 ObjCPropertyImplDecl::Create(Context, CurContext, AtLoc, PropertyLoc, in ActOnPropertyImplDecl()
1223 ObjCPropertyImplDecl::Synthesize in ActOnPropertyImplDecl()
1224 : ObjCPropertyImplDecl::Dynamic), in ActOnPropertyImplDecl()
1334 if (ObjCPropertyImplDecl *PPIDecl = in ActOnPropertyImplDecl()
1342 if (ObjCPropertyImplDecl *PPIDecl in ActOnPropertyImplDecl()
1373 if (ObjCPropertyImplDecl *PPIDecl = in ActOnPropertyImplDecl()
1381 if (ObjCPropertyImplDecl *PPIDecl = in ActOnPropertyImplDecl()
1659 if (ObjCPropertyImplDecl *PID = in DefaultSynthesizeProperties()
1705 ObjCPropertyImplDecl *PIDecl = dyn_cast_or_null<ObjCPropertyImplDecl>( in DefaultSynthesizeProperties()
[all …]
DSemaDeclObjC.cpp2851 if (PImpl->getPropertyImplementation() != ObjCPropertyImplDecl::Dynamic) in ImplMethodsVsClassMethods()
3655 if (const ObjCPropertyImplDecl *PIDecl in ActOnAtEnd()
3658 == ObjCPropertyImplDecl::Dynamic) in ActOnAtEnd()
/external/clang/lib/AST/
DDeclObjC.cpp1973 void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) { in addPropertyImplementation()
2000 ObjCPropertyImplDecl *ObjCImplDecl::
2013 ObjCPropertyImplDecl *ObjCImplDecl::
2133 ObjCPropertyImplDecl *ObjCPropertyImplDecl::Create(ASTContext &C, in Create()
2141 return new (C, DC) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar, in Create()
2145 ObjCPropertyImplDecl *ObjCPropertyImplDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
2147 return new (C, ID) ObjCPropertyImplDecl(nullptr, SourceLocation(), in CreateDeserialized()
2152 SourceRange ObjCPropertyImplDecl::getSourceRange() const { in getSourceRange()
DDeclPrinter.cpp89 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
1310 void DeclPrinter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) { in VisitObjCPropertyImplDecl()
1311 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) in VisitObjCPropertyImplDecl()
DASTDumper.cpp479 void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D);
1593 void ASTDumper::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
1595 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) in VisitObjCPropertyImplDecl()
DASTImporter.cpp163 Decl *VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
4024 Decl *ASTNodeImporter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
4055 ObjCPropertyImplDecl *ToImpl in VisitObjCPropertyImplDecl()
4058 ToImpl = ObjCPropertyImplDecl::Create(Importer.getToContext(), DC, in VisitObjCPropertyImplDecl()
4076 == ObjCPropertyImplDecl::Dynamic); in VisitObjCPropertyImplDecl()
4080 << (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic); in VisitObjCPropertyImplDecl()
4085 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize && in VisitObjCPropertyImplDecl()
/external/clang/include/clang/AST/
DDeclObjC.h32 class ObjCPropertyImplDecl; variable
2098 void addPropertyImplementation(ObjCPropertyImplDecl *property);
2100 ObjCPropertyImplDecl *FindPropertyImplDecl(IdentifierInfo *propertyId) const;
2101 ObjCPropertyImplDecl *FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const;
2104 typedef specific_decl_iterator<ObjCPropertyImplDecl> propimpl_iterator;
2105 typedef llvm::iterator_range<specific_decl_iterator<ObjCPropertyImplDecl>>
2603 class ObjCPropertyImplDecl : public Decl {
2634 ObjCPropertyImplDecl(DeclContext *DC, SourceLocation atLoc, SourceLocation L, in ObjCPropertyImplDecl() function
2646 static ObjCPropertyImplDecl *Create(ASTContext &C, DeclContext *DC,
2653 static ObjCPropertyImplDecl *CreateDeserialized(ASTContext &C, unsigned ID);
/external/clang/test/Sema/
Dwarn-documentation.m47 @synthesize test3; // a property implementation: ObjCPropertyImplDecl
48 @dynamic test4; // a property implementation: ObjCPropertyImplDecl
/external/clang/lib/StaticAnalyzer/Checkers/
DObjCUnusedIVarsChecker.cpp64 static void Scan(IvarUsageMap& M, const ObjCPropertyImplDecl *D) { in Scan()
DCheckObjCDealloc.cpp174 if (I->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize) in checkObjCDealloc()
/external/clang/lib/CodeGen/
DCGObjC.cpp653 const ObjCPropertyImplDecl *propImpl);
668 const ObjCPropertyImplDecl *propImpl) { in PropertyImplStrategy()
798 const ObjCPropertyImplDecl *PID) { in GenerateObjCGetter()
811 static bool hasTrivialGetExpr(const ObjCPropertyImplDecl *propImpl) { in hasTrivialGetExpr()
868 const ObjCPropertyImplDecl *propImpl, in generateObjCGetterBody()
1116 static bool hasTrivialSetExpr(const ObjCPropertyImplDecl *PID) { in hasTrivialSetExpr()
1148 const ObjCPropertyImplDecl *propImpl, in generateObjCSetterBody()
1328 const ObjCPropertyImplDecl *PID) { in GenerateObjCSetter()
2899 const ObjCPropertyImplDecl *PID) { in GenerateObjCAtomicSetterCopyHelperFunction()
2978 const ObjCPropertyImplDecl *PID) { in GenerateObjCAtomicGetterCopyHelperFunction()
DCodeGenFunction.h68 class ObjCPropertyImplDecl; variable
1233 const ObjCPropertyImplDecl *PID);
1235 const ObjCPropertyImplDecl *propImpl,
1245 const ObjCPropertyImplDecl *PID);
1247 const ObjCPropertyImplDecl *propImpl,
1266 const ObjCPropertyImplDecl *PID);
1268 const ObjCPropertyImplDecl *PID);
/external/clang/lib/Index/
DUSRGeneration.cpp86 void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D);
406 void USRGenerator::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp266 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
766 void RewriteObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, in RewritePropertyImplDecl()
780 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewritePropertyImplDecl()
5381 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
5659 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCCategoryImplDecl()
DRewriteModernObjC.cpp320 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
926 void RewriteModernObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, in RewritePropertyImplDecl()
945 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewritePropertyImplDecl()
7165 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
7417 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCCategoryImplDecl()
/external/clang/lib/Serialization/
DASTWriterDecl.cpp132 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
801 void ASTDeclWriter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
DASTReaderDecl.cpp351 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
1104 void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
3262 D = ObjCPropertyImplDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()

12