Home
last modified time | relevance | path

Searched refs:setPropertyAttributes (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaObjCProperty.cpp90 property->setPropertyAttributes(attr); in checkPropertyDeclWithOwnership()
654 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_getter); in CreatePropertyDecl()
657 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_setter); in CreatePropertyDecl()
663 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_retain); in CreatePropertyDecl()
666 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_strong); in CreatePropertyDecl()
669 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_weak); in CreatePropertyDecl()
672 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_copy); in CreatePropertyDecl()
678 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_assign); in CreatePropertyDecl()
684 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_atomic); in CreatePropertyDecl()
688 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_assign); in CreatePropertyDecl()
[all …]
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseObjc.cpp870 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in ParseObjCPropertyAttribute()
872 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_assign); in ParseObjCPropertyAttribute()
878 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_retain); in ParseObjCPropertyAttribute()
880 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_strong); in ParseObjCPropertyAttribute()
882 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_copy); in ParseObjCPropertyAttribute()
886 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_atomic); in ParseObjCPropertyAttribute()
888 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_weak); in ParseObjCPropertyAttribute()
921 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_setter); in ParseObjCPropertyAttribute()
930 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_getter); in ParseObjCPropertyAttribute()
965 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_class); in ParseObjCPropertyAttribute()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp7933 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_setter); in AddObjCClassProperty()
7944 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_getter); in AddObjCClassProperty()
7950 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in AddObjCClassProperty()
7952 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_readwrite); in AddObjCClassProperty()
7954 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_assign); in AddObjCClassProperty()
7956 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_retain); in AddObjCClassProperty()
7958 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_copy); in AddObjCClassProperty()
7960 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_nonatomic); in AddObjCClassProperty()
7962 property_decl->setPropertyAttributes( in AddObjCClassProperty()
7965 property_decl->setPropertyAttributes( in AddObjCClassProperty()
[all …]
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DDeclSpec.h860 void setPropertyAttributes(ObjCPropertyAttribute::Kind PRVal) { in setPropertyAttributes() function
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclObjC.h815 void setPropertyAttributes(ObjCPropertyAttribute::Kind PRVal) { in setPropertyAttributes() function
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderDecl.cpp1391 D->setPropertyAttributes((ObjCPropertyAttribute::Kind)Record.readInt()); in VisitObjCPropertyDecl()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTImporter.cpp5375 ToProperty->setPropertyAttributes(D->getPropertyAttributes()); in VisitObjCPropertyDecl()