Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/DataFormatters/
DFormattersHelpers.cpp94 lldb::SyntheticChildrenSP synth_sp( in AddCXXSynthetic() local
98 RegularExpression(type_name.GetStringRef()), synth_sp); in AddCXXSynthetic()
101 synth_sp); in AddCXXSynthetic()
DTypeCategory.cpp234 ScriptedSyntheticChildren::SharedPointer synth_sp; in AnyMatches() local
297 if (GetTypeSyntheticsContainer()->Get(type_name, synth_sp)) { in AnyMatches()
307 if (GetRegexTypeSyntheticsContainer()->Get(type_name, synth_sp)) { in AnyMatches()
DFormatManager.cpp512 ValueObjectSP synth_sp(child_sp->GetSyntheticValue()); in ShouldPrintAsOneLiner() local
514 if (!synth_sp) in ShouldPrintAsOneLiner()
517 if (!synth_sp->MightHaveChildren() && in ShouldPrintAsOneLiner()
518 synth_sp->DoesProvideSyntheticValue()) in ShouldPrintAsOneLiner()
/external/llvm-project/lldb/source/API/
DSBTypeCategory.cpp287 ScriptedSyntheticChildrenSP synth_sp = in GetSyntheticForType() local
290 return LLDB_RECORD_RESULT(lldb::SBTypeSynthetic(synth_sp)); in GetSyntheticForType()
343 ScriptedSyntheticChildrenSP synth_sp = in GetSyntheticAtIndex() local
346 return LLDB_RECORD_RESULT(lldb::SBTypeSynthetic(synth_sp)); in GetSyntheticAtIndex()
DSBValue.cpp553 ScriptedSyntheticChildrenSP synth_sp = in GetTypeSynthetic() local
555 synthetic.SetSP(synth_sp); in GetTypeSynthetic()
/external/llvm-project/lldb/include/lldb/Core/
DValueObject.h719 void SetSyntheticChildren(const lldb::SyntheticChildrenSP &synth_sp) { in SetSyntheticChildren() argument
720 if (synth_sp.get() == m_synthetic_children_sp.get()) in SetSyntheticChildren()
723 m_synthetic_children_sp = synth_sp; in SetSyntheticChildren()