| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Type.cpp | 249 m_type_list.Append(TypeImplSP(new TypeImpl(type))); in operator ()() 940 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp) in TypeImpl() function in TypeImpl 945 TypeImpl::TypeImpl(const CompilerType &compiler_type) in TypeImpl() function in TypeImpl 950 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic) in TypeImpl() function in TypeImpl 955 TypeImpl::TypeImpl(const CompilerType &static_type, in TypeImpl() function in TypeImpl 961 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType() 972 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType() 977 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in SetType() 983 void TypeImpl::SetType(const CompilerType &compiler_type, in SetType() 990 bool TypeImpl::CheckModule(lldb::ModuleSP &module_sp) const { in CheckModule() [all …]
|
| /freebsd/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 | 398 type_sp = std::make_shared<TypeImpl>(value_sp->GetTypeImpl()); in GetType()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Type.h | 624 class TypeImpl { 626 TypeImpl() = default; 628 ~TypeImpl() = default; 630 TypeImpl(const lldb::TypeSP &type_sp); 632 TypeImpl(const CompilerType &compiler_type); 634 TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic); 636 TypeImpl(const CompilerType &compiler_type, const CompilerType &dynamic); 646 bool operator==(const TypeImpl &rhs) const; 648 bool operator!=(const TypeImpl &rhs) const; 662 TypeImpl GetPointerType() const; [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
| H A D | FormatClasses.h | 78 ScriptInterpreter *script_interpreter, TypeImpl type, 88 TypeImpl GetType() const { return m_type; } in GetType() 122 TypeImpl m_type;
|
| H A D | FormattersContainer.h | 112 std::make_shared<TypeImpl>(candidate_type.GetType())); in Matches()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/ |
| 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()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBType.h | 267 lldb_private::TypeImpl &ref(); 269 const lldb_private::TypeImpl &ref() const;
|
| /freebsd/contrib/llvm-project/lldb/source/ValueObject/ |
| H A D | ValueObjectDynamicValue.cpp | 60 TypeImpl ValueObjectDynamicValue::GetTypeImpl() { in GetTypeImpl() 195 TypeImpl(m_parent->GetCompilerType(), in UpdateValue()
|
| /freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | FormatManager.cpp | 194 TypeImpl(compiler_type), current_flags, in GetPossibleMatches() 199 entries.push_back({type_name, script_interpreter, TypeImpl(compiler_type), in GetPossibleMatches() 205 TypeImpl(compiler_type), current_flags, in GetPossibleMatches()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 267 class TypeImpl; variable 469 typedef std::shared_ptr<lldb_private::TypeImpl> TypeImplSP;
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A D | ObjCLanguage.cpp | 914 TypeImpl(objc_class_sp->GetType()), in GetPossibleFormattersMatches()
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectType.cpp | 2244 FormattersMatchCandidate candidate_type(type_name, nullptr, TypeImpl(), in AddSynth() 2386 type_name, nullptr, TypeImpl(), FormattersMatchCandidate::Flags()); in AddFilter()
|