Home
last modified time | relevance | path

Searched refs:TypeImpl (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DType.cpp117 m_type_list.Append(TypeImplSP(new TypeImpl(type))); in operator ()()
821 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp) in TypeImpl() function in TypeImpl
826 TypeImpl::TypeImpl(const CompilerType &compiler_type) in TypeImpl() function in TypeImpl
831 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic) in TypeImpl() function in TypeImpl
836 TypeImpl::TypeImpl(const CompilerType &static_type, in TypeImpl() function in TypeImpl
842 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType()
853 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType()
858 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in SetType()
864 void TypeImpl::SetType(const CompilerType &compiler_type, in SetType()
871 bool TypeImpl::CheckModule(lldb::ModuleSP &module_sp) const { in CheckModule()
[all …]
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBType.cpp32 SBType::SBType(const CompilerType &type) : m_opaque_sp(new TypeImpl(type)) {} in SBType()
35 : m_opaque_sp(new TypeImpl(type_sp)) {} in SBType()
93 TypeImpl &SBType::ref() { in ref()
95 m_opaque_sp = std::make_shared<TypeImpl>(); in ref()
99 const TypeImpl &SBType::ref() const { in ref()
169 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetPointerType()))); in GetPointerType()
177 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetPointeeType()))); in GetPointeeType()
185 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetReferenceType()))); in GetReferenceType()
193 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetTypedefedType()))); in GetTypedefedType()
201 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetDereferencedType()))); in GetDereferencedType()
[all …]
H A DSBValue.cpp399 type_sp = std::make_shared<TypeImpl>(value_sp->GetTypeImpl()); in GetType()
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DType.h257 class TypeImpl {
259 TypeImpl() = default;
261 ~TypeImpl() = default;
263 TypeImpl(const lldb::TypeSP &type_sp);
265 TypeImpl(const CompilerType &compiler_type);
267 TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic);
269 TypeImpl(const CompilerType &compiler_type, const CompilerType &dynamic);
279 bool operator==(const TypeImpl &rhs) const;
281 bool operator!=(const TypeImpl &rhs) const;
295 TypeImpl GetPointerType() const;
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h78 ScriptInterpreter *script_interpreter, TypeImpl type, in FormattersMatchCandidate()
87 TypeImpl GetType() const { return m_type; } in GetType()
117 TypeImpl m_type;
H A DFormattersContainer.h112 std::make_shared<TypeImpl>(candidate_type.GetType())); in Matches()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DValueObjectDynamicValue.h76 TypeImpl GetTypeImpl() override;
114 TypeImpl m_type_impl;
H A DValueObject.h355 virtual TypeImpl GetTypeImpl() { return TypeImpl(GetCompilerType()); } in GetTypeImpl()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBType.h220 lldb_private::TypeImpl &ref();
222 const lldb_private::TypeImpl &ref() const;
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DValueObjectDynamicValue.cpp60 TypeImpl ValueObjectDynamicValue::GetTypeImpl() { in GetTypeImpl()
180 TypeImpl(m_parent->GetCompilerType(), in UpdateValue()
/openbsd-src/gnu/llvm/lldb/source/DataFormatters/
H A DFormatManager.cpp189 TypeImpl(compiler_type), current_flags}); in GetPossibleMatches()
193 entries.push_back({type_name, script_interpreter, TypeImpl(compiler_type), in GetPossibleMatches()
199 TypeImpl(compiler_type), current_flags}); in GetPossibleMatches()
/openbsd-src/gnu/llvm/lldb/include/lldb/
H A Dlldb-forward.h253 class TypeImpl; variable
435 typedef std::shared_ptr<lldb_private::TypeImpl> TypeImplSP;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp965 TypeImpl(objc_class_sp->GetType()), in GetPossibleFormattersMatches()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectType.cpp2327 FormattersMatchCandidate candidate_type(type_name, nullptr, TypeImpl(), in AddSynth()
2469 type_name, nullptr, TypeImpl(), FormattersMatchCandidate::Flags()); in AddFilter()