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

/frameworks/base/core/java/android/view/
H A DDisplayList.java206 * Sets the rotationY value for the DisplayList
208 * @param rotationY The rotationY value of the DisplayList
211 public abstract void setRotationY(float rotationY); argument
237 * @param rotationY The rotationY value of the DisplayList
242 float rotation, float rotationX, float rotationY, float scaleX, float scaleY);
241 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DGLES20DisplayList.java198 public void setRotationY(float rotationY) { argument
200 nSetRotationY(mFinalizer.mNativeDisplayList, rotationY);
220 float rotation, float rotationX, float rotationY, float scaleX, float scaleY) {
223 rotation, rotationX, rotationY, scaleX, scaleY);
326 private static native void nSetRotationY(int displayList, float rotationY); argument
331 float rotationY, float scaleX, float scaleY);
219 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
329 nSetTransformationInfo(int displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DViewPropertyAnimator.java470 * This method will cause the View's <code>rotationY</code> property to be animated to the
477 public ViewPropertyAnimator rotationY(float value) { method in class:ViewPropertyAnimator
483 * This method will cause the View's <code>rotationY</code> property to be animated by the
H A DView.java2659 * The Camera object is used to compute a 3D matrix when rotationX or rotationY are set.
3307 float rotationY = 0;
3393 rotationY = a.getFloat(attr, 0);
3717 setRotationY(rotationY);
8901 * axis. If the rotationX or rotationY properties are changed and this view is
9029 * @param rotationY The degrees of Y rotation.
9040 public void setRotationY(float rotationY) { argument
9043 if (info.mRotationY != rotationY) {
9045 info.mRotationY = rotationY;
9049 mDisplayList.setRotationY(rotationY);
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardWidgetCarousel.java119 float rotationY = - mAdjacentPagesAngle * boundedProgress;
122 v.setRotationY(rotationY);
145 PropertyValuesHolder rotationY;
157 rotationY = PropertyValuesHolder.ofFloat("rotationY", 0f);
158 ObjectAnimator a = ObjectAnimator.ofPropertyValuesHolder(child, alpha, outlineAlpha, rotationY);
177 float rotationY = - mAdjacentPagesAngle * boundedProgress;
184 transform[2] = rotationY;
216 PropertyValuesHolder rotationY;
234 rotationY
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp115 float translationX, float translationY, float rotation, float rotationX, float rotationY,
122 displayList->setRotationY(rotationY);
113 android_view_GLES20DisplayList_setTransformationInfo(JNIEnv* env, jobject clazz, DisplayList* displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.h234 void setRotationY(float rotationY) { argument
235 if (rotationY != mRotationY) {
236 mRotationY = rotationY;

Completed in 66 milliseconds