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

/frameworks/support/compat/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java339 * This method will cause the View's <code>rotationX</code> property to be animated to the
345 public ViewPropertyAnimatorCompat rotationX(float value) { method in class:ViewPropertyAnimatorCompat
348 view.animate().rotationX(value);
354 * This method will cause the View's <code>rotationX</code> property to be animated by the
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java414 float translationZ, float scaleX, float scaleY, float rotationX,
421 view.setRotationX(rotationX);
432 public final float rotationX; field in class:ChangeTransform.Transforms
442 rotationX = view.getRotationX();
449 rotationX, rotationY, rotationZ);
463 thatTransform.rotationX == rotationX &&
413 setTransforms(View view, float translationX, float translationY, float translationZ, float scaleX, float scaleY, float rotationX, float rotationY, float rotationZ) argument
/frameworks/support/transition/src/android/support/transition/
H A DChangeTransform.java439 float translationZ, float scaleX, float scaleY, float rotationX,
446 view.setRotationX(rotationX);
438 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 DViewPropertyAnimator.java547 * This method will cause the View's <code>rotationX</code> property to be animated to the
554 public ViewPropertyAnimator rotationX(float value) { method in class:ViewPropertyAnimator
560 * This method will cause the View's <code>rotationX</code> property to be animated by the
H A DRenderNode.java543 * @param rotationX The rotation value of the display list, in degrees
548 public boolean setRotationX(float rotationX) { argument
549 return nSetRotationX(mNativeRenderNode, rotationX);
933 private static native boolean nSetRotationX(long renderNode, float rotationX); argument
H A DView.java4703 float rotationX = 0;
4809 rotationX = a.getFloat(attr, 0);
5295 setRotationX(rotationX);
13756 * axis. If the rotationX or rotationY properties are changed and this view is
13907 * @param rotationX The degrees of X rotation.
13918 public void setRotationX(float rotationX) { argument
13919 if (rotationX != getRotationX()) {
13921 mRenderNode.setRotationX(rotationX);
24424 * A Property wrapper around the <code>rotationX</code> functionality handled by the
24427 public static final Property<View, Float> ROTATION_X = new FloatProperty<View>("rotationX") {
[all...]
/frameworks/base/libs/hwui/
H A DRenderProperties.h330 bool setRotationX(float rotationX) { argument
331 return RP_SET_AND_DIRTY(mPrimitiveFields.mRotationX, rotationX);

Completed in 249 milliseconds