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

/frameworks/support/compat/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/tools/layoutlib/bridge/src/android/view/
H A DRenderNode_Delegate.java89 /*package*/ static boolean nSetTranslationX(long renderNode, float translationX) { argument
91 if (delegate != null && delegate.mTranslationX != translationX) {
92 delegate.mTranslationX = translationX;
169 float translationX = renderNode.getTranslationX();
176 outMatrix.setTranslate(translationX, translationY);
/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/compat/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java65 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
96 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
378 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
379 ViewPropertyAnimatorCompatICS.translationX(view, value);
729 * This method will cause the View's <code>translationX</code> property to be animated to the
737 public ViewPropertyAnimatorCompat translationX(float value) { method in class:ViewPropertyAnimatorCompat
740 IMPL.translationX(this, view, value);
1136 * This method will cause the View's <code>translationX</code> property to be animated by the
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPagingIndicator.java477 public void setTranslationX(float translationX) { argument
478 this.mTranslationX = translationX * mDirection * mLayoutDirection;
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java598 * This method will cause the View's <code>translationX</code> property to be animated to the
605 public ViewPropertyAnimator translationX(float value) { method in class:ViewPropertyAnimator
611 * This method will cause the View's <code>translationX</code> property to be animated by the
H A DRenderNode.java438 * @param translationX The X axis translation value of the display list, in pixels
443 public boolean setTranslationX(float translationX) { argument
444 return nSetTranslationX(mNativeRenderNode, translationX);
859 private static native boolean nSetTranslationX(long renderNode, float translationX); argument
H A DView.java648 * {@link #setTranslationX(float) translationX}. This behavior is contrasted to that of the pre-3.0
12730 * {@link #setTranslationX(float) translationX} property plus the current
12742 * {@link #setTranslationX(float) translationX} property to be the difference between
12839 * @param translationX The horizontal position of this view relative to its left position,
12844 public void setTranslationX(float translationX) { argument
12845 if (translationX != getTranslationX()) {
12847 mRenderNode.setTranslationX(translationX);
13787 * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method only
13802 * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method will propagate
22049 * A Property wrapper around the <code>translationX</cod
[all...]
/frameworks/base/libs/hwui/
H A DRenderProperties.h266 bool setTranslationX(float translationX) { argument
267 return RP_SET_AND_DIRTY(mPrimitiveFields.mTranslationX, translationX);
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java722 * @param translationX the total translation the surface moves in x direction
728 private long calculateClipRevealTransitionDuration(boolean cutOff, float translationX, argument
733 final float fraction = Math.max(Math.abs(translationX) / displayFrame.width(),
755 int translationX = 0;
775 translationX = (centerX - halfWidth) - appFrame.left;
780 translationX = (centerX + halfWidth) - appFrame.right;
784 final long duration = calculateClipRevealTransitionDuration(cutOff, translationX,
793 TranslateAnimation translate = new TranslateAnimation(translationX, 0, translationY, 0);
826 ? Math.max(Math.abs(translationY), Math.abs(translationX)) : 0;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java943 public void setTranslation(float translationX) { argument
951 mTranslateableViews.get(i).setTranslationX(translationX);
956 mSettingsIconRow.updateSettingsIcons(translationX, getMeasuredWidth());

Completed in 462 milliseconds