Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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 …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp915 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in ParseObjCPropertyAttribute()
917 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_assign); in ParseObjCPropertyAttribute()
923 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_retain); in ParseObjCPropertyAttribute()
925 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_strong); in ParseObjCPropertyAttribute()
927 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_copy); in ParseObjCPropertyAttribute()
931 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_atomic); in ParseObjCPropertyAttribute()
933 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_weak); in ParseObjCPropertyAttribute()
966 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_setter); in ParseObjCPropertyAttribute()
975 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_getter); in ParseObjCPropertyAttribute()
1010 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_class); in ParseObjCPropertyAttribute()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp7884 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_setter); in AddObjCClassProperty()
7895 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_getter); in AddObjCClassProperty()
7901 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in AddObjCClassProperty()
7903 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_readwrite); in AddObjCClassProperty()
7905 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_assign); in AddObjCClassProperty()
7907 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_retain); in AddObjCClassProperty()
7909 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_copy); in AddObjCClassProperty()
7911 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_nonatomic); in AddObjCClassProperty()
7913 property_decl->setPropertyAttributes( in AddObjCClassProperty()
7916 property_decl->setPropertyAttributes( in AddObjCClassProperty()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h815 void setPropertyAttributes(ObjCPropertyAttribute::Kind PRVal) { in setPropertyAttributes() function
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h898 void setPropertyAttributes(ObjCPropertyAttribute::Kind PRVal) { in setPropertyAttributes() function
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1481 D->setPropertyAttributes((ObjCPropertyAttribute::Kind)Record.readInt()); in VisitObjCPropertyDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp5719 ToProperty->setPropertyAttributes(D->getPropertyAttributes()); in VisitObjCPropertyDecl()