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

1 2 3 4 5 6 7 8 91011>>

  /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/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
Sprite.java 16 private float scaleY = 1;
31 gg.scale(scaleX, scaleY);
41 public void setScale(float scaleX, float scaleY) {
43 this.scaleY = scaleY;
68 return scaleY;
  /external/robolectric/v1/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/pdf/src/android/graphics/pdf/cts/
PdfRendererTransformTest.java 79 for (float scaleY : scales) {
84 || scaleX != 0 || scaleY != 0) {
89 if (scaleX != 0 || scaleY != 0) {
90 transformation.postScale(scaleX, 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);
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
CardActionButton.java 53 animate().scaleX(0.98f).scaleY(0.98f).setDuration(100)
64 animate().scaleX(1.f).scaleY(1.f).setDuration(50)
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
CardActionButton.java 53 animate().scaleX(0.98f).scaleY(0.98f).setDuration(100)
64 animate().scaleX(1.f).scaleY(1.f).setDuration(50)
  /development/samples/devbytes/animation/LiveButton/src/com/example/android/livebutton/
LiveButton.java 55 scaleX(.7f).scaleY(.7f);
58 scaleX(1f).scaleY(1f);
  /packages/apps/Launcher3/src/com/android/launcher3/anim/
PropertyListBuilder.java 30 public PropertyListBuilder scaleY(float value) {
36 * Helper method to set both scaleX and scaleY
39 return scaleX(value).scaleY(value);
  /cts/tests/tests/transition/src/android/transition/cts/
ChangeImageTransformTest.java 123 float scaleY = ((float)imageViewHeight)/imageHeight;
126 matrix.postScale(scaleX, scaleY);
137 float scaleY = ((float)imageViewHeight)/imageHeight;
139 float maxScale = Math.max(scaleX, scaleY);
159 float scaleY = ((float)imageViewHeight)/imageHeight;
161 float minScale = Math.min(scaleX, scaleY);
181 float scaleY = ((float)imageViewHeight)/imageHeight;
183 float minScale = Math.min(scaleX, scaleY);
197 float scaleY = ((float)imageViewHeight)/imageHeight;
199 float minScale = Math.min(scaleX, scaleY);
    [all...]
  /frameworks/support/transition/tests/src/android/support/transition/
ChangeImageTransformTest.java 111 float scaleY = ((float) imageViewHeight) / imageHeight;
114 matrix.postScale(scaleX, scaleY);
125 float scaleY = ((float) imageViewHeight) / imageHeight;
127 float maxScale = Math.max(scaleX, scaleY);
147 float scaleY = ((float) imageViewHeight) / imageHeight;
149 float minScale = Math.min(scaleX, scaleY);
169 float scaleY = ((float) imageViewHeight) / imageHeight;
171 float minScale = Math.min(scaleX, scaleY);
185 float scaleY = ((float) imageViewHeight) / imageHeight;
187 float minScale = Math.min(scaleX, scaleY);
    [all...]
  /external/pdfium/xfa/fxbarcode/pdf417/
BC_PDF417Writer.cpp 83 int32_t scaleY = height / outHeight;
85 if (scaleX < scaleY) {
88 scale = scaleY;
  /development/samples/devbytes/animation/SlidingFragments/src/com/example/android/slidingfragments/
SlidingFragments.java 142 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 0.8f);
144 ofPropertyValuesHolder(movingFragmentView, rotateX, scaleX, scaleY);
173 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
175 ofPropertyValuesHolder(movingFragmentView, rotateX, scaleX, scaleY);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
BaseScrollAdapterFragment.java 197 float scaleY = (float) view.getHeight() / selectorHeight;
206 mSelectorView.setScaleY(scaleY);
210 animation.scaleY(scaleY);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
Utils.java 133 PropertyValuesHolder scaleY = PropertyValuesHolder.ofKeyframe("scaleY", k0, k1, k2, k3);
135 ObjectAnimator.ofPropertyValuesHolder(labelToAnimate, scaleX, scaleY);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
GlifPatternDrawable.java 161 float scaleY = drawableHeight / VIEWBOX_HEIGHT;
162 float scale = Math.max(scaleX, scaleY);
263 float scaleY = drawableBounds.height() / (float) bitmapHeight;
266 canvas.scale(scaleX, scaleY);
267 if (scaleY > scaleX) {
270 canvas.scale(scaleY / scaleX, 1f, SCALE_FOCUS_X * bitmapWidth, 0f);
271 } else if (scaleX > scaleY) {
274 canvas.scale(1f, scaleX / scaleY, 0f, SCALE_FOCUS_Y * bitmapHeight);
  /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 261 // | | by (scaleX, scaleY) | +----+ |
267 float scaleY) {
269 y + (src.top - y0) * scaleY,
271 y + (src.bottom - y0) * scaleY);
281 float scaleY = (float) height / mHeight;
287 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY);
300 float scaleY = (float) height / mHeight;
306 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY);
322 float scaleY = target.height() / source.height();
330 mapRect(dest, src, x0, y0, x, y, scaleX, scaleY);
    [all...]

Completed in 1144 milliseconds

1 2 3 4 5 6 7 8 91011>>