| /src/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Type.cpp | 241 m_type_list.Append(TypeImplSP(new TypeImpl(type))); in operator ()() 919 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp) in TypeImpl() function in TypeImpl 924 TypeImpl::TypeImpl(const CompilerType &compiler_type) in TypeImpl() function in TypeImpl 929 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic) in TypeImpl() function in TypeImpl 934 TypeImpl::TypeImpl(const CompilerType &static_type, in TypeImpl() function in TypeImpl 940 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType() 951 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType() 956 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in SetType() 962 void TypeImpl::SetType(const CompilerType &compiler_type, in SetType() 969 bool TypeImpl::CheckModule(lldb::ModuleSP &module_sp) const { in CheckModule() [all …]
|
| /src/contrib/llvm-project/lldb/source/API/ |
| H A D | SBType.cpp | 38 SBType::SBType(const CompilerType &type) : m_opaque_sp(new TypeImpl(type)) {} in SBType() 41 : m_opaque_sp(new TypeImpl(type_sp)) {} in SBType() 99 TypeImpl &SBType::ref() { in ref() 101 m_opaque_sp = std::make_shared<TypeImpl>(); in ref() 105 const TypeImpl &SBType::ref() const { in ref() 187 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetPointerType()))); in GetPointerType() 195 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetPointeeType()))); in GetPointeeType() 203 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetReferenceType()))); in GetReferenceType() 211 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetTypedefedType()))); in GetTypedefedType() 219 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetDereferencedType()))); in GetDereferencedType() [all …]
|
| H A D | SBValue.cpp | 396 type_sp = std::make_shared<TypeImpl>(value_sp->GetTypeImpl()); in GetType()
|
| /src/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Type.h | 588 class TypeImpl { 590 TypeImpl() = default; 592 ~TypeImpl() = default; 594 TypeImpl(const lldb::TypeSP &type_sp); 596 TypeImpl(const CompilerType &compiler_type); 598 TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic); 600 TypeImpl(const CompilerType &compiler_type, const CompilerType &dynamic); 610 bool operator==(const TypeImpl &rhs) const; 612 bool operator!=(const TypeImpl &rhs) const; 626 TypeImpl GetPointerType() const; [all …]
|
| /src/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
| H A D | FormatClasses.h | 78 ScriptInterpreter *script_interpreter, TypeImpl type, in FormattersMatchCandidate() 87 TypeImpl GetType() const { return m_type; } in GetType() 117 TypeImpl m_type;
|
| H A D | FormattersContainer.h | 112 std::make_shared<TypeImpl>(candidate_type.GetType())); in Matches()
|
| /src/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | ValueObjectDynamicValue.h | 76 TypeImpl GetTypeImpl() override; 114 TypeImpl m_type_impl;
|
| H A D | ValueObject.h | 355 virtual TypeImpl GetTypeImpl() { return TypeImpl(GetCompilerType()); } in GetTypeImpl()
|
| /src/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBType.h | 260 lldb_private::TypeImpl &ref(); 262 const lldb_private::TypeImpl &ref() const;
|
| /src/contrib/llvm-project/lldb/source/Core/ |
| H A D | ValueObjectDynamicValue.cpp | 60 TypeImpl ValueObjectDynamicValue::GetTypeImpl() { in GetTypeImpl() 194 TypeImpl(m_parent->GetCompilerType(), in UpdateValue()
|
| /src/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | FormatManager.cpp | 193 TypeImpl(compiler_type), current_flags}); in GetPossibleMatches() 197 entries.push_back({type_name, script_interpreter, TypeImpl(compiler_type), in GetPossibleMatches() 203 TypeImpl(compiler_type), current_flags}); in GetPossibleMatches()
|
| /src/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 262 class TypeImpl; variable 459 typedef std::shared_ptr<lldb_private::TypeImpl> TypeImplSP;
|
| /src/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A D | ObjCLanguage.cpp | 897 TypeImpl(objc_class_sp->GetType()), in GetPossibleFormattersMatches()
|
| /src/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectType.cpp | 2225 FormattersMatchCandidate candidate_type(type_name, nullptr, TypeImpl(), in AddSynth() 2366 type_name, nullptr, TypeImpl(), FormattersMatchCandidate::Flags()); in AddFilter()
|