Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/clang/lib/ARCMigrate/
HDTransZeroOutPropsInDealloc.cpp32 llvm::DenseMap<ObjCPropertyDecl*, ObjCPropertyImplDecl*> SynthesizedProperties;
58 for (llvm::DenseMap<ObjCPropertyDecl*, ObjCPropertyImplDecl*>::iterator in VisitObjCMessageExpr()
118 ObjCPropertyImplDecl *PID = *I; in TraverseObjCMethodDecl()
120 ObjCPropertyImplDecl::Synthesize) { in TraverseObjCMethodDecl()
177 for (llvm::DenseMap<ObjCPropertyDecl*, ObjCPropertyImplDecl*>::iterator in isZeroingPropIvar()
180 ObjCPropertyImplDecl *PropImpDecl = P->second; in isZeroingPropIvar()
HDTransProperties.cpp62 ObjCPropertyImplDecl *ImplD;
100 typedef DeclContext::specific_decl_iterator<ObjCPropertyImplDecl> in doTransform()
105 ObjCPropertyImplDecl *implD = *I; in doTransform()
106 if (implD->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize) in doTransform()
/trueos/contrib/llvm/tools/clang/lib/AST/
HDDeclObjC.cpp1623 void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) { in addPropertyImplementation()
1650 ObjCPropertyImplDecl *ObjCImplDecl::
1653 ObjCPropertyImplDecl *PID = *i; in FindPropertyImplIvarDecl()
1665 ObjCPropertyImplDecl *ObjCImplDecl::
1668 ObjCPropertyImplDecl *PID = *i; in FindPropertyImplDecl()
1777 ObjCPropertyImplDecl *ObjCPropertyImplDecl::Create(ASTContext &C, in Create()
1785 return new (C) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar, in Create()
1789 ObjCPropertyImplDecl *ObjCPropertyImplDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
1791 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCPropertyImplDecl)); in CreateDeserialized()
1792 return new (Mem) ObjCPropertyImplDecl(0, SourceLocation(), SourceLocation(), in CreateDeserialized()
[all …]
HDDeclPrinter.cpp80 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
1149 void DeclPrinter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) { in VisitObjCPropertyImplDecl()
1150 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) in VisitObjCPropertyImplDecl()
HDASTDumper.cpp259 void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D);
1429 void ASTDumper::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
1431 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) in VisitObjCPropertyImplDecl()
HDASTImporter.cpp158 Decl *VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
3814 Decl *ASTNodeImporter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
3845 ObjCPropertyImplDecl *ToImpl in VisitObjCPropertyImplDecl()
3848 ToImpl = ObjCPropertyImplDecl::Create(Importer.getToContext(), DC, in VisitObjCPropertyImplDecl()
3866 == ObjCPropertyImplDecl::Dynamic); in VisitObjCPropertyImplDecl()
3870 << (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic); in VisitObjCPropertyImplDecl()
3875 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize && in VisitObjCPropertyImplDecl()
HDASTContext.cpp4940 ObjCPropertyImplDecl *SynthesizePID = 0; in getObjCEncodingForPropertyDecl()
4949 ObjCPropertyImplDecl *PID = *i; in getObjCEncodingForPropertyDecl()
4951 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) { in getObjCEncodingForPropertyDecl()
4963 ObjCPropertyImplDecl *PID = *i; in getObjCEncodingForPropertyDecl()
4965 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) { in getObjCEncodingForPropertyDecl()
/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaObjCProperty.cpp1144 ObjCPropertyImplDecl *PIDecl = in ActOnPropertyImplDecl()
1145 ObjCPropertyImplDecl::Create(Context, CurContext, AtLoc, PropertyLoc, in ActOnPropertyImplDecl()
1148 ObjCPropertyImplDecl::Synthesize in ActOnPropertyImplDecl()
1149 : ObjCPropertyImplDecl::Dynamic), in ActOnPropertyImplDecl()
1249 if (ObjCPropertyImplDecl *PPIDecl = in ActOnPropertyImplDecl()
1257 if (ObjCPropertyImplDecl *PPIDecl in ActOnPropertyImplDecl()
1288 if (ObjCPropertyImplDecl *PPIDecl = in ActOnPropertyImplDecl()
1296 if (ObjCPropertyImplDecl *PPIDecl = in ActOnPropertyImplDecl()
1567 if (ObjCPropertyImplDecl *PID = in DefaultSynthesizeProperties()
1589 ObjCPropertyImplDecl *PIDecl = dyn_cast_or_null<ObjCPropertyImplDecl>( in DefaultSynthesizeProperties()
[all …]
HDSemaCodeComplete.cpp2965 switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) { in getCursorKindForDecl()
2966 case ObjCPropertyImplDecl::Dynamic: in getCursorKindForDecl()
2969 case ObjCPropertyImplDecl::Synthesize: in getCursorKindForDecl()
6000 if (ObjCPropertyImplDecl *PropertyImpl = dyn_cast<ObjCPropertyImplDecl>(*D)) in CodeCompleteObjCPropertyDefinition()
HDSemaDeclObjC.cpp2628 if (const ObjCPropertyImplDecl *PIDecl in ActOnAtEnd()
2631 == ObjCPropertyImplDecl::Dynamic) in ActOnAtEnd()
/trueos/contrib/llvm/tools/clang/include/clang/AST/
HDDeclObjC.h32 class ObjCPropertyImplDecl; variable
1697 void addPropertyImplementation(ObjCPropertyImplDecl *property);
1699 ObjCPropertyImplDecl *FindPropertyImplDecl(IdentifierInfo *propertyId) const;
1700 ObjCPropertyImplDecl *FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const;
1703 typedef specific_decl_iterator<ObjCPropertyImplDecl> propimpl_iterator;
2167 class ObjCPropertyImplDecl : public Decl {
2198 ObjCPropertyImplDecl(DeclContext *DC, SourceLocation atLoc, SourceLocation L, in ObjCPropertyImplDecl() function
2210 static ObjCPropertyImplDecl *Create(ASTContext &C, DeclContext *DC,
2217 static ObjCPropertyImplDecl *CreateDeserialized(ASTContext &C, unsigned ID);
HDRecursiveASTVisitor.h1351 DEF_TRAVERSE_DECL(ObjCPropertyImplDecl, {
/trueos/contrib/llvm/tools/clang/lib/CodeGen/
HDCGObjC.cpp599 const ObjCPropertyImplDecl *propImpl);
614 const ObjCPropertyImplDecl *propImpl) { in PropertyImplStrategy()
744 const ObjCPropertyImplDecl *PID) { in GenerateObjCGetter()
757 static bool hasTrivialGetExpr(const ObjCPropertyImplDecl *propImpl) { in hasTrivialGetExpr()
814 const ObjCPropertyImplDecl *propImpl, in generateObjCGetterBody()
1055 static bool hasTrivialSetExpr(const ObjCPropertyImplDecl *PID) { in hasTrivialSetExpr()
1087 const ObjCPropertyImplDecl *propImpl, in generateObjCSetterBody()
1268 const ObjCPropertyImplDecl *PID) { in GenerateObjCSetter()
2857 const ObjCPropertyImplDecl *PID) { in GenerateObjCAtomicSetterCopyHelperFunction()
2936 const ObjCPropertyImplDecl *PID) { in GenerateObjCAtomicGetterCopyHelperFunction()
HDCodeGenFunction.h64 class ObjCPropertyImplDecl; variable
1066 const ObjCPropertyImplDecl *PID);
1068 const ObjCPropertyImplDecl *propImpl,
1078 const ObjCPropertyImplDecl *PID);
1080 const ObjCPropertyImplDecl *propImpl,
1105 const ObjCPropertyImplDecl *PID);
1107 const ObjCPropertyImplDecl *PID);
HDCGObjCGNU.cpp2101 ObjCPropertyImplDecl *propertyImpl = *iter; in GeneratePropertyList()
2103 ObjCPropertyImplDecl::Synthesize); in GeneratePropertyList()
2105 ObjCPropertyImplDecl::Dynamic); in GeneratePropertyList()
HDCodeGenModule.cpp2798 ObjCPropertyImplDecl *PID = *i; in EmitObjCPropertyImplementations()
2801 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) { in EmitObjCPropertyImplementations()
HDCGObjCMac.cpp3089 ObjCPropertyImplDecl *PID = *i; in GenerateClass()
3091 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) { in GenerateClass()
5686 ObjCPropertyImplDecl *PID = *i; in BuildClassRoTInitializer()
5688 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){ in BuildClassRoTInitializer()
HDCGDebugInfo.cpp1704 if (ObjCPropertyImplDecl *PImpD = in CreateType()
/trueos/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
HDObjCUnusedIVarsChecker.cpp64 static void Scan(IvarUsageMap& M, const ObjCPropertyImplDecl *D) { in Scan()
HDCheckObjCDealloc.cpp219 if (I->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize) in checkObjCDealloc()
/trueos/contrib/llvm/tools/clang/lib/Index/
HDUSRGeneration.cpp61 void VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D);
369 void USRGenerator::VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
/trueos/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
HDRewriteObjC.cpp274 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
768 void RewriteObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, in RewritePropertyImplDecl()
782 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewritePropertyImplDecl()
5476 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
5758 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCCategoryImplDecl()
HDRewriteModernObjC.cpp328 void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID,
930 void RewriteModernObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, in RewritePropertyImplDecl()
949 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewritePropertyImplDecl()
7311 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
7572 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCCategoryImplDecl()
/trueos/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderDecl.cpp315 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
915 void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()
2528 D = ObjCPropertyImplDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
HDASTWriterDecl.cpp131 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
638 void ASTDeclWriter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { in VisitObjCPropertyImplDecl()