Home
last modified time | relevance | path

Searched refs:m_wrapper_sp (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSynthetic.cpp161 m_wrapper_sp(), m_interpreter(nullptr) { in FrontEnd()
173 m_wrapper_sp = m_interpreter->CreateSyntheticScriptedProvider( in FrontEnd()
181 if (!m_wrapper_sp || !m_interpreter) in GetChildAtIndex()
184 return m_interpreter->GetChildAtIndex(m_wrapper_sp, idx); in GetChildAtIndex()
188 return (m_wrapper_sp && m_wrapper_sp->IsValid() && m_interpreter); in IsValid()
193 if (!m_wrapper_sp || m_interpreter == nullptr) in CalculateNumChildren()
195 return m_interpreter->CalculateNumChildren(m_wrapper_sp, UINT32_MAX); in CalculateNumChildren()
200 if (!m_wrapper_sp || m_interpreter == nullptr) in CalculateNumChildren()
202 return m_interpreter->CalculateNumChildren(m_wrapper_sp, max); in CalculateNumChildren()
206 if (!m_wrapper_sp || m_interpreter == nullptr) in Update()
[all …]
/src/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeSynthetic.h455 StructuredData::ObjectSP m_wrapper_sp; variable