Searched refs:type_impl_sp (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBType.cpp | 43 SBType::SBType(const lldb::TypeImplSP &type_impl_sp) in SBType() argument 44 : m_opaque_sp(type_impl_sp) {} in SBType() 84 void SBType::SetSP(const lldb::TypeImplSP &type_impl_sp) { in SetSP() argument 85 m_opaque_sp = type_impl_sp; in SetSP() 855 TypeImplSP type_impl_sp(m_opaque_up->GetTypeImpl()); in GetDescription() local 856 if (type_impl_sp) in GetDescription() 857 type_impl_sp->GetDescription(strm, description_level); in GetDescription()
|
H A D | SBValue.cpp | 618 lldb::TypeImplSP type_impl_sp(sb_type.GetSP()); in CreateValueFromAddress() local 619 if (value_sp && type_impl_sp) { in CreateValueFromAddress() 620 CompilerType ast_type(type_impl_sp->GetCompilerType(true)); in CreateValueFromAddress() 637 lldb::TypeImplSP type_impl_sp(sb_type.GetSP()); in CreateValueFromData() local 638 if (value_sp && type_impl_sp) { in CreateValueFromData() 641 name, **data, exe_ctx, type_impl_sp->GetCompilerType(true)); in CreateValueFromData()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | Type.h | 696 TypeMemberImpl(const lldb::TypeImplSP &type_impl_sp, uint64_t bit_offset, 699 : m_type_impl_sp(type_impl_sp), m_bit_offset(bit_offset), m_name(name), in m_type_impl_sp() argument 702 TypeMemberImpl(const lldb::TypeImplSP &type_impl_sp, uint64_t bit_offset) in TypeMemberImpl() argument 703 : m_type_impl_sp(type_impl_sp), m_bit_offset(bit_offset), in TypeMemberImpl()
|
/freebsd/contrib/llvm-project/lldb/bindings/python/ |
H A D | python-swigsafecast.swig | 78 PythonObject SWIGBridge::ToSWIGWrapper(lldb::TypeImplSP type_impl_sp) { 79 return ToSWIGHelper(new lldb::SBType(type_impl_sp), SWIGTYPE_p_lldb__SBType);
|
H A D | python-wrapper.swig | 99 lldb::TypeImplSP type_impl_sp) { 112 pfunc(SWIGBridge::ToSWIGWrapper(type_impl_sp), dict);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | SWIGPythonBridge.h | 96 static PythonObject ToSWIGWrapper(lldb::TypeImplSP type_impl_sp); 134 lldb::TypeImplSP type_impl_sp);
|
H A D | ScriptInterpreterPythonImpl.h | 191 lldb::TypeImplSP type_impl_sp) override;
|
H A D | ScriptInterpreterPython.cpp | 1899 const char *python_function_name, TypeImplSP type_impl_sp) { in FormatterCallbackFunction() argument 1903 python_function_name, m_dictionary_name.c_str(), type_impl_sp); in FormatterCallbackFunction()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBType.h | 266 void SetSP(const lldb::TypeImplSP &type_impl_sp);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | ScriptInterpreter.h | 372 lldb::TypeImplSP type_impl_sp) { in FormatterCallbackFunction() argument
|