Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/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 …]
/netbsd/external/apache2/llvm/dist/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
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DDIBuilder.h368 unsigned PropertyAttributes, DIType *Ty);
/netbsd/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DDebugInfo.h830 unsigned PropertyAttributes,
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DDIBuilder.cpp409 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty() argument
411 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1217 unsigned PropertyAttributes, in LLVMDIBuilderCreateObjCProperty() argument
1222 PropertyAttributes, unwrapDI<DIType>(Ty))); in LLVMDIBuilderCreateObjCProperty()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp913 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE() local
915 PropertyAttributes); in constructTypeDIE()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclObjC.cpp2300 return (PropertyAttributes & ObjCPropertyAttribute::kind_direct) && in isDirectProperty()