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; }
805 void SBValue::SetPreferSyntheticValue(bool use_synthetic) {
806 LLDB_INSTRUMENT_VA(this, use_synthetic);
809 return m_opaque_sp->SetUseSynthetic(use_synthetic);
1102 bool use_synthetic =
1104 m_opaque_sp = ValueImplSP(new ValueImpl(sp, use_dynamic, use_synthetic));
1116 bool use_synthetic =
1118 SetSP(sp, use_dynamic, use_synthetic);
1125 void SBValue::SetSP(const lldb::ValueObjectSP &sp, bool use_synthetic) {
1130 SetSP(sp, use_dynamic, use_synthetic);
1132 SetSP(sp, eNoDynamicValues, use_synthetic);
1134 SetSP(sp, eNoDynamicValues, use_synthetic);
1138 lldb::DynamicValueType use_dynamic, bool use_synthetic) {
1139 m_opaque_sp = ValueImplSP(new ValueImpl(sp, use_dynamic, use_synthetic));
1143 lldb::DynamicValueType use_dynamic, bool use_synthetic,
1146 ValueImplSP(new ValueImpl(sp, use_dynamic, use_synthetic, name));