Home | History | Annotate | Download | only in DataFormatters

Lines Matching refs:type_sp

167 FormatManager::GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp)
169 if (!type_sp)
182 lldb::TypeSummaryImplSP summary_current_sp = category_sp->GetSummaryForType(type_sp);
193 FormatManager::GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp)
195 if (!type_sp)
208 lldb::TypeFilterImplSP filter_current_sp((TypeFilterImpl*)category_sp->GetFilterForType(type_sp).get());
220 FormatManager::GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp)
222 if (!type_sp)
235 lldb::ScriptedSyntheticChildrenSP synth_current_sp((ScriptedSyntheticChildren*)category_sp->GetSyntheticForType(type_sp).get());
248 FormatManager::GetSyntheticChildrenForType (lldb::TypeNameSpecifierImplSP type_sp)
250 if (!type_sp)
252 lldb::TypeFilterImplSP filter_sp = GetFilterForType(type_sp);
253 lldb::ScriptedSyntheticChildrenSP synth_sp = GetSyntheticForType(type_sp);