Home
last modified time | relevance | path

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

/src/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()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h747 unsigned PropertyAttributes : NumObjCPropertyAttrsBits;
781 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), in ObjCPropertyDecl()
815 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes()
819 PropertyAttributes |= PRVal; in setPropertyAttributes()
823 PropertyAttributes = PRVal; in overwritePropertyAttributes()
838 return (PropertyAttributes & ObjCPropertyAttribute::kind_readonly); in isReadOnly()
843 return (PropertyAttributes & ObjCPropertyAttribute::kind_atomic); in isAtomic()
848 return (PropertyAttributes & (ObjCPropertyAttribute::kind_retain | in isRetaining()
855 return PropertyAttributes & ObjCPropertyAttribute::kind_class; in isClassProperty()
873 if (PropertyAttributes & ObjCPropertyAttribute::kind_strong) in getSetterKind()
[all …]
/src/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h918 PropertyAttributes(ObjCPropertyAttribute::kind_noattr), Nullability(0), in ObjCDeclSpec()
932 return ObjCPropertyAttribute::Kind(PropertyAttributes); in getPropertyAttributes()
935 PropertyAttributes = in setPropertyAttributes()
936 (ObjCPropertyAttribute::Kind)(PropertyAttributes | PRVal); in setPropertyAttributes()
987 unsigned PropertyAttributes : NumObjCPropertyAttrsBits; variable
/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2444 struct PropertyAttributes { struct
2445 explicit PropertyAttributes(const DWARFDIE &die);
2639 PropertyAttributes::PropertyAttributes(const DWARFDIE &die) { in PropertyAttributes() function in PropertyAttributes
2711 const PropertyAttributes propAttrs(die); in ParseObjCProperty()
/src/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h868 unsigned PropertyAttributes,
/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DDIBuilder.h450 unsigned PropertyAttributes, DIType *Ty);
/src/contrib/llvm-project/llvm/lib/IR/
H A DDIBuilder.cpp456 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty() argument
458 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1410 unsigned PropertyAttributes, in LLVMDIBuilderCreateObjCProperty() argument
1415 PropertyAttributes, unwrapDI<DIType>(Ty))); in LLVMDIBuilderCreateObjCProperty()
/src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp988 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE() local
990 PropertyAttributes); in constructTypeDIE()
/src/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp2376 return (PropertyAttributes & ObjCPropertyAttribute::kind_direct) && in isDirectProperty()