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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTransformDistance.cpp 76 float scaleY = toSVGTransform.scale().height() - fromSVGTransform.scale().height();
77 m_transform.scaleNonUniform(scaleX, scaleY);
  /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 + ")");
  /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);
  /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);
  /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);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
AffineTransform.h 166 double scaleX, scaleY;
  /external/chromium_org/third_party/skia/src/core/
SkBitmapScaler.cpp 87 float scaleY = static_cast<float>(destHeight) /
93 scaleY, &fYFilter, convolveProcs);
SkPicture.cpp 101 SkScalar scaleY = matrix->getScaleY();
109 SkASSERT(scaleY == 0 || skewY == 0);
  /external/skia/src/core/
SkBitmapScaler.cpp 87 float scaleY = static_cast<float>(destHeight) /
93 scaleY, &fYFilter, convolveProcs);
SkPicture.cpp 101 SkScalar scaleY = matrix->getScaleY();
109 SkASSERT(scaleY == 0 || skewY == 0);
  /packages/apps/Camera2/src/com/android/camera/
AnimationManager.java 53 float scaleY = ((float) parentView.getHeight()) / ((float) view.getHeight());
54 float scale = scaleX > scaleY ? scaleX : scaleY;
92 ObjectAnimator.ofFloat(view, "scaleY", scale, 1f)
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 157 float scaleY = 3.0f;
160 expectedData[2] *= scaleY;
161 expectedData[3] *= scaleY;
164 m.scale(scaleX, scaleY);
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);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
DragImage.cpp 235 float scaleY = srcSize.height() / static_cast<float>(originalSize.height());
238 scaleY *= resizeRatio;
241 scale(scaleX, scaleY);
244 void DragImage::scale(float scaleX, float scaleY)
247 int imageHeight = scaleY * m_bitmap.height();
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEDisplacementMap.cpp 135 float scaleY = filter->applyVerticalScale(m_scale);
137 float scaleForColorY = scaleY / 255.0;
139 float scaledOffsetY = 0.5 - scaleY * 0.5;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
NativeImageSkia.cpp 189 SkBitmap NativeImageSkia::extractScaledImageFragment(const SkRect& srcRect, float scaleX, float scaleY, SkRect* scaledSrcRect) const
193 clampToInteger(roundf(imageSize.height() * scaleY)));
426 float scaleY = destBitmapHeight / normSrcRect.height();
433 SkBitmap resampled = extractScaledImageFragment(normSrcRect, scaleX, scaleY, &scaledSrcRect);
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
ViewfinderView.java 119 float scaleY = frame.height() / (float) previewFrame.height();
135 frameTop + (int) (point.getY() * scaleY),
146 frameTop + (int) (point.getY() * scaleY),
  /frameworks/native/cmds/flatland/
GLHelper.cpp 238 float scaleY = float(info.h) / float(h);
239 *scale = scaleX < scaleY ? scaleX : scaleY;
  /external/chromium_org/third_party/skia/include/utils/
SkMatrix44.h 378 SkMScalar scaleY() const { return fMat[1][1]; }
  /external/freetype/src/cff/
cf2hints.h 198 CF2_Fixed scaleY; /* matrix d */
250 CF2_Fixed scaleY,
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Feature.java 204 float scaleY = (float) Math.sqrt(m.m01 * m.m01 + m.m11 * m.m11 + m.m21 * m.m21);
209 transform.setScale(scaleX, scaleY, scaleZ);
  /external/jmonkeyengine/engine/src/core/com/jme3/shadow/
ShadowUtil.java 298 float scaleX, scaleY, scaleZ;
302 scaleY = 2.0f / (splitMax.y - splitMin.y);
304 offsetY = -0.5f * (splitMax.y + splitMin.y) * scaleY;
309 0f, scaleY, 0f, offsetY,
459 float scaleX, scaleY, scaleZ;
463 scaleY = (2.0f) / (cropMax.y - cropMin.y);
466 offsetY = -0.5f * (cropMax.y + cropMin.y) * scaleY;
474 0f, scaleY, 0f, offsetY,

Completed in 824 milliseconds

1 2 3 4