Home
last modified time | relevance | path

Searched refs:ObjCPropertyImplDecl (Results 1 – 25 of 34) 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;
99 typedef DeclContext::specific_decl_iterator<ObjCPropertyImplDecl> in doTransform()
104 ObjCPropertyImplDecl *implD = *I; in doTransform()
105 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.h230 bool VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD);
DIndexingContext.h419 bool handleSynthesizedObjCProperty(const ObjCPropertyImplDecl *D);
DCIndex.cpp1129 bool CursorVisitor::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD) { in VisitObjCPropertyImplDecl()
3339 if (const ObjCPropertyImplDecl *PropImpl = in getDeclSpelling()
3340 dyn_cast<ObjCPropertyImplDecl>(D)) in getDeclSpelling()
4084 } else if (const ObjCPropertyImplDecl *PropImp in GetCursorVisitor()
4085 = dyn_cast_or_null<ObjCPropertyImplDecl>(getCursorDecl(cursor))) { in GetCursorVisitor()
4597 if (const ObjCPropertyImplDecl *PropImpl = in clang_getCursorReferenced()
4598 dyn_cast<ObjCPropertyImplDecl>(D)) in clang_getCursorReferenced()
DIndexingContext.cpp590 const ObjCPropertyImplDecl *D) { in handleSynthesizedObjCProperty()
/external/clang/lib/AST/
DDeclObjC.cpp1689 void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) { in addPropertyImplementation()
1716 ObjCPropertyImplDecl *ObjCImplDecl::
1729 ObjCPropertyImplDecl *ObjCImplDecl::
1837 ObjCPropertyImplDecl *ObjCPropertyImplDecl::Create(ASTContext &C, in Create()
1845 return new (C, DC) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar, in Create()
1849 ObjCPropertyImplDecl *ObjCPropertyImplDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
1851 return new (C, ID) ObjCPropertyImplDecl(nullptr, SourceLocation(), in CreateDeserialized()
1856 SourceRange ObjCPropertyImplDecl::getSourceRange() const { in getSourceRange()
DDeclPrinter.cpp80 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
1148 void DeclPrinter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) { in VisitObjCPropertyImplDecl()
1149 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) in VisitObjCPropertyImplDecl()
DASTDumper.cpp298 void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D);
1451 void ASTDumper::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
1453 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) in VisitObjCPropertyImplDecl()
DASTImporter.cpp158 Decl *VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
3795 Decl *ASTNodeImporter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
3826 ObjCPropertyImplDecl *ToImpl in VisitObjCPropertyImplDecl()
3829 ToImpl = ObjCPropertyImplDecl::Create(Importer.getToContext(), DC, in VisitObjCPropertyImplDecl()
3847 == ObjCPropertyImplDecl::Dynamic); in VisitObjCPropertyImplDecl()
3851 << (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic); in VisitObjCPropertyImplDecl()
3856 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize && in VisitObjCPropertyImplDecl()
/external/clang/test/Misc/
Dast-dump-decl.m120 // CHECK: ObjCPropertyImplDecl{{.*}} foo synthesize
124 // CHECK-NEXT: ObjCPropertyImplDecl{{.*}} bar synthesize
/external/clang/lib/Sema/
DSemaObjCProperty.cpp1123 ObjCPropertyImplDecl *PIDecl = in ActOnPropertyImplDecl()
1124 ObjCPropertyImplDecl::Create(Context, CurContext, AtLoc, PropertyLoc, in ActOnPropertyImplDecl()
1127 ObjCPropertyImplDecl::Synthesize in ActOnPropertyImplDecl()
1128 : ObjCPropertyImplDecl::Dynamic), in ActOnPropertyImplDecl()
1234 if (ObjCPropertyImplDecl *PPIDecl = in ActOnPropertyImplDecl()
1242 if (ObjCPropertyImplDecl *PPIDecl in ActOnPropertyImplDecl()
1273 if (ObjCPropertyImplDecl *PPIDecl = in ActOnPropertyImplDecl()
1281 if (ObjCPropertyImplDecl *PPIDecl = in ActOnPropertyImplDecl()
1564 if (ObjCPropertyImplDecl *PID = in DefaultSynthesizeProperties()
1592 ObjCPropertyImplDecl *PIDecl = dyn_cast_or_null<ObjCPropertyImplDecl>( in DefaultSynthesizeProperties()
[all …]
/external/clang/include/clang/AST/
DDeclObjC.h32 class ObjCPropertyImplDecl; variable
1865 void addPropertyImplementation(ObjCPropertyImplDecl *property);
1867 ObjCPropertyImplDecl *FindPropertyImplDecl(IdentifierInfo *propertyId) const;
1868 ObjCPropertyImplDecl *FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const;
1871 typedef specific_decl_iterator<ObjCPropertyImplDecl> propimpl_iterator;
1872 typedef llvm::iterator_range<specific_decl_iterator<ObjCPropertyImplDecl>>
2355 class ObjCPropertyImplDecl : public Decl {
2386 ObjCPropertyImplDecl(DeclContext *DC, SourceLocation atLoc, SourceLocation L, in ObjCPropertyImplDecl() function
2398 static ObjCPropertyImplDecl *Create(ASTContext &C, DeclContext *DC,
2405 static ObjCPropertyImplDecl *CreateDeserialized(ASTContext &C, unsigned ID);
DASTContext.h1417 ObjCPropertyImplDecl *getObjCPropertyImplDeclForPropertyDecl(
/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.cpp213 if (I->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize) in checkObjCDealloc()
/external/clang/lib/CodeGen/
DCGObjC.cpp601 const ObjCPropertyImplDecl *propImpl);
616 const ObjCPropertyImplDecl *propImpl) { in PropertyImplStrategy()
746 const ObjCPropertyImplDecl *PID) { in GenerateObjCGetter()
759 static bool hasTrivialGetExpr(const ObjCPropertyImplDecl *propImpl) { in hasTrivialGetExpr()
816 const ObjCPropertyImplDecl *propImpl, in generateObjCGetterBody()
1062 static bool hasTrivialSetExpr(const ObjCPropertyImplDecl *PID) { in hasTrivialSetExpr()
1094 const ObjCPropertyImplDecl *propImpl, in generateObjCSetterBody()
1275 const ObjCPropertyImplDecl *PID) { in GenerateObjCSetter()
2870 const ObjCPropertyImplDecl *PID) { in GenerateObjCAtomicSetterCopyHelperFunction()
2947 const ObjCPropertyImplDecl *PID) { in GenerateObjCAtomicGetterCopyHelperFunction()
DCodeGenFunction.h66 class ObjCPropertyImplDecl; variable
1086 const ObjCPropertyImplDecl *PID);
1088 const ObjCPropertyImplDecl *propImpl,
1098 const ObjCPropertyImplDecl *PID);
1100 const ObjCPropertyImplDecl *propImpl,
1125 const ObjCPropertyImplDecl *PID);
1127 const ObjCPropertyImplDecl *PID);
/external/clang/lib/Index/
DUSRGeneration.cpp86 void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D);
392 void USRGenerator::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
/external/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp275 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
775 void RewriteObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, in RewritePropertyImplDecl()
789 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewritePropertyImplDecl()
5416 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
5695 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCCategoryImplDecl()
DRewriteModernObjC.cpp329 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
938 void RewriteModernObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, in RewritePropertyImplDecl()
957 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewritePropertyImplDecl()
7215 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
7467 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCCategoryImplDecl()
/external/clang/lib/Serialization/
DASTWriterDecl.cpp131 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
652 void ASTDeclWriter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
DASTReaderDecl.cpp335 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
942 void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
2764 D = ObjCPropertyImplDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()

12