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

/frameworks/base/core/java/android/view/
H A DDisplayList.java174 * Sets the translationX value for the DisplayList
176 * @param translationX The translationX value of the DisplayList
179 public abstract void setTranslationX(float translationX); argument
233 * @param translationX The translationX value of the DisplayList
241 public abstract void setTransformationInfo(float alpha, float translationX, float translationY, argument
H A DGLES20DisplayList.java170 public void setTranslationX(float translationX) { argument
172 nSetTranslationX(mFinalizer.mNativeDisplayList, translationX);
219 public void setTransformationInfo(float alpha, float translationX, float translationY, argument
222 nSetTransformationInfo(mFinalizer.mNativeDisplayList, alpha, translationX, translationY,
322 private static native void nSetTranslationX(int displayList, float translationX); argument
330 float translationX, float translationY, float rotation, float rotationX,
329 nSetTransformationInfo(int displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DViewPropertyAnimator.java496 * This method will cause the View's <code>translationX</code> property to be animated to the
503 public ViewPropertyAnimator translationX(float value) { method in class:ViewPropertyAnimator
509 * This method will cause the View's <code>translationX</code> property to be animated by the
H A DView.java570 * {@link #setTranslationX(float) translationX}. This behavior is contrasted to that of the pre-3.0
9664 * {@link #setTranslationX(float) translationX} property plus the current
9676 * {@link #setTranslationX(float) translationX} property to be the difference between
9726 * @param translationX The horizontal position of this view relative to its left position,
9731 public void setTranslationX(float translationX) { argument
9734 if (info.mTranslationX != translationX) {
9737 info.mTranslationX = translationX;
9741 mDisplayList.setTranslationX(translationX);
10443 * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method only
10458 * alpha, translationX/
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp115 float translationX, float translationY, float rotation, float rotationX, float rotationY,
118 displayList->setTranslationX(translationX);
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/core/java/android/widget/
H A DStackView.java346 PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", transX);
352 translationY, translationX);
1422 float translationX = v.getTranslationX();
1431 v.setTranslationX(translationX);
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.h186 void setTranslationX(float translationX) { argument
187 if (translationX != mTranslationX) {
188 mTranslationX = translationX;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPanelView.java548 v.animate().translationX(0).translationY(0).alpha(1f).setStartDelay(startDelay)

Completed in 1810 milliseconds