Home
last modified time | relevance | path

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

12

/src/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp1601 if (PDecl->getPropertyAttributes() != ObjCPropertyAttribute::kind_noattr) { in VisitObjCPropertyDecl()
1604 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_class) { in VisitObjCPropertyDecl()
1609 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_direct) { in VisitObjCPropertyDecl()
1614 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1619 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic) { in VisitObjCPropertyDecl()
1624 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_assign) { in VisitObjCPropertyDecl()
1628 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain) { in VisitObjCPropertyDecl()
1633 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_strong) { in VisitObjCPropertyDecl()
1637 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) { in VisitObjCPropertyDecl()
1641 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) { in VisitObjCPropertyDecl()
[all …]
H A DODRDiagsEmitter.cpp553 unsigned FirstAttrs = (unsigned)FirstProp->getPropertyAttributes(); in diagnoseSubMismatchObjCProperty()
554 unsigned SecondAttrs = (unsigned)SecondProp->getPropertyAttributes(); in diagnoseSubMismatchObjCProperty()
H A DODRHash.cpp363 ID.AddInteger(D->getPropertyAttributes()); in VisitObjCPropertyDecl()
H A DDeclObjC.cpp151 if (P->getPropertyAttributes() & in HasUserDeclaredSetterMethod()
H A DJSONNodeDumper.cpp1191 ObjCPropertyAttribute::Kind Attrs = D->getPropertyAttributes(); in VisitObjCPropertyDecl()
H A DASTContext.cpp8343 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) in getObjCEncodingForPropertyDecl()
8345 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain) in getObjCEncodingForPropertyDecl()
8347 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in getObjCEncodingForPropertyDecl()
8363 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_nonatomic) in getObjCEncodingForPropertyDecl()
8366 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_getter) { in getObjCEncodingForPropertyDecl()
8371 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_setter) { in getObjCEncodingForPropertyDecl()
H A DTextNodeDumper.cpp2808 ObjCPropertyAttribute::Kind Attrs = D->getPropertyAttributes(); in VisitObjCPropertyDecl()
H A DASTImporter.cpp5803 ToProperty->setPropertyAttributes(D->getPropertyAttributes()); in VisitObjCPropertyDecl()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp69 ObjCPropertyAttribute::Kind propertyKind = property->getPropertyAttributes(); in checkPropertyDeclWithOwnership()
180 unsigned Attributes = ODS.getPropertyAttributes(); in ActOnProperty()
202 ODS.getPropertyAttributes(), in ActOnProperty()
213 ODS.getPropertyAttributes(), T, TSI, in ActOnProperty()
341 bool OldIsAtomic = (OldProperty->getPropertyAttributes() & in checkAtomicPropertyMismatch()
343 bool NewIsAtomic = (NewProperty->getPropertyAttributes() & in checkAtomicPropertyMismatch()
351 auto Attrs = Property->getPropertyAttributes(); in checkAtomicPropertyMismatch()
373 unsigned Attrs = NewProperty->getPropertyAttributes(); in checkAtomicPropertyMismatch()
477 = getOwnershipRule(PIDecl->getPropertyAttributes()); in HandlePropertyInClassExtension()
716 getImpliedARCOwnership(property->getPropertyAttributes(), in checkARCPropertyImpl()
[all …]
H A DSemaPseudoObject.cpp593 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in isWeakProperty()
H A DSemaExprObjC.cpp2093 if (!(PDecl->getPropertyAttributes() & in HandleExprPropertyRefExpr()
3393 Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak; in BuildInstanceMessage()
H A DSemaCodeComplete.cpp7505 unsigned Attributes = ODS.getPropertyAttributes(); in CodeCompleteObjCPropertyFlags()
/src/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp121 ObjCPropertyAttribute::Kind AttrKind = PD->getPropertyAttributes(); in TraverseObjCMethodDecl()
H A DObjCMT.cpp621 if ((ClassProperty->getPropertyAttributes() != in ClassImplementsAllMethodsAndProperties()
622 Property->getPropertyAttributes()) || in ClassImplementsAllMethodsAndProperties()
/src/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h931 ObjCPropertyAttribute::Kind getPropertyAttributes() const { in getPropertyAttributes() function
942 (getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability)) && in getNullability()
950 (getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability)) && in getNullabilityLoc()
958 (getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability)) && in setNullability()
/src/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp797 if (OCDS.getPropertyAttributes() & in ParseObjCInterfaceDeclList()
984 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
991 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
998 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
1005 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
/src/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DExtractAPIVisitor.h1397 if (Property->getPropertyAttributes() & in recordObjCProperties()
1401 if (Property->getPropertyAttributes() & ObjCPropertyAttribute::kind_class) in recordObjCProperties()
/src/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp816 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in createObjCPropertyGetter()
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp3690 if ((!(PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic))) in GenerateObjCAtomicSetterCopyHelperFunction()
3790 if ((!(PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic))) in GenerateObjCAtomicGetterCopyHelperFunction()
H A DCGDebugInfo.cpp3133 PD->getPropertyAttributes(), getOrCreateType(PD->getType(), PUnit)); in CreateTypeDefinition()
3237 PD->getPropertyAttributes(), in CreateTypeDefinition()
H A DCGObjCGNU.cpp248 int attrs = property->getPropertyAttributes(); in PushPropertyAttributes()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h814 ObjCPropertyAttribute::Kind getPropertyAttributes() const { in getPropertyAttributes() function
/src/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp977 Record.push_back((unsigned)D->getPropertyAttributes()); in VisitObjCPropertyDecl()
/src/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp791 unsigned Attributes = PD->getPropertyAttributes(); in RewritePropertyImplDecl()
H A DRewriteModernObjC.cpp943 unsigned Attributes = PD->getPropertyAttributes(); in RewritePropertyImplDecl()

12