Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/DataFormatters/
DDumpValueObjectOptions.cpp19 m_decl_printing_helper(), m_pointer_as_array(), m_use_synthetic(true),
30 m_use_synthetic = valobj.IsSynthetic(); in DumpValueObjectOptions()
84 m_use_synthetic = use_synthetic; in SetUseSyntheticValue()
DValueObjectPrinter.cpp127 if (!m_options.m_use_synthetic) { in GetMostSpecializedValue()
133 if (m_options.m_use_synthetic) { in GetMostSpecializedValue()
728 m_options.m_use_dynamic, m_options.m_use_synthetic); in PrintChildrenOneLiner()
/openbsd/src/gnu/llvm/lldb/source/API/
DSBValue.cpp61 : m_use_dynamic(use_dynamic), m_use_synthetic(use_synthetic), in ValueImpl()
78 m_use_synthetic = rhs.m_use_synthetic; in operator =()
137 if (m_use_synthetic) { in GetSP()
155 void SetUseSynthetic(bool use_synthetic) { m_use_synthetic = use_synthetic; } in SetUseSynthetic()
159 bool GetUseSynthetic() { return m_use_synthetic; } in GetUseSynthetic()
196 bool m_use_synthetic; member in ValueImpl
/openbsd/src/gnu/llvm/lldb/include/lldb/DataFormatters/
DDumpValueObjectOptions.h138 bool m_use_synthetic : 1; variable