/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
MemoryStatistics.js | 55 this._canvas = this._canvasContainer.createChild("canvas"); 56 this._canvas.id = "memory-counters-graph"; 59 this._canvas.addEventListener("mouseover", this._onMouseOver.bind(this), true); 60 this._canvas.addEventListener("mousemove", this._onMouseMove.bind(this), true); 61 this._canvas.addEventListener("mouseout", this._onMouseOut.bind(this), true); 62 this._canvas.addEventListener("click", this._onClick.bind(this), true); 237 this._canvas.width = width; 238 this._canvas.height = height; 255 this._setVerticalClip(10, this._canvas.height - 20); 298 var ctx = this._canvas.getContext("2d") [all...] |
TimelineOverviewPane.js | 396 this._canvas = this.element.createChild("canvas", "fill"); 397 this._context = this._canvas.getContext("2d"); 442 this._canvas.width = this.element.clientWidth * window.devicePixelRatio; 443 this._canvas.height = this.element.clientHeight * window.devicePixelRatio; 483 var width = this._canvas.width; 484 var height = this._canvas.height - lowerOffset; 503 ctx.moveTo(0, this._canvas.height); 517 ctx.lineTo(width, this._canvas.height); 518 ctx.lineTo(0, this._canvas.height); 568 var stripHeight = Math.round(this._canvas.height / WebInspector.TimelineEventOverview._numberOfStrips) [all...] |
FlameChart.js | 55 this._canvas = this._chartContainer.createChild("canvas"); 56 this._canvas.addEventListener("mousemove", this._onMouseMove.bind(this)); 57 WebInspector.installDragHandle(this._canvas, this._startCanvasDragging.bind(this), this._canvasDragging.bind(this), this._endCanvasDragging.bind(this), "col-resize"); 65 this._canvas.addEventListener("mousewheel", this._onMouseWheel.bind(this), false); 91 this._width = flameChart._canvas.width - this.paddingLeft; 145 this._xScaleFactor = flameChart._canvas.width / flameChart._timelineData.totalTime; 440 this._canvas.style.cursor = "default"; 442 this._canvas.style.cursor = "pointer"; 514 var cursorLevel = Math.floor((this._canvas.height / window.devicePixelRatio - y) / this._barHeight); 590 anchorBox.y = this._canvas.height / window.devicePixelRatio - (entry.depth + 1) * this._barHeight [all...] |
DOMCountersGraph.js | 265 var canvas = this._canvas;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
turtle.py | 366 self._canvas = TK.Canvas(master, width=width, height=height, 368 self.hscroll = TK.Scrollbar(master, command=self._canvas.xview, 370 self.vscroll = TK.Scrollbar(master, command=self._canvas.yview) 371 self._canvas.configure(xscrollcommand=self.hscroll.set, 375 self._canvas.grid(padx=1, in_ = self, pady=1, row=0, 392 self._canvas.config(bg=bg, 395 self._canvas.xview_moveto(0.5*(self.canvwidth - self.width + 30) / 397 self._canvas.yview_moveto(0.5*(self.canvheight- self.height + 30) / 405 cwidth = self._canvas.winfo_width() 406 cheight = self._canvas.winfo_height( 3558 _canvas = None variable in class:_Screen [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
turtle.py | 366 self._canvas = TK.Canvas(master, width=width, height=height, 368 self.hscroll = TK.Scrollbar(master, command=self._canvas.xview, 370 self.vscroll = TK.Scrollbar(master, command=self._canvas.yview) 371 self._canvas.configure(xscrollcommand=self.hscroll.set, 375 self._canvas.grid(padx=1, in_ = self, pady=1, row=0, 392 self._canvas.config(bg=bg, 395 self._canvas.xview_moveto(0.5*(self.canvwidth - self.width + 30) / 397 self._canvas.yview_moveto(0.5*(self.canvheight- self.height + 30) / 405 cwidth = self._canvas.winfo_width() 406 cheight = self._canvas.winfo_height( 3558 _canvas = None variable in class:_Screen [all...] |
/external/chromium_org/chrome/test/functional/perf/endure_graphs/js/ |
plotter.js | [all...] |