OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:canvasHeight
(Results
1 - 17
of
17
) sorted by null
/external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls_draw_back_as_aligned_image_data.js
11
backImageCanvas.height =
canvasHeight
;
13
backContext.drawImage(backImage, 0, 0, canvasWidth,
canvasHeight
);
14
backImageData = backContext.getImageData(0, 0, canvasWidth,
canvasHeight
)
bouncing_balls_draw_back_as_aligned_canvas.js
11
backImageCanvas.height =
canvasHeight
;
13
backContext.drawImage(backImage, 0, 0, canvasWidth,
canvasHeight
);
bouncing_balls_draw_back_as_canvas.js
17
canvasContext.drawImage(backImageCanvas, 0, 0, canvasWidth,
canvasHeight
);
bouncing_balls_draw_back_as_gradient.js
14
canvasContext.fillRect(0, 0, canvasWidth,
canvasHeight
);
bouncing_balls_draw_back_as_image.js
12
canvasContext.drawImage(backImage, 0, 0, canvasWidth,
canvasHeight
);
bouncing_balls_draw_back_as_white.js
11
canvasContext.fillRect(0, 0, canvasWidth,
canvasHeight
);
bouncing_balls.js
21
var
canvasHeight
;
62
canvasHeight
= window.innerHeight;
64
canvas.setAttribute('height',
canvasHeight
);
66
borderY = ballDiameter/
canvasHeight
;
170
drawBall(x * canvasWidth, y *
canvasHeight
, angle); // externally defined
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
DetermineFovActivity.java
190
int
canvasHeight
= canvas.getHeight();
198
if (scaledHeight <
canvasHeight
) {
201
int pad = (
canvasHeight
- scaledHeight) / 2;
205
scale = (float)
canvasHeight
/ photoHeight;
208
drawRect.set(pad, 0, pad + scaledWidth - 1,
canvasHeight
);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileFlameChart.js
598
var
canvasHeight
= this._overviewCanvas.height;
604
var yScaleFactor =
canvasHeight
/ (this._dataProvider.maxStackDepth() * 1.1);
609
context.moveTo(-lineWidth,
canvasHeight
+ lineWidth);
610
context.lineTo(-lineWidth, Math.round(
canvasHeight
- drawData[0] * yScaleFactor - offsetFromBottom));
613
value = Math.round(
canvasHeight
- drawData[x] * yScaleFactor - offsetFromBottom);
617
context.lineTo(canvasWidth + lineWidth,
canvasHeight
+ lineWidth);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/screencast/
ScreencastView.js
453
var
canvasHeight
= this._canvasElement.getBoundingClientRect().height;
455
this._canvasElement.height = window.devicePixelRatio *
canvasHeight
;
464
this._context.fillRect(0, this._screenOffsetTop * this._screenZoom + this._imageElement.naturalHeight * this._imageZoom, canvasWidth,
canvasHeight
);
580
var
canvasHeight
= this._canvasElement.getBoundingClientRect().height;
609
if (anchorTop >
canvasHeight
) {
610
boxY =
canvasHeight
- titleHeight - arrowHeight;
615
} else if (anchorBottom + titleHeight + arrowHeight <
canvasHeight
) {
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoderTest.cpp
293
const int
canvasHeight
= 29;
310
EXPECT_EQ(
canvasHeight
, frame->getSkBitmap().height());
335
const int
canvasHeight
= 87;
353
EXPECT_EQ(
canvasHeight
, frame->getSkBitmap().height());
378
const int
canvasHeight
= 87;
396
EXPECT_EQ(
canvasHeight
, frame->getSkBitmap().height());
/cts/suite/cts/deviceTests/browserbench/assets/octane/
raytrace.js
609
canvasHeight
: 100,
620
this.options.
canvasHeight
/= this.options.pixelHeight;
651
var
canvasHeight
= this.options.
canvasHeight
;
654
for(var y=0; y <
canvasHeight
; y++){
656
var yp = y * 1.0 /
canvasHeight
* 2 - 1;
892
canvasHeight
: imageHeight,
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-raytrace.js
635
canvasHeight
: 100,
646
this.options.
canvasHeight
/= this.options.pixelHeight;
677
var
canvasHeight
= this.options.
canvasHeight
;
680
for(var y=0; y <
canvasHeight
; y++){
682
var yp = y * 1.0 /
canvasHeight
* 2 - 1;
918
canvasHeight
: imageHeight,
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-raytrace.js
635
canvasHeight
: 100,
646
this.options.
canvasHeight
/= this.options.pixelHeight;
677
var
canvasHeight
= this.options.
canvasHeight
;
680
for(var y=0; y <
canvasHeight
; y++){
682
var yp = y * 1.0 /
canvasHeight
* 2 - 1;
918
canvasHeight
: imageHeight,
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-raytrace.js
604
canvasHeight
: 100,
615
this.options.
canvasHeight
/= this.options.pixelHeight;
646
var
canvasHeight
= this.options.
canvasHeight
;
649
for(var y=0; y <
canvasHeight
; y++){
651
var yp = y * 1.0 /
canvasHeight
* 2 - 1;
887
canvasHeight
: imageHeight,
/external/chromium_org/v8/benchmarks/
raytrace.js
609
canvasHeight
: 100,
620
this.options.
canvasHeight
/= this.options.pixelHeight;
651
var
canvasHeight
= this.options.
canvasHeight
;
654
for(var y=0; y <
canvasHeight
; y++){
656
var yp = y * 1.0 /
canvasHeight
* 2 - 1;
892
canvasHeight
: imageHeight,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
Layers3DView.js
275
var
canvasHeight
= this._canvasElement.height;
277
var scaleY =
canvasHeight
/ baseHeight / scaleFactorForMargins;
284
return new WebKitCSSMatrix().translate(offsetX, offsetY, 0).scale(scale, scale, scale).translate(canvasWidth / 2,
canvasHeight
/ 2, 0)
[
all
...]
Completed in 399 milliseconds