Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h745 unsigned PropertyAttributes : NumObjCPropertyAttrsBits; variable
777 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), in ObjCPropertyDecl()
813 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes()
817 PropertyAttributes |= PRVal; in setPropertyAttributes()
821 PropertyAttributes = PRVal; in overwritePropertyAttributes()
841 return (PropertyAttributes & ObjCPropertyAttribute::kind_atomic); in isAtomic()
853 return PropertyAttributes & ObjCPropertyAttribute::kind_class; in isClassProperty()
871 if (PropertyAttributes & ObjCPropertyAttribute::kind_strong) in getSetterKind()
873 if (PropertyAttributes & ObjCPropertyAttribute::kind_retain) in getSetterKind()
875 if (PropertyAttributes & ObjCPropertyAttribute::kind_copy) in getSetterKind()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h843 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), Nullability(0), in ObjCDeclSpec()
857 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes()
860 PropertyAttributes = in setPropertyAttributes()
861 (ObjCPropertyAttribute::Kind)(PropertyAttributes | PRVal); in setPropertyAttributes()
912 unsigned PropertyAttributes : NumObjCPropertyAttrsBits; variable
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DDIBuilder.h370 unsigned PropertyAttributes, DIType *Ty);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h830 unsigned PropertyAttributes,
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DDIBuilder.cpp414 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty() argument
416 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1253 unsigned PropertyAttributes, in LLVMDIBuilderCreateObjCProperty() argument
1258 PropertyAttributes, unwrapDI<DIType>(Ty))); in LLVMDIBuilderCreateObjCProperty()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp914 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE() local
916 PropertyAttributes); in constructTypeDIE()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp2300 return (PropertyAttributes & ObjCPropertyAttribute::kind_direct) && in isDirectProperty()