Home
last modified time | relevance | path

Searched refs:getPropertyAttributes (Results 1 – 22 of 22) sorted by relevance

/external/clang/lib/AST/
DDeclPrinter.cpp1247 if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) { in VisitObjCPropertyDecl()
1250 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1256 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) { in VisitObjCPropertyDecl()
1261 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) { in VisitObjCPropertyDecl()
1267 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) { in VisitObjCPropertyDecl()
1272 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1278 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) { in VisitObjCPropertyDecl()
1283 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_strong) { in VisitObjCPropertyDecl()
1288 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) { in VisitObjCPropertyDecl()
1293 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
[all …]
DASTContext.cpp5406 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) in getObjCEncodingForPropertyDecl()
5408 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) in getObjCEncodingForPropertyDecl()
5410 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak) in getObjCEncodingForPropertyDecl()
5426 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic) in getObjCEncodingForPropertyDecl()
5429 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) { in getObjCEncodingForPropertyDecl()
5434 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) { in getObjCEncodingForPropertyDecl()
DDeclObjC.cpp127 if (P->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readwrite) in HasUserDeclaredSetterMethod()
DASTDumper.cpp1674 ObjCPropertyDecl::PropertyAttributeKind Attrs = D->getPropertyAttributes(); in VisitObjCPropertyDecl()
DASTImporter.cpp4234 ToProperty->setPropertyAttributes(D->getPropertyAttributes()); in VisitObjCPropertyDecl()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp71 = property->getPropertyAttributes(); in checkPropertyDeclWithOwnership()
186 unsigned Attributes = ODS.getPropertyAttributes(); in ActOnProperty()
206 ODS.getPropertyAttributes(), in ActOnProperty()
216 Attributes, ODS.getPropertyAttributes(), in ActOnProperty()
348 (OldProperty->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic) in checkAtomicPropertyMismatch()
351 (NewProperty->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic) in checkAtomicPropertyMismatch()
359 auto Attrs = Property->getPropertyAttributes(); in checkAtomicPropertyMismatch()
379 unsigned Attrs = NewProperty->getPropertyAttributes(); in checkAtomicPropertyMismatch()
488 = getOwnershipRule(PIDecl->getPropertyAttributes()); in HandlePropertyInClassExtension()
717 getImpliedARCOwnership(property->getPropertyAttributes(), in checkARCPropertyImpl()
[all …]
DSemaPseudoObject.cpp580 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak) in isWeakProperty()
DSemaExprObjC.cpp1862 if (!(PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter)) in HandleExprPropertyRefExpr()
3009 Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak; in BuildInstanceMessage()
DSemaCodeComplete.cpp4909 unsigned Attributes = ODS.getPropertyAttributes(); in CodeCompleteObjCPropertyFlags()
DSemaChecking.cpp10281 unsigned Attributes = PD->getPropertyAttributes(); in checkUnsafeExprAssigns()
/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp123 PD->getPropertyAttributes(); in TraverseObjCMethodDecl()
DObjCMT.cpp623 if ((ClassProperty->getPropertyAttributes() in ClassImplementsAllMethodsAndProperties()
624 != Property->getPropertyAttributes()) || in ClassImplementsAllMethodsAndProperties()
/external/clang/include/clang/Sema/
DDeclSpec.h828 ObjCPropertyAttributeKind getPropertyAttributes() const { in getPropertyAttributes() function
838 (getPropertyAttributes() & DQ_PR_nullability)) && in getNullability()
845 (getPropertyAttributes() & DQ_PR_nullability)) && in getNullabilityLoc()
852 (getPropertyAttributes() & DQ_PR_nullability)) && in setNullability()
/external/clang/lib/Analysis/
DBodyFarm.cpp433 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak) in createObjCPropertyGetter()
/external/clang/lib/Parse/
DParseObjc.cpp759 if (OCDS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nullability) in ParseObjCInterfaceDeclList()
941 if (DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nullability) in ParseObjCPropertyAttribute()
948 if (DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nullability) in ParseObjCPropertyAttribute()
955 if (DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nullability) in ParseObjCPropertyAttribute()
962 if (DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nullability) in ParseObjCPropertyAttribute()
/external/clang/lib/CodeGen/
DCGObjC.cpp3174 if ((!(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_atomic))) in GenerateObjCAtomicSetterCopyHelperFunction()
3253 if ((!(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_atomic))) in GenerateObjCAtomicGetterCopyHelperFunction()
DCGDebugInfo.cpp1941 PD->getPropertyAttributes(), getOrCreateType(PD->getType(), PUnit)); in CreateTypeDefinition()
2030 PD->getPropertyAttributes(), in CreateTypeDefinition()
DCGObjCGNU.cpp257 int attrs = property->getPropertyAttributes(); in PushPropertyAttributes()
/external/clang/include/clang/AST/
DDeclObjC.h792 PropertyAttributeKind getPropertyAttributes() const { in getPropertyAttributes() function
/external/clang/lib/Serialization/
DASTWriterDecl.cpp785 Record.push_back((unsigned)D->getPropertyAttributes()); in VisitObjCPropertyDecl()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp789 unsigned Attributes = PD->getPropertyAttributes(); in RewritePropertyImplDecl()
DRewriteModernObjC.cpp942 unsigned Attributes = PD->getPropertyAttributes(); in RewritePropertyImplDecl()