Searched refs:translationY (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/view/
H A DDisplayList.java182 * Sets the translationY value for the DisplayList
184 * @param translationY The translationY value of the DisplayList
187 public abstract void setTranslationY(float translationY); argument
234 * @param translationY The translationY value of the DisplayList
241 public abstract void setTransformationInfo(float alpha, float translationX, float translationY, argument
H A DGLES20DisplayList.java177 public void setTranslationY(float translationY) { argument
179 nSetTranslationY(mFinalizer.mNativeDisplayList, translationY);
219 public void setTransformationInfo(float alpha, float translationX, float translationY, argument
222 nSetTransformationInfo(mFinalizer.mNativeDisplayList, alpha, translationX, translationY,
323 private static native void nSetTranslationY(int displayList, float translationY); 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.java522 * This method will cause the View's <code>translationY</code> property to be animated to the
529 public ViewPropertyAnimator translationY(float value) { method in class:ViewPropertyAnimator
535 * This method will cause the View's <code>translationY</code> property to be animated by the
H A DView.java9687 * {@link #setTranslationY(float) translationY} property plus the current
9699 * {@link #setTranslationY(float) translationY} property to be the difference between
9768 * @param translationY The vertical position of this view relative to its top position,
9773 public void setTranslationY(float translationY) { argument
9776 if (info.mTranslationY != translationY) {
9778 info.mTranslationY = translationY;
9782 mDisplayList.setTranslationY(translationY);
17068 * A Property wrapper around the <code>translationY</code> functionality handled by the
17071 public static final Property<View, Float> TRANSLATION_Y = new FloatProperty<View>("translationY") {
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp115 float translationX, float translationY, float rotation, float rotationX, float rotationY,
119 displayList->setTranslationY(translationY);
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/policy/src/com/android/internal/policy/impl/keyguard/
H A DCameraWidgetFrame.java286 .translationY(finishCenter - startCenter)
300 .translationY(0)
/frameworks/base/core/java/android/widget/
H A DStackView.java347 PropertyValuesHolder translationY = PropertyValuesHolder.ofFloat("translationY", transY);
352 translationY, translationX);
1421 float translationY = v.getTranslationY();
1430 v.setTranslationY(translationY);
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.h198 void setTranslationY(float translationY) { argument
199 if (translationY != mTranslationY) {
200 mTranslationY = translationY;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1206 .translationY(mNaturalBarHeight*0.5f)
1215 .translationY(0)
1255 .translationY(mNaturalBarHeight*0.5f)
1264 .translationY(0)
/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 2885 milliseconds