Searched defs:rotationY (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/v4/ics/android/support/v4/view/
H A DViewPropertyAnimatorCompatICS.java77 public static void rotationY(View view, float value) { method in class:ViewPropertyAnimatorCompatICS
78 view.animate().rotationY(value);
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java413 float rotationY, float rotationZ) {
420 view.setRotationY(rotationY);
431 public final float rotationY; field in class:ChangeTransform.Transforms
441 rotationY = view.getRotationY();
447 rotationX, rotationY, rotationZ);
462 thatTransform.rotationY == rotationY &&
411 setTransforms(View view, float translationX, float translationY, float translationZ, float scaleX, float scaleY, float rotationX, float rotationY, float rotationZ) argument
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java52 public void rotationY(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
169 public void rotationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
433 public void rotationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
434 ViewPropertyAnimatorCompatICS.rotationY(view, value);
956 * This method will cause the View's <code>rotationY</code> property to be animated to the
964 public ViewPropertyAnimatorCompat rotationY(float value) { method in class:ViewPropertyAnimatorCompat
967 IMPL.rotationY(this, view, value);
973 * This method will cause the View's <code>rotationY</code> property to be animated by the
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java572 * This method will cause the View's <code>rotationY</code> property to be animated to the
579 public ViewPropertyAnimator rotationY(float value) { method in class:ViewPropertyAnimator
585 * This method will cause the View's <code>rotationY</code> property to be animated by the
H A DRenderNode.java541 * @param rotationY The rotation value of the display list, in degrees
546 public boolean setRotationY(float rotationY) { argument
547 return nSetRotationY(mNativeRenderNode, rotationY);
864 private static native boolean nSetRotationY(long renderNode, float rotationY); argument
H A DView.java4152 float rotationY = 0;
4247 rotationY = a.getFloat(attr, 0);
4657 setRotationY(rotationY);
11863 * axis. If the rotationX or rotationY properties are changed and this view is
11970 * @param rotationY The degrees of Y rotation.
11981 public void setRotationY(float rotationY) { argument
11982 if (rotationY != getRotationY()) {
11984 mRenderNode.setRotationY(rotationY);
22007 * A Property wrapper around the <code>rotationY</code> functionality handled by the
22010 public static final Property<View, Float> ROTATION_Y = new FloatProperty<View>("rotationY") {
[all...]
/frameworks/base/libs/hwui/
H A DRenderProperties.h336 bool setRotationY(float rotationY) { argument
337 return RP_SET_AND_DIRTY(mPrimitiveFields.mRotationY, rotationY);

Completed in 325 milliseconds