Searched refs:use_synthetic (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/lldb/include/lldb/API/ |
D | SBValue.h | 90 void SetPreferSyntheticValue(bool use_synthetic); 414 void SetSP(const lldb::ValueObjectSP &sp, bool use_synthetic); 419 bool use_synthetic); 422 bool use_synthetic, const char *name);
|
/external/llvm-project/lldb/source/API/ |
D | SBValue.cpp | 59 lldb::DynamicValueType use_dynamic, bool use_synthetic, in ValueImpl() argument 62 m_use_synthetic(use_synthetic), m_name(name) { in ValueImpl() 157 void SetUseSynthetic(bool use_synthetic) { m_use_synthetic = use_synthetic; } in SetUseSynthetic() argument 825 void SBValue::SetPreferSyntheticValue(bool use_synthetic) { in SetPreferSyntheticValue() argument 827 use_synthetic); in SetPreferSyntheticValue() 830 return m_opaque_sp->SetUseSynthetic(use_synthetic); in SetPreferSyntheticValue() 1103 bool use_synthetic = in SetSP() local 1105 m_opaque_sp = ValueImplSP(new ValueImpl(sp, use_dynamic, use_synthetic)); in SetSP() 1117 bool use_synthetic = in SetSP() local 1119 SetSP(sp, use_dynamic, use_synthetic); in SetSP() [all …]
|
/external/llvm-project/lldb/source/DataFormatters/ |
D | DumpValueObjectOptions.cpp | 82 DumpValueObjectOptions::SetUseSyntheticValue(bool use_synthetic) { in SetUseSyntheticValue() argument 83 m_use_synthetic = use_synthetic; in SetUseSyntheticValue()
|
/external/llvm-project/lldb/include/lldb/DataFormatters/ |
D | DumpValueObjectOptions.h | 87 DumpValueObjectOptions &SetUseSyntheticValue(bool use_synthetic = true);
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | ValueObject.h | 1005 lldb::DynamicValueType use_dynamic, bool use_synthetic); 1018 void SetUseSynthetic(bool use_synthetic);
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBValue.i | 151 SetPreferSyntheticValue (bool use_synthetic);
|
/external/llvm-project/lldb/source/Core/ |
D | ValueObject.cpp | 3256 bool use_synthetic) : m_root_valobj_sp(), in ValueObjectManager() argument 3258 m_use_synthetic(use_synthetic) { in ValueObjectManager() 3316 void ValueObjectManager::SetUseSynthetic(bool use_synthetic) { in SetUseSynthetic() argument 3317 if (m_use_synthetic != use_synthetic) { in SetUseSynthetic() 3318 m_use_synthetic = use_synthetic; in SetUseSynthetic()
|