Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/DataFormatters/
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()
DFormattersHelpers.cpp80 lldb::SyntheticChildrenSP synth_sp( in AddCXXSynthetic() local
84 category_sp->AddTypeSynthetic(type_name.GetStringRef(), match_type, synth_sp); in AddCXXSynthetic()
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()
/openbsd/src/gnu/llvm/lldb/include/lldb/DataFormatters/
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()
/openbsd/src/gnu/llvm/lldb/source/API/
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()
DSBValue.cpp546 ScriptedSyntheticChildrenSP synth_sp = in GetTypeSynthetic() local
548 synthetic.SetSP(synth_sp); in GetTypeSynthetic()
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
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()