Home
last modified time | relevance | path

Searched refs:m_use_synthetic (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DDumpValueObjectOptions.cpp20 m_pointer_as_array(), m_use_synthetic(true),
31 m_use_synthetic = valobj.IsSynthetic(); in DumpValueObjectOptions()
91 m_use_synthetic = use_synthetic; in SetUseSyntheticValue()
H A DValueObjectPrinter.cpp127 if (!m_options.m_use_synthetic) { in SetupMostSpecializedValue()
134 if (m_options.m_use_synthetic) { in SetupMostSpecializedValue()
796 m_options.m_use_dynamic, m_options.m_use_synthetic); in PrintChildrenOneLiner()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp61 : m_use_dynamic(use_dynamic), m_use_synthetic(use_synthetic), in ValueImpl()
78 m_use_synthetic = rhs.m_use_synthetic; in operator =()
141 if (m_use_synthetic) { in GetSP()
159 void SetUseSynthetic(bool use_synthetic) { m_use_synthetic = use_synthetic; } in SetUseSynthetic()
163 bool GetUseSynthetic() { return m_use_synthetic; } in GetUseSynthetic()
200 bool m_use_synthetic; member in ValueImpl
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDumpValueObjectOptions.h145 bool m_use_synthetic : 1; variable