Searched refs:rotationX (Results 1 - 8 of 8) sorted by relevance

/frameworks/support/v4/ics/android/support/v4/view/
H A DViewPropertyAnimatorCompatICS.java69 public static void rotationX(View view, float value) { method in class:ViewPropertyAnimatorCompatICS
70 view.animate().rotationX(value);
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java412 float translationZ, float scaleX, float scaleY, float rotationX,
419 view.setRotationX(rotationX);
430 public final float rotationX; field in class:ChangeTransform.Transforms
440 rotationX = view.getRotationX();
447 rotationX, rotationY, rotationZ);
461 thatTransform.rotationX == rotationX &&
411 setTransforms(View view, float translationX, float translationY, float translationZ, float scaleX, float scaleY, float rotationX, float rotationY, float rotationZ) argument
/frameworks/base/core/java/android/view/
H A DRenderNode.java520 * @param rotationX The rotation value of the display list, in degrees
525 public boolean setRotationX(float rotationX) { argument
526 return nSetRotationX(mNativeRenderNode, rotationX);
863 private static native boolean nSetRotationX(long renderNode, float rotationX); argument
H A DViewPropertyAnimator.java546 * This method will cause the View's <code>rotationX</code> property to be animated to the
553 public ViewPropertyAnimator rotationX(float value) { method in class:ViewPropertyAnimator
559 * This method will cause the View's <code>rotationX</code> property to be animated by the
H A DView.java4151 float rotationX = 0;
4243 rotationX = a.getFloat(attr, 0);
4656 setRotationX(rotationX);
11863 * axis. If the rotationX or rotationY properties are changed and this view is
12014 * @param rotationX The degrees of X rotation.
12025 public void setRotationX(float rotationX) { argument
12026 if (rotationX != getRotationX()) {
12028 mRenderNode.setRotationX(rotationX);
21991 * A Property wrapper around the <code>rotationX</code> functionality handled by the
21994 public static final Property<View, Float> ROTATION_X = new FloatProperty<View>("rotationX") {
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java50 public void rotationX(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
157 public void rotationX(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
423 public void rotationX(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
424 ViewPropertyAnimatorCompatICS.rotationX(view, value);
922 * This method will cause the View's <code>rotationX</code> property to be animated to the
930 public ViewPropertyAnimatorCompat rotationX(float value) { method in class:ViewPropertyAnimatorCompat
933 IMPL.rotationX(this, view, value);
939 * This method will cause the View's <code>rotationX</code> property to be animated by the
/frameworks/base/libs/hwui/
H A DRenderProperties.h328 bool setRotationX(float rotationX) { argument
329 return RP_SET_AND_DIRTY(mPrimitiveFields.mRotationX, rotationX);
/frameworks/base/core/java/android/widget/
H A DStackView.java1423 float rotationX = v.getRotationX();
1432 v.setRotationX(rotationX);

Completed in 177 milliseconds