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

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardWidgetCarousel.java137 float rotationY = - mAdjacentPagesAngle * boundedProgress;
140 v.setRotationY(rotationY);
163 PropertyValuesHolder rotationY;
175 rotationY = PropertyValuesHolder.ofFloat("rotationY", 0f);
176 ObjectAnimator a = ObjectAnimator.ofPropertyValuesHolder(child, alpha, outlineAlpha, rotationY);
195 float rotationY = - mAdjacentPagesAngle * boundedProgress;
202 transform[2] = rotationY;
234 PropertyValuesHolder rotationY;
252 rotationY
[all...]
/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/base/core/java/android/view/
H A DRenderNode.java582 * @param rotationY The rotation value of the display list, in degrees
587 public boolean setRotationY(float rotationY) { argument
588 return nSetRotationY(mNativeRenderNode, rotationY);
881 private static native boolean nSetRotationY(long renderNode, float rotationY); argument
H A DViewPropertyAnimator.java574 * This method will cause the View's <code>rotationY</code> property to be animated to the
581 public ViewPropertyAnimator rotationY(float value) { method in class:ViewPropertyAnimator
587 * This method will cause the View's <code>rotationY</code> property to be animated by the
H A DView.java3716 float rotationY = 0;
3810 rotationY = a.getFloat(attr, 0);
4184 setRotationY(rotationY);
10158 * axis. If the rotationX or rotationY properties are changed and this view is
10265 * @param rotationY The degrees of Y rotation.
10276 public void setRotationY(float rotationY) { argument
10277 if (rotationY != getRotationY()) {
10279 mRenderNode.setRotationY(rotationY);
19643 * A Property wrapper around the <code>rotationY</code> functionality handled by the
19646 public static final Property<View, Float> ROTATION_Y = new FloatProperty<View>("rotationY") {
[all...]
/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
165 public void rotationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
407 public void rotationY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
408 ViewPropertyAnimatorCompatICS.rotationY(view, value);
894 * This method will cause the View's <code>rotationY</code> property to be animated to the
902 public ViewPropertyAnimatorCompat rotationY(float value) { method in class:ViewPropertyAnimatorCompat
905 IMPL.rotationY(this, view, value);
911 * This method will cause the View's <code>rotationY</code> property to be animated by the
/frameworks/base/libs/hwui/
H A DRenderProperties.h307 bool setRotationY(float rotationY) { argument
308 return RP_SET_AND_DIRTY(mPrimitiveFields.mRotationY, rotationY);

Completed in 1792 milliseconds