Home
last modified time | relevance | path

Searched refs:use_synthetic (Results 1 – 6 of 6) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/
DSBValue.h112 SetPreferSyntheticValue (bool use_synthetic);
467 SetSP (const lldb::ValueObjectSP &sp, bool use_synthetic);
473 SetSP (const lldb::ValueObjectSP &sp, lldb::DynamicValueType use_dynamic, bool use_synthetic);
476 …SetSP (const lldb::ValueObjectSP &sp, lldb::DynamicValueType use_dynamic, bool use_synthetic, cons…
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
DSBValue.cpp64 bool use_synthetic, in ValueImpl() argument
68 m_use_synthetic(use_synthetic), in ValueImpl()
173 SetUseSynthetic (bool use_synthetic) in SetUseSynthetic() argument
175 m_use_synthetic = use_synthetic; in SetUseSynthetic()
1014 SBValue::SetPreferSyntheticValue (bool use_synthetic) in SetPreferSyntheticValue() argument
1017 return m_opaque_sp->SetUseSynthetic (use_synthetic); in SetPreferSyntheticValue()
1322 bool use_synthetic = target_sp->TargetProperties::GetEnableSyntheticValue(); in SetSP() local
1323 m_opaque_sp = ValueImplSP(new ValueImpl(sp, use_dynamic, use_synthetic)); in SetSP()
1340 bool use_synthetic = target_sp->TargetProperties::GetEnableSyntheticValue(); in SetSP() local
1341 SetSP (sp, use_dynamic, use_synthetic); in SetSP()
[all …]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
DValueObjectPrinter.h151 SetUseSyntheticValue(bool use_synthetic = true)
153 m_use_synthetic = use_synthetic;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
DValueObjectSyntheticFilter.h79 CalculateSyntheticValue (bool use_synthetic) in CalculateSyntheticValue() argument
DValueObject.h686 GetSyntheticValue (bool use_synthetic = true);
1096 CalculateSyntheticValue (bool use_synthetic = true);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
DValueObject.cpp2259 ValueObject::CalculateSyntheticValue (bool use_synthetic) in CalculateSyntheticValue() argument
2261 if (use_synthetic == false) in CalculateSyntheticValue()
2332 ValueObject::GetSyntheticValue (bool use_synthetic) in GetSyntheticValue() argument
2334 if (use_synthetic == false) in GetSyntheticValue()
2337 CalculateSyntheticValue(use_synthetic); in GetSyntheticValue()