Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DFormattersHelpers.cpp94 lldb::SyntheticChildrenSP synth_sp( in AddCXXSynthetic() local
98 RegularExpression(type_name.GetStringRef()), synth_sp); in AddCXXSynthetic()
101 synth_sp); in AddCXXSynthetic()
H A 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()
H A DFormatManager.cpp511 ValueObjectSP synth_sp(child_sp->GetSyntheticValue()); in ShouldPrintAsOneLiner() local
513 if (!synth_sp) in ShouldPrintAsOneLiner()
516 if (!synth_sp->MightHaveChildren() && in ShouldPrintAsOneLiner()
517 synth_sp->DoesProvideSyntheticValue()) in ShouldPrintAsOneLiner()
/llvm-project-15.0.7/lldb/source/API/
H A DSBTypeCategory.cpp274 ScriptedSyntheticChildrenSP synth_sp = in GetSyntheticForType() local
277 return lldb::SBTypeSynthetic(synth_sp); in GetSyntheticForType()
324 ScriptedSyntheticChildrenSP synth_sp = in GetSyntheticAtIndex() local
327 return lldb::SBTypeSynthetic(synth_sp); in GetSyntheticAtIndex()
H A DSBValue.cpp546 ScriptedSyntheticChildrenSP synth_sp = in GetTypeSynthetic() local
548 synthetic.SetSP(synth_sp); in GetTypeSynthetic()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DValueObject.h737 void SetSyntheticChildren(const lldb::SyntheticChildrenSP &synth_sp) { in SetSyntheticChildren() argument
738 if (synth_sp.get() == m_synthetic_children_sp.get()) in SetSyntheticChildren()
741 m_synthetic_children_sp = synth_sp; in SetSyntheticChildren()