OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:canvasheight
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContext3DCairo.cpp
87
void GraphicsContext3D::paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, int canvasWidth, int
canvasHeight
, PlatformContextCairo* context)
89
if (!imagePixels || imageWidth <= 0 || imageHeight <= 0 || canvasWidth <= 0 ||
canvasHeight
<= 0 || !context)
95
cairo_rectangle(cr, 0, 0, canvasWidth,
canvasHeight
);
108
cairo_rectangle(cr, 0, 0, canvasWidth, -
canvasHeight
);
/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/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContext3DCG.cpp
257
void GraphicsContext3D::paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, int canvasWidth, int
canvasHeight
, CGContextRef context)
259
if (!imagePixels || imageWidth <= 0 || imageHeight <= 0 || canvasWidth <= 0 ||
canvasHeight
<= 0 || !context)
268
CGRect rect = CGRectMake(0, 0, canvasWidth,
canvasHeight
);
/external/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/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/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/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,
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
Spline.java
218
public void draw(Canvas canvas, int color, int canvasWidth, int
canvasHeight
,
221
float h =
canvasHeight
- mCurveHandleSize;
/external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h
767
int canvasWidth, int
canvasHeight
, CGContextRef context);
770
int canvasWidth, int
canvasHeight
, PlatformContextCairo* context);
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java
859
int
canvasHeight
= canvasSize.height;
866
canvasHeight
-= 4;
890
int vDelta =
canvasHeight
- sceneHeight;
899
double vScale = (
canvasHeight
- 2 * vMargin) / (double) sceneHeight;
[
all
...]
Completed in 470 milliseconds