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

/frameworks/base/core/java/android/transition/
H A DChangeTransform.java415 float rotationY, float rotationZ) {
422 view.setRotationY(rotationY);
433 public final float rotationY; field in class:ChangeTransform.Transforms
443 rotationY = view.getRotationY();
449 rotationX, rotationY, rotationZ);
464 thatTransform.rotationY == rotationY &&
413 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.java564 * @param rotationY The rotation value of the display list, in degrees
569 public boolean setRotationY(float rotationY) { argument
570 return nSetRotationY(mNativeRenderNode, rotationY);
935 private static native boolean nSetRotationY(long renderNode, float rotationY); argument
H A DViewPropertyAnimator.java573 * This method will cause the View's <code>rotationY</code> property to be animated to the
580 public ViewPropertyAnimator rotationY(float value) { method in class:ViewPropertyAnimator
586 * This method will cause the View's <code>rotationY</code> property to be animated by the
H A DView.java4742 float rotationY = 0;
4851 rotationY = a.getFloat(attr, 0);
5334 setRotationY(rotationY);
13824 * axis. If the rotationX or rotationY properties are changed and this view is
13931 * @param rotationY The degrees of Y rotation.
13942 public void setRotationY(float rotationY) { argument
13943 if (rotationY != getRotationY()) {
13945 mRenderNode.setRotationY(rotationY);
24513 * A Property wrapper around the <code>rotationY</code> functionality handled by the
24516 public static final Property<View, Float> ROTATION_Y = new FloatProperty<View>("rotationY") {
[all...]
/frameworks/base/libs/hwui/
H A DRenderProperties.h338 bool setRotationY(float rotationY) { argument
339 return RP_SET_AND_DIRTY(mPrimitiveFields.mRotationY, rotationY);
/frameworks/support/compat/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java369 * This method will cause the View's <code>rotationY</code> property to be animated to the
375 public ViewPropertyAnimatorCompat rotationY(float value) { method in class:ViewPropertyAnimatorCompat
378 view.animate().rotationY(value);
384 * This method will cause the View's <code>rotationY</code> property to be animated by the
/frameworks/support/transition/src/android/support/transition/
H A DChangeTransform.java440 float rotationY, float rotationZ) {
447 view.setRotationY(rotationY);
438 setTransforms(View view, float translationX, float translationY, float translationZ, float scaleX, float scaleY, float rotationX, float rotationY, float rotationZ) argument

Completed in 275 milliseconds