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.java556 * @param rotationX The rotation value of the display list, in degrees
561 public boolean setRotationX(float rotationX) { argument
562 return nSetRotationX(mNativeRenderNode, rotationX);
875 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.java3925 float rotationX = 0;
4017 rotationX = a.getFloat(attr, 0);
4412 setRotationX(rotationX);
11044 * axis. If the rotationX or rotationY properties are changed and this view is
11195 * @param rotationX The degrees of X rotation.
11206 public void setRotationX(float rotationX) { argument
11207 if (rotationX != getRotationX()) {
11209 mRenderNode.setRotationX(rotationX);
20894 * A Property wrapper around the <code>rotationX</code> functionality handled by the
20897 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
421 public void rotationX(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
422 ViewPropertyAnimatorCompatICS.rotationX(view, value);
908 * This method will cause the View's <code>rotationX</code> property to be animated to the
916 public ViewPropertyAnimatorCompat rotationX(float value) { method in class:ViewPropertyAnimatorCompat
919 IMPL.rotationX(this, view, value);
925 * This method will cause the View's <code>rotationX</code> property to be animated by the
/frameworks/base/libs/hwui/
H A DRenderProperties.h327 bool setRotationX(float rotationX) { argument
328 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 1249 milliseconds