Symbol: ChartDataSource
src/apps/debuganalyzer/gui/chart/Chart.cpp
112
Chart::AddDataSource(ChartDataSource* dataSource,
src/apps/debuganalyzer/gui/chart/Chart.cpp
120
Chart::RemoveDataSource(ChartDataSource* dataSource)
src/apps/debuganalyzer/gui/chart/Chart.cpp
129
ChartDataSource*
src/apps/debuganalyzer/gui/chart/Chart.cpp
135
ChartDataSource* dataSource = fDataSources.RemoveItemAt(index);
src/apps/debuganalyzer/gui/chart/Chart.cpp
493
ChartDataSource* firstSource = fDataSources.ItemAt(0);
src/apps/debuganalyzer/gui/chart/Chart.cpp
497
for (int32 i = 1; ChartDataSource* source = fDataSources.ItemAt(i);
src/apps/debuganalyzer/gui/chart/Chart.cpp
85
Chart::AddDataSource(ChartDataSource* dataSource, int32 index,
src/apps/debuganalyzer/gui/chart/Chart.h
17
class ChartDataSource;
src/apps/debuganalyzer/gui/chart/Chart.h
28
bool AddDataSource(ChartDataSource* dataSource,
src/apps/debuganalyzer/gui/chart/Chart.h
32
bool AddDataSource(ChartDataSource* dataSource,
src/apps/debuganalyzer/gui/chart/Chart.h
36
ChartDataSource* dataSource);
src/apps/debuganalyzer/gui/chart/Chart.h
37
ChartDataSource* RemoveDataSource(int32 index);
src/apps/debuganalyzer/gui/chart/Chart.h
75
typedef BObjectList<ChartDataSource> DataSourceList;
src/apps/debuganalyzer/gui/chart/ChartDataSource.cpp
9
ChartDataSource::~ChartDataSource()
src/apps/debuganalyzer/gui/chart/ChartDataSource.h
13
class ChartDataSource {
src/apps/debuganalyzer/gui/chart/ChartDataSource.h
15
virtual ~ChartDataSource();
src/apps/debuganalyzer/gui/chart/ChartRenderer.h
13
class ChartDataSource;
src/apps/debuganalyzer/gui/chart/ChartRenderer.h
27
ChartDataSource* dataSource,
src/apps/debuganalyzer/gui/chart/ChartRenderer.h
31
ChartDataSource* dataSource) = 0;
src/apps/debuganalyzer/gui/chart/LineChartRenderer.cpp
101
LineChartRenderer::AddDataSource(ChartDataSource* dataSource, int32 index,
src/apps/debuganalyzer/gui/chart/LineChartRenderer.cpp
119
LineChartRenderer::RemoveDataSource(ChartDataSource* dataSource)
src/apps/debuganalyzer/gui/chart/LineChartRenderer.cpp
21
ChartDataSource* source;
src/apps/debuganalyzer/gui/chart/LineChartRenderer.cpp
28
DataSourceInfo(ChartDataSource* source,
src/apps/debuganalyzer/gui/chart/LineChartRenderer.cpp
37
LineChartRenderer::DataSourceInfo::DataSourceInfo(ChartDataSource* source,
src/apps/debuganalyzer/gui/chart/LineChartRenderer.h
28
virtual bool AddDataSource(ChartDataSource* dataSource,
src/apps/debuganalyzer/gui/chart/LineChartRenderer.h
31
virtual void RemoveDataSource(ChartDataSource* dataSource);
src/apps/debuganalyzer/gui/thread_window/ActivityPage.cpp
47
: public ChartDataSource {