Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp91 property->setPropertyAttributes(attr); in checkPropertyDeclWithOwnership()
636 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in CreatePropertyDecl()
639 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_getter); in CreatePropertyDecl()
642 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_setter); in CreatePropertyDecl()
645 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_readwrite); in CreatePropertyDecl()
648 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_retain); in CreatePropertyDecl()
651 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_strong); in CreatePropertyDecl()
654 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_weak); in CreatePropertyDecl()
657 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_copy); in CreatePropertyDecl()
660 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_unsafe_unretained); in CreatePropertyDecl()
[all …]
H A DSemaAPINotes.cpp106 Property->setPropertyAttributes( in applyNullability()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp918 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in ParseObjCPropertyAttribute()
920 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_assign); in ParseObjCPropertyAttribute()
922 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_unsafe_unretained); in ParseObjCPropertyAttribute()
924 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_readwrite); in ParseObjCPropertyAttribute()
926 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_retain); in ParseObjCPropertyAttribute()
928 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_strong); in ParseObjCPropertyAttribute()
930 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_copy); in ParseObjCPropertyAttribute()
932 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_nonatomic); in ParseObjCPropertyAttribute()
934 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_atomic); in ParseObjCPropertyAttribute()
936 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_weak); in ParseObjCPropertyAttribute()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp8044 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_setter); in AddObjCClassProperty()
8056 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_getter); in AddObjCClassProperty()
8062 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in AddObjCClassProperty()
8064 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_readwrite); in AddObjCClassProperty()
8066 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_assign); in AddObjCClassProperty()
8068 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_retain); in AddObjCClassProperty()
8070 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_copy); in AddObjCClassProperty()
8072 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_nonatomic); in AddObjCClassProperty()
8074 property_decl->setPropertyAttributes( in AddObjCClassProperty()
8077 property_decl->setPropertyAttributes( in AddObjCClassProperty()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h934 void setPropertyAttributes(ObjCPropertyAttribute::Kind PRVal) { in setPropertyAttributes() function
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h818 void setPropertyAttributes(ObjCPropertyAttribute::Kind PRVal) { in setPropertyAttributes() function
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1473 D->setPropertyAttributes((ObjCPropertyAttribute::Kind)Record.readInt()); in VisitObjCPropertyDecl()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp5803 ToProperty->setPropertyAttributes(D->getPropertyAttributes()); in VisitObjCPropertyDecl()