Lines Matching refs:category

77 bool DataVisualization::Categories::GetCategory(ConstString category,  in GetCategory()  argument
80 entry = GetFormatManager().GetCategory(category, allow_create); in GetCategory()
92 void DataVisualization::Categories::Add(ConstString category) { in Add() argument
93 GetFormatManager().GetCategory(category); in Add()
96 bool DataVisualization::Categories::Delete(ConstString category) { in Delete() argument
97 GetFormatManager().DisableCategory(category); in Delete()
98 return GetFormatManager().DeleteCategory(category); in Delete()
105 void DataVisualization::Categories::Clear(ConstString category) { in Clear() argument
106 GetFormatManager().GetCategory(category)->Clear(eFormatCategoryItemSummary); in Clear()
109 void DataVisualization::Categories::Enable(ConstString category, in Enable() argument
111 if (GetFormatManager().GetCategory(category)->IsEnabled()) in Enable()
112 GetFormatManager().DisableCategory(category); in Enable()
113 GetFormatManager().EnableCategory(category, pos, {}); in Enable()
122 void DataVisualization::Categories::Disable(ConstString category) { in Disable() argument
123 if (GetFormatManager().GetCategory(category)->IsEnabled()) in Disable()
124 GetFormatManager().DisableCategory(category); in Disable()
134 const lldb::TypeCategoryImplSP &category, TypeCategoryMap::Position pos) { in Enable() argument
135 if (category.get()) { in Enable()
136 if (category->IsEnabled()) in Enable()
137 GetFormatManager().DisableCategory(category); in Enable()
138 GetFormatManager().EnableCategory(category, pos); in Enable()
143 const lldb::TypeCategoryImplSP &category) { in Disable() argument
144 if (category.get() && category->IsEnabled()) in Disable()
145 GetFormatManager().DisableCategory(category); in Disable()