Home
last modified time | relevance | path

Searched refs:category_sp (Results 1 – 4 of 4) sorted by relevance

/external/lldb/source/DataFormatters/
DFormatManager.cpp173 lldb::TypeCategoryImplSP category_sp; in GetSummaryForType() local
179 category_sp = GetCategoryAtIndex(category_id); in GetSummaryForType()
180 if (category_sp->IsEnabled() == false) in GetSummaryForType()
182 lldb::TypeSummaryImplSP summary_current_sp = category_sp->GetSummaryForType(type_sp); in GetSummaryForType()
183 …if (summary_current_sp && (summary_chosen_sp.get() == NULL || (prio_category > category_sp->GetEna… in GetSummaryForType()
185 prio_category = category_sp->GetEnabledPosition(); in GetSummaryForType()
199 lldb::TypeCategoryImplSP category_sp; in GetFilterForType() local
205 category_sp = GetCategoryAtIndex(category_id); in GetFilterForType()
206 if (category_sp->IsEnabled() == false) in GetFilterForType()
208 …lldb::TypeFilterImplSP filter_current_sp((TypeFilterImpl*)category_sp->GetFilterForType(type_sp).g… in GetFilterForType()
[all …]
DTypeCategoryMap.cpp192 lldb::TypeCategoryImplSP category_sp = *begin; in GetSummaryFormat() local
195 …log->Printf("\n[CategoryMap::GetSummaryFormat] Trying to use category %s", category_sp->GetName()); in GetSummaryFormat()
196 if (!category_sp->Get(valobj, current_format, use_dynamic, &reason_why)) in GetSummaryFormat()
220 lldb::TypeCategoryImplSP category_sp = *begin; in GetSyntheticChildren() local
223 …>Printf("\n[CategoryMap::GetSyntheticChildren] Trying to use category %s", category_sp->GetName()); in GetSyntheticChildren()
224 if (!category_sp->Get(valobj, current_format, use_dynamic, &reason_why)) in GetSyntheticChildren()
/external/lldb/source/API/
DSBDebugger.cpp1155 TypeCategoryImplSP category_sp; in GetCategory() local
1157 if (DataVisualization::Categories::GetCategory(ConstString(category_name), category_sp, false)) in GetCategory()
1158 return SBTypeCategory(category_sp); in GetCategory()
1169 TypeCategoryImplSP category_sp; in CreateCategory() local
1171 if (DataVisualization::Categories::GetCategory(ConstString(category_name), category_sp, true)) in CreateCategory()
1172 return SBTypeCategory(category_sp); in CreateCategory()
/external/lldb/source/Commands/
DCommandObjectType.cpp1491 const lldb::TypeCategoryImplSP& category_sp) in PerCategoryCallback() argument
1494 category_sp->Delete(*name, eFormatCategoryItemSummary | eFormatCategoryItemRegexSummary); in PerCategoryCallback()
1985 … lldb::TypeCategoryImplSP category_sp = DataVisualization::Categories::GetCategoryAtIndex(i); in DoExecute() local
1986 if (category_sp) in DoExecute()
1988 if ( ::strcmp(category_sp->GetName(), "system") == 0 || in DoExecute()
1989 ::strcmp(category_sp->GetName(), "default") == 0 ) in DoExecute()
1992 … DataVisualization::Categories::Enable(category_sp, TypeCategoryMap::Default); in DoExecute()
2148 … lldb::TypeCategoryImplSP category_sp = DataVisualization::Categories::GetCategoryAtIndex(i); in DoExecute() local
2150 if (category_sp) in DoExecute()
2151 DataVisualization::Categories::Disable(category_sp); in DoExecute()