OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CountersGraph
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
CountersGraph.js
38
WebInspector.
CountersGraph
= function(title, delegate, model)
71
WebInspector.
CountersGraph
.prototype = {
82
* @return {!WebInspector.
CountersGraph
.Counter}
86
var counter = new WebInspector.
CountersGraph
.Counter();
88
this._counterUI.push(new WebInspector.
CountersGraph
.CounterUI(this, uiName, uiValueTemplate, color, counter));
182
* @this {WebInspector.
CountersGraph
}
273
WebInspector.
CountersGraph
.Counter = function()
279
WebInspector.
CountersGraph
.Counter.prototype = {
367
* @param {!WebInspector.
CountersGraph
} memoryCountersPane
371
* @param {!WebInspector.
CountersGraph
.Counter} counte
[
all
...]
TimelinePowerGraph.js
7
* @extends {WebInspector.
CountersGraph
}
14
WebInspector.
CountersGraph
.call(this, WebInspector.UIString("POWER"), delegate, model);
23
WebInspector.
CountersGraph
.prototype.dispose.call(this);
49
__proto__: WebInspector.
CountersGraph
.prototype
MemoryCountersGraph.js
33
* @extends {WebInspector.
CountersGraph
}
41
WebInspector.
CountersGraph
.call(this, WebInspector.UIString("MEMORY"), delegate, model);
99
__proto__: WebInspector.
CountersGraph
.prototype
Completed in 122 milliseconds