Searched refs:scaleX (Results 1 - 25 of 25) sorted by relevance

/frameworks/base/core/java/android/view/
H A DDisplayList.java483 * @param scaleX The scale value of the display list
488 public abstract void setScaleX(float scaleX); argument
523 * @param scaleX The scaleX value of the display list
529 float rotation, float rotationX, float rotationY, float scaleX, float scaleY);
528 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DGLES20DisplayList.java279 public void setScaleX(float scaleX) { argument
281 nSetScaleX(mFinalizer.mNativeDisplayList, scaleX);
310 float rotation, float rotationX, float rotationY, float scaleX, float scaleY) {
313 rotation, rotationX, rotationY, scaleX, scaleY);
465 private static native void nSetScaleX(int displayList, float scaleX); argument
469 float rotationY, float scaleX, float scaleY);
309 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
467 nSetTransformationInfo(int displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DViewPropertyAnimator.java602 * This method will cause the View's <code>scaleX</code> property to be animated to the
609 public ViewPropertyAnimator scaleX(float value) { method in class:ViewPropertyAnimator
615 * This method will cause the View's <code>scaleX</code> property to be animated by the
H A DView.java2803 * based on the rotation, scaleX, and scaleY properties. The identity matrix
2812 * based on the rotation, scaleX, and scaleY properties. The identity matrix
2821 * transform matrix, based on whether the rotation or scaleX/Y properties
2828 * transform matrix, based on whether the rotation or scaleX/Y properties
2835 * transform matrix, based on whether the rotation or scaleX/Y properties
9620 * @param scaleX The scaling factor.
9626 public void setScaleX(float scaleX) { argument
9629 if (info.mScaleX != scaleX) {
9631 info.mScaleX = scaleX;
9635 mDisplayList.setScaleX(scaleX);
[all...]
/frameworks/base/libs/hwui/
H A DTextDropShadowCache.h37 flags(0), italicStyle(0.0f), scaleX(0), text(NULL), positions(NULL) {
56 scaleX = paint->getTextScaleX();
91 float scaleX; member in struct:android::uirenderer::ShadowText
H A DTextDropShadowCache.cpp41 hash = JenkinsHashMix(hash, android::hash_type(scaleX));
72 if (lhs.scaleX < rhs.scaleX) return -1;
73 if (lhs.scaleX > rhs.scaleX) return +1;
H A DDisplayList.h268 void setScaleX(float scaleX) { argument
269 if (scaleX != mScaleX) {
270 mScaleX = scaleX;
H A DPathTessellator.cpp106 float scaleX = sqrt(m00 * m00 + m01 * m01); local
108 inverseScaleX = (scaleX != 0) ? (1.0f / scaleX) : 1.0f;
H A DOpenGLRenderer.cpp2352 float scaleX = (dstRight - dstLeft) / (srcRight - srcLeft); local
2355 bool scaled = scaleX != 1.0f || scaleY != 1.0f;
2381 scale(scaleX, scaleY);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DScaledPathsActivity.java84 private void drawPath(Canvas canvas, float scaleX, float scaleY) { argument
86 canvas.scale(scaleX, scaleY);
89 canvas.translate(mPathBounds.width() * scaleX, 0.0f);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
H A DUtils.java132 PropertyValuesHolder scaleX = PropertyValuesHolder.ofKeyframe("scaleX", k0, k1, k2, k3);
135 ObjectAnimator.ofPropertyValuesHolder(labelToAnimate, scaleX, scaleY);
/frameworks/base/core/java/com/android/internal/app/
H A DPlatLogoActivity.java129 bg.animate().alpha(1f).scaleX(1f).setStartDelay(500).start();
130 letter.animate().alpha(0f).scaleY(0.5f).scaleX(0.5f)
139 logo.animate().alpha(1f).scaleX(1f).scaleY(1f)
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp237 float scaleX = float(info.w) / float(w); local
239 *scale = scaleX < scaleY ? scaleX : scaleY;
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp140 float scaleX, float scaleY) {
147 displayList->setScaleX(scaleX);
137 android_view_GLES20DisplayList_setTransformationInfo(JNIEnv* env, jobject clazz, DisplayList* displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java320 v.animate().withLayer().scaleX(s).scaleY(s).alpha(1f).setDuration(animationLen);
392 .scaleX(0.5f).scaleY(0.5f).alpha(0)
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java624 float scaleX = (float) mPreview.getWidth() / mImageWidth;
626 source.set(tx * scaleX, ty * scaleY, (tx + size) * scaleX,
/frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
H A DPhotoViewActivity.java837 ViewPropertyAnimator animator = mTemporaryImage.animate().scaleX(1f).scaleY(1f)
917 animator = mTemporaryImage.animate().scaleX(scale).scaleY(scale)
921 animator = mViewPager.animate().scaleX(scale).scaleY(scale)
/frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
H A DPhotoViewActivity.java836 ViewPropertyAnimator animator = mTemporaryImage.animate().scaleX(1f).scaleY(1f)
916 animator = mTemporaryImage.animate().scaleX(scale).scaleY(scale)
920 animator = mViewPager.animate().scaleX(scale).scaleY(scale)
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DGlowPadView.java510 "scaleX", targetScale,
522 "scaleX", ringScaleTarget,
543 "scaleX", 1.0f,
553 "scaleX", ringScale,
1051 float scaleX = 1f;
1065 scaleX = (1f * actualWidth - mMaxTargetWidth) /
1082 return Math.min(scaleX, scaleY);
/frameworks/base/core/java/android/provider/
H A DMediaStore.java845 float scaleX = width / source.getWidth();
848 matrix.setScale(scaleX, scaleY);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java465 /*package*/ static void setTextScaleX(Paint thisPaint, float scaleX) { argument
472 delegate.mTextScaleX = scaleX;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DCameraWidgetFrame.java302 .scaleX(1)
H A DPagedView.java367 public void setScaleX(float scaleX) { argument
368 super.setScaleX(scaleX);
2197 ObjectAnimator.ofFloat(this, "scaleX", mMinScale),
2347 ObjectAnimator.ofFloat(this, "scaleX", 1f),
2624 ObjectAnimator.ofFloat(dragView, "scaleX", toScale),
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp328 static void setTextScaleX(JNIEnv* env, jobject paint, jfloat scaleX) { argument
330 GraphicsJNI::getNativePaint(env, paint)->setTextScaleX(SkFloatToScalar(scaleX));
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1243 * @param scaleX set the paint's scale in X for drawing/measuring text.
1245 public native void setTextScaleX(float scaleX); argument

Completed in 456 milliseconds