Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclObjC.h748 unsigned PropertyAttributes : NumObjCPropertyAttrsBits; variable
780 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), in ObjCPropertyDecl()
812 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes()
816 PropertyAttributes |= PRVal; in setPropertyAttributes()
820 PropertyAttributes = PRVal; in overwritePropertyAttributes()
840 return (PropertyAttributes & ObjCPropertyAttribute::kind_atomic); in isAtomic()
852 return PropertyAttributes & ObjCPropertyAttribute::kind_class; in isClassProperty()
870 if (PropertyAttributes & ObjCPropertyAttribute::kind_strong) in getSetterKind()
872 if (PropertyAttributes & ObjCPropertyAttribute::kind_retain) in getSetterKind()
874 if (PropertyAttributes & ObjCPropertyAttribute::kind_copy) in getSetterKind()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/
H A DObjCMemberwiseInitializer.cpp39 unsigned PropertyAttributes) { in getTypeStr() argument
46 if (PropertyAttributes & ObjCPropertyAttribute::kind_nullability) { in getTypeStr()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DDeclSpec.h844 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), Nullability(0), in ObjCDeclSpec()
858 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes()
861 PropertyAttributes = in setPropertyAttributes()
862 (ObjCPropertyAttribute::Kind)(PropertyAttributes | PRVal); in setPropertyAttributes()
913 unsigned PropertyAttributes : NumObjCPropertyAttrsBits; variable
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2403 struct PropertyAttributes { struct
2404 explicit PropertyAttributes(const DWARFDIE &die);
2501 PropertyAttributes::PropertyAttributes(const DWARFDIE &die) { in PropertyAttributes() function in PropertyAttributes
2568 const PropertyAttributes propAttrs(die); in ParseObjCProperty()
/llvm-project-15.0.7/llvm/include/llvm-c/
H A DDebugInfo.h844 unsigned PropertyAttributes,
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DDIBuilder.h409 unsigned PropertyAttributes, DIType *Ty);
/llvm-project-15.0.7/llvm/lib/IR/
H A DDIBuilder.cpp443 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty() argument
445 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1258 unsigned PropertyAttributes, in LLVMDIBuilderCreateObjCProperty() argument
1263 PropertyAttributes, unwrapDI<DIType>(Ty))); in LLVMDIBuilderCreateObjCProperty()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp953 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE() local
955 PropertyAttributes); in constructTypeDIE()
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclObjC.cpp2321 return (PropertyAttributes & ObjCPropertyAttribute::kind_direct) && in isDirectProperty()