Lines Matching defs:use_synthetic
59 lldb::DynamicValueType use_dynamic, bool use_synthetic,
61 : m_use_dynamic(use_dynamic), m_use_synthetic(use_synthetic),
159 void SetUseSynthetic(bool use_synthetic) { m_use_synthetic = use_synthetic; }
823 void SBValue::SetPreferSyntheticValue(bool use_synthetic) {
824 LLDB_INSTRUMENT_VA(this, use_synthetic);
827 return m_opaque_sp->SetUseSynthetic(use_synthetic);
1120 bool use_synthetic =
1122 m_opaque_sp = ValueImplSP(new ValueImpl(sp, use_dynamic, use_synthetic));
1134 bool use_synthetic =
1136 SetSP(sp, use_dynamic, use_synthetic);
1143 void SBValue::SetSP(const lldb::ValueObjectSP &sp, bool use_synthetic) {
1148 SetSP(sp, use_dynamic, use_synthetic);
1150 SetSP(sp, eNoDynamicValues, use_synthetic);
1152 SetSP(sp, eNoDynamicValues, use_synthetic);
1156 lldb::DynamicValueType use_dynamic, bool use_synthetic) {
1157 m_opaque_sp = ValueImplSP(new ValueImpl(sp, use_dynamic, use_synthetic));
1161 lldb::DynamicValueType use_dynamic, bool use_synthetic,
1164 ValueImplSP(new ValueImpl(sp, use_dynamic, use_synthetic, name));