Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DObjCPropertyAttributeOrderFixer.cpp53 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 DDeclObjC.h745 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 DDeclSpec.h920 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 DDWARFASTParserClang.cpp2550 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 DDebugInfo.h931 unsigned PropertyAttributes, LLVMMetadataRef Ty);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDIBuilder.cpp528 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty() argument
530 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1504 unsigned PropertyAttributes, in LLVMDIBuilderCreateObjCProperty() argument
1509 PropertyAttributes, unwrapDI<DIType>(Ty))); in LLVMDIBuilderCreateObjCProperty()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDIBuilder.h520 unsigned PropertyAttributes, DIType *Ty);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp1111 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE() local
1113 PropertyAttributes); in constructTypeDIE()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp2373 return (PropertyAttributes & ObjCPropertyAttribute::kind_direct) && in isDirectProperty()