Searched refs:PropertyAttributes (Results 1 – 10 of 10) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | ObjCPropertyAttributeOrderFixer.cpp | 53 SmallVector<ObjCPropertyEntry> PropertyAttributes; in sortPropertyAttributes() local 100 PropertyAttributes.push_back({Attribute, Value}); in sortPropertyAttributes() 105 if (PropertyAttributes.size() < 2) in sortPropertyAttributes() 134 const auto &PropertyEntry = PropertyAttributes[Indices[Ordinal]]; in sortPropertyAttributes()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 745 unsigned PropertyAttributes : NumObjCPropertyAttrsBits; 779 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), in ObjCPropertyDecl() 813 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes() 817 PropertyAttributes |= PRVal; in setPropertyAttributes() 821 PropertyAttributes = PRVal; in overwritePropertyAttributes() 836 return (PropertyAttributes & ObjCPropertyAttribute::kind_readonly); in isReadOnly() 841 return (PropertyAttributes & ObjCPropertyAttribute::kind_atomic); in isAtomic() 846 return (PropertyAttributes & (ObjCPropertyAttribute::kind_retain | in isRetaining() 853 return PropertyAttributes & ObjCPropertyAttribute::kind_class; in isClassProperty() 871 if (PropertyAttributes & ObjCPropertyAttribute::kind_strong) in getSetterKind() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 920 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), Nullability(0), in ObjCDeclSpec() 934 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes() 937 PropertyAttributes = in setPropertyAttributes() 938 (ObjCPropertyAttribute::Kind)(PropertyAttributes | PRVal); in setPropertyAttributes() 989 unsigned PropertyAttributes : NumObjCPropertyAttrsBits; variable
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 2550 struct PropertyAttributes { struct 2551 explicit PropertyAttributes(const DWARFDIE &die); 2745 PropertyAttributes::PropertyAttributes(const DWARFDIE &die) { in PropertyAttributes() function in PropertyAttributes 2817 const PropertyAttributes propAttrs(die); in ParseObjCProperty()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | DebugInfo.h | 931 unsigned PropertyAttributes, LLVMMetadataRef Ty);
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DIBuilder.cpp | 528 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty() argument 530 SetterName, PropertyAttributes, Ty); in createObjCProperty()
|
| H A D | DebugInfo.cpp | 1504 unsigned PropertyAttributes, in LLVMDIBuilderCreateObjCProperty() argument 1509 PropertyAttributes, unwrapDI<DIType>(Ty))); in LLVMDIBuilderCreateObjCProperty()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DIBuilder.h | 520 unsigned PropertyAttributes, DIType *Ty);
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfUnit.cpp | 1111 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE() local 1113 PropertyAttributes); in constructTypeDIE()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 2373 return (PropertyAttributes & ObjCPropertyAttribute::kind_direct) && in isDirectProperty()
|