Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclObjC.h745 unsigned PropertyAttributes : NumObjCPropertyAttrsBits; variable
777 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), in ObjCPropertyDecl()
809 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes()
813 PropertyAttributes |= PRVal; in setPropertyAttributes()
817 PropertyAttributes = PRVal; in overwritePropertyAttributes()
832 return (PropertyAttributes & ObjCPropertyAttribute::kind_readonly); in isReadOnly()
837 return (PropertyAttributes & ObjCPropertyAttribute::kind_atomic); in isAtomic()
842 return (PropertyAttributes & (ObjCPropertyAttribute::kind_retain | in isRetaining()
849 return PropertyAttributes & ObjCPropertyAttribute::kind_class; in isClassProperty()
867 if (PropertyAttributes & ObjCPropertyAttribute::kind_strong) in getSetterKind()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DDeclSpec.h866 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), Nullability(0), in ObjCDeclSpec()
880 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes()
883 PropertyAttributes = in setPropertyAttributes()
884 (ObjCPropertyAttribute::Kind)(PropertyAttributes | PRVal); in setPropertyAttributes()
935 unsigned PropertyAttributes : NumObjCPropertyAttrsBits; variable
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2477 struct PropertyAttributes { struct
2478 explicit PropertyAttributes(const DWARFDIE &die);
2575 PropertyAttributes::PropertyAttributes(const DWARFDIE &die) { in PropertyAttributes() function in PropertyAttributes
2642 const PropertyAttributes propAttrs(die); in ParseObjCProperty()
/openbsd-src/gnu/llvm/llvm/include/llvm-c/
H A DDebugInfo.h854 unsigned PropertyAttributes,
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DDIBuilder.h412 unsigned PropertyAttributes, DIType *Ty);
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DDIBuilder.cpp446 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty() argument
448 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1313 unsigned PropertyAttributes, in LLVMDIBuilderCreateObjCProperty() argument
1318 PropertyAttributes, unwrapDI<DIType>(Ty))); in LLVMDIBuilderCreateObjCProperty()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp954 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE() local
956 PropertyAttributes); in constructTypeDIE()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclObjC.cpp2393 return (PropertyAttributes & ObjCPropertyAttribute::kind_direct) && in isDirectProperty()