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

/frameworks/base/core/java/android/view/
H A DDisplayList.java198 * Sets the rotationX value for the DisplayList
200 * @param rotationX The rotationX value of the DisplayList
203 public abstract void setRotationX(float rotationX); argument
236 * @param rotationX The rotationX 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.java191 public void setRotationX(float rotationX) { argument
193 nSetRotationX(mFinalizer.mNativeDisplayList, rotationX);
220 float rotation, float rotationX, float rotationY, float scaleX, float scaleY) {
223 rotation, rotationX, rotationY, scaleX, scaleY);
325 private static native void nSetRotationX(int displayList, float rotationX); argument
330 float translationX, float translationY, float rotation, float rotationX,
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.java444 * This method will cause the View's <code>rotationX</code> property to be animated to the
451 public ViewPropertyAnimator rotationX(float value) { method in class:ViewPropertyAnimator
457 * This method will cause the View's <code>rotationX</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.
3306 float rotationX = 0;
3389 rotationX = a.getFloat(attr, 0);
3716 setRotationX(rotationX);
8901 * axis. If the rotationX or rotationY properties are changed and this view is
9080 * @param rotationX The degrees of X rotation.
9091 public void setRotationX(float rotationX) { argument
9094 if (info.mRotationX != rotationX) {
9096 info.mRotationX = rotationX;
9100 mDisplayList.setRotationX(rotationX);
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp115 float translationX, float translationY, float rotation, float rotationX, float rotationY,
121 displayList->setRotationX(rotationX);
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.h222 void setRotationX(float rotationX) { argument
223 if (rotationX != mRotationX) {
224 mRotationX = rotationX;
/frameworks/base/core/java/android/widget/
H A DStackView.java1419 float rotationX = v.getRotationX();
1428 v.setRotationX(rotationX);

Completed in 122 milliseconds