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

/frameworks/base/core/java/android/view/
H A DDisplayList.java214 * Sets the scaleX value for the DisplayList
216 * @param scaleX The scaleX value of the DisplayList
219 public abstract void setScaleX(float scaleX); argument
238 * @param scaleX The scaleX value of the DisplayList
242 float rotation, float rotationX, float rotationY, float scaleX, float scaleY);
241 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DGLES20DisplayList.java205 public void setScaleX(float scaleX) { argument
207 nSetScaleX(mFinalizer.mNativeDisplayList, scaleX);
220 float rotation, float rotationX, float rotationY, float scaleX, float scaleY) {
223 rotation, rotationX, rotationY, scaleX, scaleY);
327 private static native void nSetScaleX(int displayList, float scaleX); argument
331 float rotationY, float scaleX, float scaleY);
219 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
329 nSetTransformationInfo(int displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DViewPropertyAnimator.java548 * This method will cause the View's <code>scaleX</code> property to be animated to the
555 public ViewPropertyAnimator scaleX(float value) { method in class:ViewPropertyAnimator
561 * This method will cause the View's <code>scaleX</code> property to be animated by the
H A DView.java2619 * based on the rotation, scaleX, and scaleY properties. The identity matrix
2628 * based on the rotation, scaleX, and scaleY properties. The identity matrix
2637 * transform matrix, based on whether the rotation or scaleX/Y properties
2644 * transform matrix, based on whether the rotation or scaleX/Y properties
2651 * transform matrix, based on whether the rotation or scaleX/Y properties
9128 * @param scaleX The scaling factor.
9134 public void setScaleX(float scaleX) { argument
9137 if (info.mScaleX != scaleX) {
9139 info.mScaleX = scaleX;
9143 mDisplayList.setScaleX(scaleX);
[all...]
/frameworks/base/libs/hwui/
H A DTextDropShadowCache.h56 scaleX = *(uint32_t*) &scaleXFloat;
68 uint32_t scaleX; member in struct:android::uirenderer::ShadowText
91 LTE_INT(scaleX) {
H A DFontRenderer.cpp478 uint32_t scaleX = *(uint32_t*) &scaleXFloat; local
483 scaleX, style, strokeWidth);
559 uint32_t scaleX = *(uint32_t*) &scaleXFloat; local
565 fontSize, flags, italicStyle, scaleX, style, strokeWidth);
H A DDisplayListRenderer.h246 void setScaleX(float scaleX) { argument
247 if (scaleX != mScaleX) {
248 mScaleX = scaleX;
H A DPathRenderer.cpp58 float scaleX = sqrt(m00 * m00 + m01 * m01); local
60 inverseScaleX = (scaleX != 0) ? (1.0f / scaleX) : 1.0f;
H A DOpenGLRenderer.cpp2049 float scaleX = sqrtf(m00 * m00 + m01 * m01); local
2052 inverseScaleX = (scaleX != 0) ? (inverseScaleX / scaleX) : 0;
/frameworks/base/libs/hwui/font/
H A DFont.h68 int flags, uint32_t italicStyle, uint32_t scaleX, SkPaint::Style style,
92 uint32_t scaleX, SkPaint::Style style, uint32_t strokeWidth);
H A DFont.cpp37 int flags, uint32_t italicStyle, uint32_t scaleX,
40 mFlags(flags), mItalicStyle(italicStyle), mScaleX(scaleX),
422 int flags, uint32_t italicStyle, uint32_t scaleX,
430 font->mScaleX == scaleX && font->mStyle == style &&
437 scaleX, style, strokeWidth);
36 Font(FontRenderer* state, uint32_t fontId, float fontSize, int flags, uint32_t italicStyle, uint32_t scaleX, SkPaint::Style style, uint32_t strokeWidth) argument
421 create(FontRenderer* state, uint32_t fontId, float fontSize, int flags, uint32_t italicStyle, uint32_t scaleX, SkPaint::Style style, uint32_t strokeWidth) argument
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DCameraWidgetFrame.java264 final float scaleX = (float) finishWidth / startWidth;
266 final float scale = Math.round( Math.max(scaleX, scaleY) * 100) / 100f;
279 scaleX, scaleY,
284 .scaleX(scale)
298 .scaleX(1)
H A DPagedView.java349 public void setScaleX(float scaleX) { argument
350 super.setScaleX(scaleX);
2062 ObjectAnimator.ofFloat(this, "scaleX", mMinScale),
2207 ObjectAnimator.ofFloat(this, "scaleX", 1f),
2480 ObjectAnimator.ofFloat(dragView, "scaleX", toScale),
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp116 float scaleX, float scaleY) {
123 displayList->setScaleX(scaleX);
113 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/core/jni/android/graphics/
H A DTextLayoutCache.cpp835 float scaleX = paint->getTextScaleX(); local
836 mFontRec.x_ppem = floor(scaleX * textSize + 0.5);
844 mFontRec.x_scale = emScale * scaleX * textSize;
H A DPaint.cpp321 static void setTextScaleX(JNIEnv* env, jobject paint, jfloat scaleX) { argument
323 GraphicsJNI::getNativePaint(env, paint)->setTextScaleX(SkFloatToScalar(scaleX));
/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.java834 float scaleX = width / source.getWidth();
837 matrix.setScale(scaleX, scaleY);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java466 /*package*/ static void setTextScaleX(Paint thisPaint, float scaleX) { argument
473 delegate.mTextScaleX = scaleX;
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1143 * @param scaleX set the paint's scale in X for drawing/measuring text.
1145 public native void setTextScaleX(float scaleX); argument

Completed in 339 milliseconds