HomeSort by relevance Sort by last modified time
    Searched refs:scaleY (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/proguard/src/proguard/gui/splash/
ImageSprite.java 36 private final VariableDouble scaleY;
45 * @param scaleY the variable y-scale of the image.
51 VariableDouble scaleY)
57 this.scaleY = scaleY;
69 double scale_y = scaleY.getDouble(time);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMatrix.java 15 private float scaleY = 1;
19 // skewY=3, scaleY=4, transY=5
37 scaleY = shadowOf(src).scaleY;
63 scaleY *= sy;
72 return scaleY;
ShadowCanvas.java 30 private float scaleY = 1;
53 this.scaleY = sy;
59 this.scaleY = sy;
82 if (scaleX != 1 && scaleY != 1) {
83 appendDescription(" scaled by (" + scaleX + "," + scaleY + ")");
  /external/replicaisland/src/com/replica/replicaisland/
ScrollableBitmap.java 37 public void draw(float x, float y, float scaleX, float scaleY) {
38 super.draw(x - mScrollOriginX, y - mScrollOriginY, scaleX, scaleY);
DrawableObject.java 29 public abstract void draw(float x, float y, float scaleX, float scaleY);
TiledBackgroundVertexGrid.java 37 public void draw(float x, float y, float scaleX, float scaleY) {
GameRenderer.java 213 final float scaleY = mScaleY;
225 element.mDrawable.draw(x, y, scaleX, scaleY);
273 float scaleY = (float)h / mHeight;
275 final int viewportHeight = (int)(mHeight * scaleY);
278 mScaleY = scaleY;
DrawableBitmap.java 97 * @param scaleY The vertical scale factor between the bitmap resolution and the display resolution.
100 public void draw(float x, float y, float scaleX, float scaleY) {
138 ((GL11Ext) gl).glDrawTexfOES(snappedX * scaleX, snappedY * scaleY,
139 getPriority(), width * scaleX, height * scaleY);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix3fTest.java 148 float scaleY = 3.0f;
153 expectedData[3] *= scaleY;
154 expectedData[4] *= scaleY;
155 expectedData[5] *= scaleY;
161 m.scale(scaleX, scaleY, scaleZ);
168 expectedData[3] *= scaleY;
169 expectedData[4] *= scaleY;
170 expectedData[5] *= scaleY;
173 m.scale(scaleX, scaleY);
Matrix4fTest.java 143 float scaleY = 3.0f;
149 expectedData[4] *= scaleY;
150 expectedData[5] *= scaleY;
151 expectedData[6] *= scaleY;
152 expectedData[7] *= scaleY;
159 m.scale(scaleX, scaleY, scaleZ);
  /development/samples/devbytes/animation/LiveButton/src/com/example/android/livebutton/
LiveButton.java 55 scaleX(.7f).scaleY(.7f);
58 scaleX(1f).scaleY(1f);
  /external/skia/legacy/src/animator/
SkDrawMatrix.h 53 void scale(SkScalar scaleX, SkScalar scaleY, SkPoint& center) {
54 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
  /external/skia/src/animator/
SkDrawMatrix.h 53 void scale(SkScalar scaleX, SkScalar scaleY, SkPoint& center) {
54 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
ImageLayerChromium.cpp 110 float scaleY = destSize.height() / static_cast<float>(sourceRect.size().height());
111 transform.scale3d(scaleX, scaleY, 1.0f);
  /frameworks/base/core/java/android/view/
DisplayList.java 487 * @param scaleY The scale value of the display list
492 public abstract void setScaleY(float scaleY);
511 * @param scaleY The scaleY value of the display list
516 float rotation, float rotationX, float rotationY, float scaleX, float scaleY);
GLES20DisplayList.java 291 public void setScaleY(float scaleY) {
293 nSetScaleY(mFinalizer.mNativeDisplayList, scaleY);
307 float rotation, float rotationX, float rotationY, float scaleX, float scaleY) {
310 rotation, rotationX, rotationY, scaleX, scaleY);
463 private static native void nSetScaleY(int displayList, float scaleY);
466 float rotationY, float scaleX, float scaleY);
  /external/webkit/Source/WebCore/css/
WebKitCSSMatrix.cpp 117 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::scale(double scaleX, double scaleY, double scaleZ) const
121 if (isnan(scaleY))
122 scaleY = scaleX;
125 return WebKitCSSMatrix::create(TransformationMatrix(m_matrix).scale3d(scaleX, scaleY, scaleZ));
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
Utils.java 126 PropertyValuesHolder scaleY = PropertyValuesHolder.ofKeyframe("scaleY", k0, k1, k2, k3);
128 ObjectAnimator.ofPropertyValuesHolder(labelToAnimate, scaleX, scaleY);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PointTestCases.java 55 public TestLayoutCanvas(float scaleX, float scaleY, float translateX, float translateY) {
59 this.mScaleY = scaleY;
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
TiledTexture.java 254 // | | by (scaleX, scaleY) | +----+ |
260 float scaleY) {
262 y + (src.top - y0) * scaleY,
264 y + (src.bottom - y0) * scaleY);
274 float scaleY = (float) height / mHeight;
280 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY);
293 float scaleY = (float) height / mHeight;
299 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY);
315 float scaleY = target.height() / source.height();
323 mapRect(dest, src, x0, y0, x, y, scaleX, scaleY);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
Image.cpp 92 float scaleX = 1.0f, scaleY = 1.0f;
97 scaleY = dstRect.height() / srcRect.height();
100 scaleX = scaleY;
102 scaleY = scaleX;
104 return FloatSize(scaleX, scaleY);
  /external/webkit/Source/WebCore/platform/graphics/qt/
TileQt.cpp 161 qreal scaleY = worldTransform.m22();
164 target.y() * scaleY,
166 target.height() * scaleY).toAlignedRect();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterGeometry.java 114 float scaleY = 1;
117 scaleY = (float) outputY / height;
129 m1.postScale(scaleX, scaleY, displayCenter[0], displayCenter[1]);
  /cts/tests/tests/textureview/src/android/textureview/cts/
TextureViewTestActivity.java 48 ObjectAnimator scaleY = ObjectAnimator.ofFloat(mTexView, "scaleY", 0.3f, 1f);
50 animSet.play(rotate).with(fadeIn).with(scaleY);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ScaledPathsActivity.java 84 private void drawPath(Canvas canvas, float scaleX, float scaleY) {
86 canvas.scale(scaleX, scaleY);

Completed in 1335 milliseconds

1 2 3 4 5