Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSynthetic.cpp162 m_wrapper_sp(), m_interpreter(nullptr) { in FrontEnd()
174 m_wrapper_sp = m_interpreter->CreateSyntheticScriptedProvider( in FrontEnd()
182 if (!m_wrapper_sp || !m_interpreter) in GetChildAtIndex()
185 return m_interpreter->GetChildAtIndex(m_wrapper_sp, idx); in GetChildAtIndex()
189 return (m_wrapper_sp && m_wrapper_sp->IsValid() && m_interpreter); in IsValid()
194 if (!m_wrapper_sp || m_interpreter == nullptr) in CalculateNumChildren()
196 return m_interpreter->CalculateNumChildren(m_wrapper_sp, UINT32_MAX); in CalculateNumChildren()
201 if (!m_wrapper_sp || m_interpreter == nullptr) in CalculateNumChildren()
203 return m_interpreter->CalculateNumChildren(m_wrapper_sp, max); in CalculateNumChildren()
207 if (!m_wrapper_sp || m_interpreter == nullptr) in Update()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeSynthetic.h461 StructuredData::ObjectSP m_wrapper_sp; variable