HomeSort by relevance Sort by last modified time
    Searched full:dataseries (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/chrome/browser/resources/net_internals/
timeline_view.js 40 // List of DataSeries. These are shared with the TimelineGraphView. The
45 // DataSeries depend on some of the global constants, so they're only
47 // recreate DataSeries when log files are being loaded.
149 * Updates the visibility state of |dataSeries| to correspond to the
153 updateDataSeriesVisibility_: function(dataSeries, listItem, checkBox) {
154 dataSeries.show(checkBox.checked);
161 dataSeriesClicked_: function(dataSeries, listItem, checkBox) {
162 this.updateDataSeriesVisibility_(dataSeries, listItem, checkBox);
167 * Adds the specified DataSeries to |dataSeries_|, and hooks up
169 * of the given DataSeries
    [all...]
timeline_graph_view.js 300 * Replaces the current TimelineDataSeries with |dataSeries|.
302 setDataSeries: function(dataSeries) {
309 for (var i = 0; i < dataSeries.length; ++i)
310 this.graphs_[dataSeries[i].getDataType()].addDataSeries(dataSeries[i]);
458 * |dataType| is the DataType that will be shared by all its DataSeries.
493 addDataSeries: function(dataSeries) {
494 this.dataSeries_.push(dataSeries);
501 getValues: function(dataSeries) {
502 if (!dataSeries.isVisible()
    [all...]
timeline_data_series.js 16 * current visibility state. DataSeries are solely responsible for tracking
31 // Data type of the DataSeries. This is used to scale all values with
100 * seen DataPoint before each time, but other DataSeries may use some
  /external/chromium_org/content/browser/resources/media/
stats_graph_helper.js 49 // original dataSeries.
128 // Updates the original dataSeries before the conversion.
134 // dataSeries as input.
142 // Updates the final dataSeries to draw.
162 // Adds the new dataSeries to the graphView. We have to do it here to cover
164 var dataSeries =
167 if (!graphViews[graphViewId].hasDataSeries(dataSeries))
168 graphViews[graphViewId].addDataSeries(dataSeries);
177 var dataSeries =
180 if (!dataSeries) {
    [all...]
timeline_graph_view.js 126 * Replaces the current TimelineDataSeries with |dataSeries|.
128 setDataSeries: function(dataSeries) {
131 for (var i = 0; i < dataSeries.length; ++i)
132 this.graph_.addDataSeries(dataSeries[i]);
137 * Adds |dataSeries| to the current graph.
139 addDataSeries: function(dataSeries) {
142 this.graph_.addDataSeries(dataSeries);
250 hasDataSeries: function(dataSeries) {
252 return this.graph_.hasDataSeries(dataSeries);
295 addDataSeries: function(dataSeries) {
    [all...]
webrtc_internals.js 56 * @param {!TimelineDataSeries} dataSeries The TimelineDataSeries to set to.
58 setDataSeries: function(dataSeriesId, dataSeries) {
59 this.record_.stats[dataSeriesId] = dataSeries;
  /external/chromium_org/content/browser/media/
webrtc_internals_browsertest.cc 392 base::DictionaryValue* dataSeries =
394 EXPECT_EQ(stats.values.size(), dataSeries->size());
472 // Tests that adding random named stats updates the dataSeries and graphs.
527 // Verify that the bweCompound graph contains multiple dataSeries.
  /external/chromium_org/chrome/browser/resources/performance_monitor/
chart.js 196 * the core of the graph, including the axis, gridlines, dataseries, etc)
    [all...]

Completed in 1130 milliseconds