Searched refs:PropertyAttributes (Results 1 – 10 of 10) sorted by relevance
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 748 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 D | ObjCMemberwiseInitializer.cpp | 39 unsigned PropertyAttributes) { in getTypeStr() argument 46 if (PropertyAttributes & ObjCPropertyAttribute::kind_nullability) { in getTypeStr()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 844 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 D | DWARFASTParserClang.cpp | 2403 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 D | DebugInfo.h | 844 unsigned PropertyAttributes,
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | DIBuilder.h | 409 unsigned PropertyAttributes, DIType *Ty);
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | DIBuilder.cpp | 443 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty() argument 445 SetterName, PropertyAttributes, Ty); in createObjCProperty()
|
| H A D | DebugInfo.cpp | 1258 unsigned PropertyAttributes, in LLVMDIBuilderCreateObjCProperty() argument 1263 PropertyAttributes, unwrapDI<DIType>(Ty))); in LLVMDIBuilderCreateObjCProperty()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfUnit.cpp | 953 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE() local 955 PropertyAttributes); in constructTypeDIE()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 2321 return (PropertyAttributes & ObjCPropertyAttribute::kind_direct) && in isDirectProperty()
|