Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaObjCProperty.cpp90 property->setPropertyAttributes(attr); in checkPropertyDeclWithOwnership()
651 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in CreatePropertyDecl()
654 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_getter); in CreatePropertyDecl()
657 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_setter); in CreatePropertyDecl()
660 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_readwrite); 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()
675 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_unsafe_unretained); in CreatePropertyDecl()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseObjc.cpp902 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in ParseObjCPropertyAttribute()
904 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_assign); in ParseObjCPropertyAttribute()
906 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_unsafe_unretained); in ParseObjCPropertyAttribute()
908 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_readwrite); in ParseObjCPropertyAttribute()
910 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_retain); in ParseObjCPropertyAttribute()
912 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_strong); in ParseObjCPropertyAttribute()
914 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_copy); in ParseObjCPropertyAttribute()
916 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_nonatomic); in ParseObjCPropertyAttribute()
918 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_atomic); in ParseObjCPropertyAttribute()
920 DS.setPropertyAttributes(ObjCPropertyAttribute::kind_weak); in ParseObjCPropertyAttribute()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp8009 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_setter); in AddObjCClassProperty()
8020 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_getter); in AddObjCClassProperty()
8026 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_readonly); in AddObjCClassProperty()
8028 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_readwrite); in AddObjCClassProperty()
8030 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_assign); in AddObjCClassProperty()
8032 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_retain); in AddObjCClassProperty()
8034 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_copy); in AddObjCClassProperty()
8036 property_decl->setPropertyAttributes(ObjCPropertyAttribute::kind_nonatomic); in AddObjCClassProperty()
8038 property_decl->setPropertyAttributes( in AddObjCClassProperty()
8041 property_decl->setPropertyAttributes( in AddObjCClassProperty()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclObjC.h812 void setPropertyAttributes(ObjCPropertyAttribute::Kind PRVal) { in setPropertyAttributes() function
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DDeclSpec.h882 void setPropertyAttributes(ObjCPropertyAttribute::Kind PRVal) { in setPropertyAttributes() function
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderDecl.cpp1439 D->setPropertyAttributes((ObjCPropertyAttribute::Kind)Record.readInt()); in VisitObjCPropertyDecl()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTImporter.cpp5486 ToProperty->setPropertyAttributes(D->getPropertyAttributes()); in VisitObjCPropertyDecl()