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

/frameworks/base/core/java/android/view/
H A DDisplayList.java466 * @param rotationY The rotation value of the display list, in degrees
471 public abstract void setRotationY(float rotationY); argument
522 * @param rotationY The rotationY value of the display list
529 float rotation, float rotationX, float rotationY, float scaleX, float scaleY);
528 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DViewPropertyAnimator.java524 * This method will cause the View's <code>rotationY</code> property to be animated to the
531 public ViewPropertyAnimator rotationY(float value) { method in class:ViewPropertyAnimator
537 * This method will cause the View's <code>rotationY</code> property to be animated by the
H A DGLES20DisplayList.java264 public void setRotationY(float rotationY) { argument
266 nSetRotationY(mFinalizer.mNativeDisplayList, rotationY);
310 float rotation, float rotationX, float rotationY, float scaleX, float scaleY) {
313 rotation, rotationX, rotationY, scaleX, scaleY);
464 private static native void nSetRotationY(int displayList, float rotationY); argument
469 float rotationY, float scaleX, float scaleY);
309 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
467 nSetTransformationInfo(int displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DView.java2844 * The Camera object is used to compute a 3D matrix when rotationX or rotationY are set.
3524 float rotationY = 0;
3610 rotationY = a.getFloat(attr, 0);
3939 setRotationY(rotationY);
9377 * axis. If the rotationX or rotationY properties are changed and this view is
9505 * @param rotationY The degrees of Y rotation.
9516 public void setRotationY(float rotationY) { argument
9519 if (info.mRotationY != rotationY) {
9521 info.mRotationY = rotationY;
9525 mDisplayList.setRotationY(rotationY);
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp139 float translationX, float translationY, float rotation, float rotationX, float rotationY,
146 displayList->setRotationY(rotationY);
137 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 DDisplayList.h252 void setRotationY(float rotationY) { argument
253 if (rotationY != mRotationY) {
254 mRotationY = rotationY;

Completed in 431 milliseconds