Home
last modified time | relevance | path

Searched refs:TypeAndOrName (Results 1 – 17 of 17) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.h56 TypeAndOrName &class_type_or_name,
60 TypeAndOrName FixUpDynamicType(const TypeAndOrName &type_and_or_name,
95 typedef std::map<lldb_private::Address, TypeAndOrName> DynamicTypeCache;
107 TypeAndOrName GetTypeInfo(ValueObject &in_value,
110 TypeAndOrName GetDynamicTypeInfo(const lldb_private::Address &vtable_addr);
113 const TypeAndOrName &type_info);
H A DItaniumABILanguageRuntime.cpp57 TypeAndOrName ItaniumABILanguageRuntime::GetTypeInfo( in GetTypeInfo()
61 TypeAndOrName type_info = GetDynamicTypeInfo(vtable_info.addr); in GetTypeInfo()
114 return TypeAndOrName(); in GetTypeInfo()
181 return TypeAndOrName(); in GetTypeInfo()
290 TypeAndOrName &class_type_or_name, Address &dynamic_address, in GetDynamicTypeAndAddress()
367 TypeAndOrName ItaniumABILanguageRuntime::FixUpDynamicType( in FixUpDynamicType()
368 const TypeAndOrName &type_and_or_name, ValueObject &static_value) { in FixUpDynamicType()
372 TypeAndOrName ret(type_and_or_name); in FixUpDynamicType()
692 TypeAndOrName ItaniumABILanguageRuntime::GetDynamicTypeInfo( in GetDynamicTypeInfo()
697 return TypeAndOrName(); in GetDynamicTypeInfo()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp839 TypeAndOrName::TypeAndOrName(TypeSP &in_type_sp) { in TypeAndOrName() function in TypeAndOrName
846 TypeAndOrName::TypeAndOrName(const char *in_type_str) in TypeAndOrName() function in TypeAndOrName
849 TypeAndOrName::TypeAndOrName(ConstString &in_type_const_string) in TypeAndOrName() function in TypeAndOrName
852 bool TypeAndOrName::operator==(const TypeAndOrName &other) const { in operator ==()
860 bool TypeAndOrName::operator!=(const TypeAndOrName &other) const { in operator !=()
864 ConstString TypeAndOrName::GetName() const { in GetName()
872 void TypeAndOrName::SetName(ConstString type_name) { in SetName()
884 void TypeAndOrName::SetTypeSP(lldb::TypeSP type_sp) { in SetTypeSP()
898 bool TypeAndOrName::IsEmpty() const { in IsEmpty()
902 void TypeAndOrName::Clear() { in Clear()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/
H A DGNUstepObjCRuntime.h69 TypeAndOrName &class_type_or_name,
73 TypeAndOrName FixUpDynamicType(const TypeAndOrName &type_and_or_name,
H A DGNUstepObjCRuntime.cpp127 TypeAndOrName &class_type_or_name, Address &address, in GetDynamicTypeAndAddress()
132 TypeAndOrName
133 GNUstepObjCRuntime::FixUpDynamicType(const TypeAndOrName &type_and_or_name, in FixUpDynamicType()
138 TypeAndOrName ret(type_and_or_name); in FixUpDynamicType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.h56 TypeAndOrName &class_type_or_name,
60 TypeAndOrName FixUpDynamicType(const TypeAndOrName &type_and_or_name,
H A DAppleObjCRuntime.cpp272 TypeAndOrName &class_type_or_name, Address &address, in GetDynamicTypeAndAddress()
277 TypeAndOrName
278 AppleObjCRuntime::FixUpDynamicType(const TypeAndOrName &type_and_or_name, in FixUpDynamicType()
283 TypeAndOrName ret(type_and_or_name); in FixUpDynamicType()
H A DAppleObjCRuntimeV1.h102 TypeAndOrName &class_type_or_name,
H A DAppleObjCRuntimeV1.cpp50 TypeAndOrName &class_type_or_name, Address &address, in GetDynamicTypeAndAddress()
H A DAppleObjCRuntimeV2.h55 TypeAndOrName &class_type_or_name,
H A DAppleObjCRuntimeV2.cpp772 TypeAndOrName &class_type_or_name, Address &address, in GetDynamicTypeAndAddress()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h712 class TypeAndOrName {
714 TypeAndOrName() = default;
715 TypeAndOrName(lldb::TypeSP &type_sp);
716 TypeAndOrName(const CompilerType &compiler_type);
717 TypeAndOrName(const char *type_str);
718 TypeAndOrName(ConstString &type_const_string);
720 bool operator==(const TypeAndOrName &other) const;
722 bool operator!=(const TypeAndOrName &other) const;
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguageRuntime.h110 TypeAndOrName &class_type_or_name,
131 virtual TypeAndOrName FixUpDynamicType(const TypeAndOrName &type_and_or_name,
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectDynamicValue.h112 TypeAndOrName m_dynamic_type_info; // We can have a type_sp or just a name
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h267 TypeAndOrName LookupInClassNameCache(lldb::addr_t class_addr);
273 const TypeAndOrName &class_or_type_name);
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DValueObjectDynamicValue.cpp141 TypeAndOrName class_type_or_name; in UpdateValue()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h251 class TypeAndOrName; variable