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

/frameworks/support/v4/ics/android/support/v4/view/
H A DViewPropertyAnimatorCompatICS.java33 public static void translationX(View view, float value) { method in class:ViewPropertyAnimatorCompatICS
34 view.animate().translationX(value);
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java411 private static void setTransforms(View view, float translationX, float translationY, argument
414 view.setTranslationX(translationX);
425 public final float translationX; field in class:ChangeTransform.Transforms
435 translationX = view.getTranslationX();
446 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
456 return thatTransform.translationX == translationX &&
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageView.java203 public void setTranslationX(float translationX) { argument
207 super.setTranslationX(translationX);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java63 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
92 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
352 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
353 ViewPropertyAnimatorCompatICS.translationX(view, value);
667 * This method will cause the View's <code>translationX</code> property to be animated to the
675 public ViewPropertyAnimatorCompat translationX(float value) { method in class:ViewPropertyAnimatorCompat
678 IMPL.translationX(this, view, value);
1074 * This method will cause the View's <code>translationX</code> property to be animated by the
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java600 * This method will cause the View's <code>translationX</code> property to be animated to the
607 public ViewPropertyAnimator translationX(float value) { method in class:ViewPropertyAnimator
613 * This method will cause the View's <code>translationX</code> property to be animated by the
H A DRenderNode.java479 * @param translationX The X axis translation value of the display list, in pixels
484 public boolean setTranslationX(float translationX) { argument
485 return nSetTranslationX(mNativeRenderNode, translationX);
876 private static native boolean nSetTranslationX(long renderNode, float translationX); argument
H A DView.java586 * {@link #setTranslationX(float) translationX}. This behavior is contrasted to that of the pre-3.0
10879 * {@link #setTranslationX(float) translationX} property plus the current
10891 * {@link #setTranslationX(float) translationX} property to be the difference between
10988 * @param translationX The horizontal position of this view relative to its left position,
10993 public void setTranslationX(float translationX) { argument
10994 if (translationX != getTranslationX()) {
10996 mRenderNode.setTranslationX(translationX);
11932 * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method only
11947 * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method will propagate
19515 * A Property wrapper around the <code>translationX</cod
[all...]
/frameworks/base/libs/hwui/
H A DRenderProperties.h237 bool setTranslationX(float translationX) { argument
238 return RP_SET_AND_DIRTY(mPrimitiveFields.mTranslationX, translationX);

Completed in 205 milliseconds