Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DObjCPropertyAttributeOrderFixer.cpp55 SmallVector<ObjCPropertyEntry> PropertyAttributes; in sortPropertyAttributes() local
105 PropertyAttributes.push_back({Attribute, Value}); in sortPropertyAttributes()
110 if (PropertyAttributes.size() < 2) in sortPropertyAttributes()
139 const auto &PropertyEntry = PropertyAttributes[Indices[Ordinal]]; in sortPropertyAttributes()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h746 unsigned PropertyAttributes : NumObjCPropertyAttrsBits;
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 …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h882 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), Nullability(0), in ObjCDeclSpec()
896 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes()
899 PropertyAttributes = in setPropertyAttributes()
900 (ObjCPropertyAttribute::Kind)(PropertyAttributes | PRVal); in setPropertyAttributes()
951 unsigned PropertyAttributes : NumObjCPropertyAttrsBits; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2514 struct PropertyAttributes { struct
2515 explicit PropertyAttributes(const DWARFDIE &die);
2709 PropertyAttributes::PropertyAttributes(const DWARFDIE &die) { in PropertyAttributes() function in PropertyAttributes
2781 const PropertyAttributes propAttrs(die); in ParseObjCProperty()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h855 unsigned PropertyAttributes,
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DDIBuilder.h416 unsigned PropertyAttributes, DIType *Ty);
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DDIBuilder.cpp429 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty() argument
431 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1405 unsigned PropertyAttributes, in LLVMDIBuilderCreateObjCProperty() argument
1410 PropertyAttributes, unwrapDI<DIType>(Ty))); in LLVMDIBuilderCreateObjCProperty()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp955 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE() local
957 PropertyAttributes); in constructTypeDIE()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp2393 return (PropertyAttributes & ObjCPropertyAttribute::kind_direct) && in isDirectProperty()