Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategory.cpp113 ScriptedSyntheticChildren::SharedPointer synth_sp; in Get() local
114 m_synth_cont.Get(candidates, synth_sp); in Get()
116 if (!filter_sp.get() && !synth_sp.get()) in Get()
118 else if (!filter_sp.get() && synth_sp.get()) in Get()
120 else if (filter_sp.get() && !synth_sp.get()) in Get()
124 pick_synth = filter_sp->GetRevision() <= synth_sp->GetRevision(); in Get()
128 entry = synth_sp; in Get()
H A DFormattersHelpers.cpp80 lldb::SyntheticChildrenSP synth_sp( in AddCXXSynthetic() local
84 category_sp->AddTypeSynthetic(type_name, match_type, synth_sp); in AddCXXSynthetic()
H A DFormatManager.cpp501 ValueObjectSP synth_sp(child_sp->GetSyntheticValue()); in ShouldPrintAsOneLiner() local
503 if (!synth_sp) in ShouldPrintAsOneLiner()
506 if (!synth_sp->MightHaveChildren() && in ShouldPrintAsOneLiner()
507 synth_sp->DoesProvideSyntheticValue()) in ShouldPrintAsOneLiner()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeCategory.h259 lldb::SyntheticChildrenSP synth_sp) { in AddTypeSynthetic() argument
260 m_synth_cont.Add(type_sp, synth_sp); in AddTypeSynthetic()
265 lldb::SyntheticChildrenSP synth_sp) { in AddTypeSynthetic() argument
268 synth_sp); in AddTypeSynthetic()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTypeCategory.cpp246 ScriptedSyntheticChildrenSP synth_sp = in GetSyntheticForType() local
249 return lldb::SBTypeSynthetic(synth_sp); in GetSyntheticForType()
296 ScriptedSyntheticChildrenSP synth_sp = in GetSyntheticAtIndex() local
299 return lldb::SBTypeSynthetic(synth_sp); in GetSyntheticAtIndex()
H A DSBValue.cpp536 ScriptedSyntheticChildrenSP synth_sp = in GetTypeSynthetic() local
538 synthetic.SetSP(synth_sp); in GetTypeSynthetic()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObject.h726 void SetSyntheticChildren(const lldb::SyntheticChildrenSP &synth_sp) { in SetSyntheticChildren() argument
727 if (synth_sp.get() == m_synthetic_children_sp.get()) in SetSyntheticChildren()
730 m_synthetic_children_sp = synth_sp; in SetSyntheticChildren()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp2571 if (auto synth_sp = result_sp->GetSyntheticValue()) in GetQualifiedRepresentationIfAvailable() local
2572 return synth_sp; in GetQualifiedRepresentationIfAvailable()