Searched refs:PropertyAttributes (Results 1 – 10 of 10) sorted by relevance
| /src/contrib/llvm-project/clang/lib/Format/ |
| H A D | ObjCPropertyAttributeOrderFixer.cpp | 55 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 D | DeclObjC.h | 747 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 D | DeclSpec.h | 918 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 D | DWARFASTParserClang.cpp | 2444 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 D | DebugInfo.h | 868 unsigned PropertyAttributes,
|
| /src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DIBuilder.h | 450 unsigned PropertyAttributes, DIType *Ty);
|
| /src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DIBuilder.cpp | 456 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty() argument 458 SetterName, PropertyAttributes, Ty); in createObjCProperty()
|
| H A D | DebugInfo.cpp | 1410 unsigned PropertyAttributes, in LLVMDIBuilderCreateObjCProperty() argument 1415 PropertyAttributes, unwrapDI<DIType>(Ty))); in LLVMDIBuilderCreateObjCProperty()
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfUnit.cpp | 988 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE() local 990 PropertyAttributes); in constructTypeDIE()
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 2376 return (PropertyAttributes & ObjCPropertyAttribute::kind_direct) && in isDirectProperty()
|