/external/clang/lib/ARCMigrate/ |
D | TransZeroOutPropsInDealloc.cpp | 32 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()
|
D | TransProperties.cpp | 62 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/ |
D | IndexDecl.cpp | 221 bool VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl() 225 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in VisitObjCPropertyImplDecl() 227 assert(D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize); in VisitObjCPropertyImplDecl()
|
D | CursorVisitor.h | 233 bool VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD);
|
D | IndexingContext.h | 422 bool handleSynthesizedObjCProperty(const ObjCPropertyImplDecl *D);
|
D | CIndex.cpp | 1176 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()
|
D | IndexingContext.cpp | 590 const ObjCPropertyImplDecl *D) { in handleSynthesizedObjCProperty()
|
/external/clang/test/Misc/ |
D | ast-dump-decl.m | 120 // CHECK: ObjCPropertyImplDecl{{.*}} foo synthesize 124 // CHECK-NEXT: ObjCPropertyImplDecl{{.*}} bar synthesize
|
/external/clang/lib/Sema/ |
D | SemaObjCProperty.cpp | 1219 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 …]
|
D | SemaDeclObjC.cpp | 2851 if (PImpl->getPropertyImplementation() != ObjCPropertyImplDecl::Dynamic) in ImplMethodsVsClassMethods() 3655 if (const ObjCPropertyImplDecl *PIDecl in ActOnAtEnd() 3658 == ObjCPropertyImplDecl::Dynamic) in ActOnAtEnd()
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 1973 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()
|
D | DeclPrinter.cpp | 89 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D); 1310 void DeclPrinter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) { in VisitObjCPropertyImplDecl() 1311 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) in VisitObjCPropertyImplDecl()
|
D | ASTDumper.cpp | 479 void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D); 1593 void ASTDumper::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl() 1595 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) in VisitObjCPropertyImplDecl()
|
D | ASTImporter.cpp | 163 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/ |
D | DeclObjC.h | 32 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/ |
D | warn-documentation.m | 47 @synthesize test3; // a property implementation: ObjCPropertyImplDecl 48 @dynamic test4; // a property implementation: ObjCPropertyImplDecl
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCUnusedIVarsChecker.cpp | 64 static void Scan(IvarUsageMap& M, const ObjCPropertyImplDecl *D) { in Scan()
|
D | CheckObjCDealloc.cpp | 174 if (I->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize) in checkObjCDealloc()
|
/external/clang/lib/CodeGen/ |
D | CGObjC.cpp | 653 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()
|
D | CodeGenFunction.h | 68 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/ |
D | USRGeneration.cpp | 86 void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D); 406 void USRGenerator::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 266 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()
|
D | RewriteModernObjC.cpp | 320 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/ |
D | ASTWriterDecl.cpp | 132 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D); 801 void ASTDeclWriter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
|
D | ASTReaderDecl.cpp | 351 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D); 1104 void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl() 3262 D = ObjCPropertyImplDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|