Home
last modified time | relevance | path

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

12

/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()
/external/llvm-project/clang/lib/AST/
DDeclPrinter.cpp1449 if (PDecl->getPropertyAttributes() != ObjCPropertyAttribute::kind_noattr) { in VisitObjCPropertyDecl()
1452 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_class) { in VisitObjCPropertyDecl()
1457 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_direct) { in VisitObjCPropertyDecl()
1462 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1467 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic) { in VisitObjCPropertyDecl()
1472 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_assign) { in VisitObjCPropertyDecl()
1476 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain) { in VisitObjCPropertyDecl()
1481 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_strong) { in VisitObjCPropertyDecl()
1485 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) { in VisitObjCPropertyDecl()
1489 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) { in VisitObjCPropertyDecl()
[all …]
DASTContext.cpp7055 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) in getObjCEncodingForPropertyDecl()
7057 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain) in getObjCEncodingForPropertyDecl()
7059 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in getObjCEncodingForPropertyDecl()
7075 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_nonatomic) in getObjCEncodingForPropertyDecl()
7078 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_getter) { in getObjCEncodingForPropertyDecl()
7083 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_setter) { in getObjCEncodingForPropertyDecl()
DJSONNodeDumper.cpp1015 ObjCPropertyAttribute::Kind Attrs = D->getPropertyAttributes(); in VisitObjCPropertyDecl()
DDeclObjC.cpp150 if (P->getPropertyAttributes() & in HasUserDeclaredSetterMethod()
DTextNodeDumper.cpp2231 ObjCPropertyAttribute::Kind Attrs = 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()
/external/llvm-project/clang/lib/Sema/
DSemaObjCProperty.cpp68 ObjCPropertyAttribute::Kind propertyKind = property->getPropertyAttributes(); in checkPropertyDeclWithOwnership()
182 unsigned Attributes = ODS.getPropertyAttributes(); in ActOnProperty()
204 ODS.getPropertyAttributes(), in ActOnProperty()
215 ODS.getPropertyAttributes(), T, TSI, in ActOnProperty()
348 bool OldIsAtomic = (OldProperty->getPropertyAttributes() & in checkAtomicPropertyMismatch()
350 bool NewIsAtomic = (NewProperty->getPropertyAttributes() & in checkAtomicPropertyMismatch()
358 auto Attrs = Property->getPropertyAttributes(); in checkAtomicPropertyMismatch()
380 unsigned Attrs = NewProperty->getPropertyAttributes(); in checkAtomicPropertyMismatch()
493 = getOwnershipRule(PIDecl->getPropertyAttributes()); in HandlePropertyInClassExtension()
738 getImpliedARCOwnership(property->getPropertyAttributes(), in checkARCPropertyImpl()
[all …]
DSemaPseudoObject.cpp585 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in isWeakProperty()
/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp123 PD->getPropertyAttributes(); in TraverseObjCMethodDecl()
DObjCMT.cpp623 if ((ClassProperty->getPropertyAttributes() in ClassImplementsAllMethodsAndProperties()
624 != Property->getPropertyAttributes()) || in ClassImplementsAllMethodsAndProperties()
/external/llvm-project/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp121 ObjCPropertyAttribute::Kind AttrKind = PD->getPropertyAttributes(); in TraverseObjCMethodDecl()
DObjCMT.cpp626 if ((ClassProperty->getPropertyAttributes() in ClassImplementsAllMethodsAndProperties()
627 != Property->getPropertyAttributes()) || in ClassImplementsAllMethodsAndProperties()
/external/llvm-project/clang/include/clang/Sema/
DDeclSpec.h856 ObjCPropertyAttribute::Kind getPropertyAttributes() const { in getPropertyAttributes() function
867 (getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability)) && in getNullability()
875 (getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability)) && in getNullabilityLoc()
883 (getPropertyAttributes() & ObjCPropertyAttribute::kind_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/llvm-project/clang/lib/Parse/
DParseObjc.cpp743 if (OCDS.getPropertyAttributes() & in ParseObjCInterfaceDeclList()
927 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
934 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
941 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
948 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
/external/llvm-project/clang/lib/Analysis/
DBodyFarm.cpp769 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in createObjCPropertyGetter()
/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()
/external/clang/include/clang/AST/
DDeclObjC.h792 PropertyAttributeKind getPropertyAttributes() const { in getPropertyAttributes() function
/external/llvm-project/clang/include/clang/AST/
DDeclObjC.h832 ObjCPropertyAttribute::Kind getPropertyAttributes() const { in getPropertyAttributes() function
/external/llvm-project/clang/lib/CodeGen/
DCGObjC.cpp3619 if ((!(PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic))) in GenerateObjCAtomicSetterCopyHelperFunction()
3703 if ((!(PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic))) in GenerateObjCAtomicGetterCopyHelperFunction()

12