Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/DataFormatters/
H A DTypeSynthetic.cpp130 m_wrapper_sp(), m_interpreter(nullptr) { in FrontEnd()
142 m_wrapper_sp = m_interpreter->CreateSyntheticScriptedProvider( in FrontEnd()
150 if (!m_wrapper_sp || !m_interpreter) in GetChildAtIndex()
153 return m_interpreter->GetChildAtIndex(m_wrapper_sp, idx); in GetChildAtIndex()
157 return (m_wrapper_sp && m_wrapper_sp->IsValid() && m_interpreter); in IsValid()
161 if (!m_wrapper_sp || m_interpreter == nullptr) in CalculateNumChildren()
163 return m_interpreter->CalculateNumChildren(m_wrapper_sp, UINT32_MAX); in CalculateNumChildren()
167 if (!m_wrapper_sp || m_interpreter == nullptr) in CalculateNumChildren()
169 return m_interpreter->CalculateNumChildren(m_wrapper_sp, max); in CalculateNumChildren()
173 if (!m_wrapper_sp || m_interpreter == nullptr) in Update()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DTypeSynthetic.h444 StructuredData::ObjectSP m_wrapper_sp; variable