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

/frameworks/layoutlib/bridge/src/android/view/
H A DRenderNode_Delegate.java96 /*package*/ static boolean nSetTranslationX(long renderNode, float translationX) { argument
98 if (delegate != null && delegate.mTranslationX != translationX) {
99 delegate.mTranslationX = translationX;
176 float translationX = renderNode.getTranslationX();
183 outMatrix.setTranslate(translationX, translationY);
/frameworks/support/compat/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java159 * This method will cause the View's <code>translationX</code> property to be animated to the
165 public ViewPropertyAnimatorCompat translationX(float value) { method in class:ViewPropertyAnimatorCompat
168 view.animate().translationX(value);
529 * This method will cause the View's <code>translationX</code> property to be animated by the
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java413 private static void setTransforms(View view, float translationX, float translationY, argument
416 view.setTranslationX(translationX);
427 public final float translationX; field in class:ChangeTransform.Transforms
437 translationX = view.getTranslationX();
448 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
458 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/transition/src/android/support/transition/
H A DChangeTransform.java438 private static void setTransforms(View view, float translationX, float translationY, argument
441 view.setTranslationX(translationX);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPagingIndicator.java519 public void setTranslationX(float translationX) { argument
520 this.mTranslationX = translationX * mDirection * mLayoutDirection;
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java599 * This method will cause the View's <code>translationX</code> property to be animated to the
606 public ViewPropertyAnimator translationX(float value) { method in class:ViewPropertyAnimator
612 * This method will cause the View's <code>translationX</code> property to be animated by the
H A DRenderNode.java461 * @param translationX The X axis translation value of the display list, in pixels
466 public boolean setTranslationX(float translationX) { argument
467 return nSetTranslationX(mNativeRenderNode, translationX);
925 private static native boolean nSetTranslationX(long renderNode, float translationX); argument
H A DView.java659 * {@link #setTranslationX(float) translationX}. This behavior is contrasted to that of the pre-3.0
14611 * {@link #setTranslationX(float) translationX} property plus the current
14623 * {@link #setTranslationX(float) translationX} property to be the difference between
14720 * @param translationX The horizontal position of this view relative to its left position,
14725 public void setTranslationX(float translationX) { argument
14726 if (translationX != getTranslationX()) {
14728 mRenderNode.setTranslationX(translationX);
15636 * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method only
15651 * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method will propagate
24385 * A Property wrapper around the <code>translationX</cod
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationIconContainer.java266 private int findFirstViewIndexAfter(float translationX) { argument
269 if (view.getTranslationX() > translationX) {
292 float translationX = getActualPaddingStart();
303 iconState.xTranslation = translationX;
315 || (translationX >= (noOverflowAfter ? layoutEnd - mIconSize : overflowStart)))) {
322 visualOverflowStart = Math.min(translationX, visualOverflowStart
325 visualOverflowStart += (translationX - overflowStart) / mIconSize
346 translationX += iconState.iconAppearAmount * view.getWidth() * drawingScale;
350 translationX = visualOverflowStart;
355 iconState.xTranslation = translationX;
[all...]
/frameworks/base/libs/hwui/
H A DRenderProperties.h268 bool setTranslationX(float translationX) { argument
269 return RP_SET_AND_DIRTY(mPrimitiveFields.mTranslationX, translationX);
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java771 * @param translationX the total translation the surface moves in x direction
777 private long calculateClipRevealTransitionDuration(boolean cutOff, float translationX, argument
782 final float fraction = Math.max(Math.abs(translationX) / displayFrame.width(),
804 int translationX = 0;
824 translationX = (centerX - halfWidth) - appFrame.left;
829 translationX = (centerX + halfWidth) - appFrame.right;
833 final long duration = calculateClipRevealTransitionDuration(cutOff, translationX,
842 TranslateAnimation translate = new TranslateAnimation(translationX, 0, translationY, 0);
875 ? Math.max(Math.abs(translationY), Math.abs(translationX)) : 0;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java1369 public void setTranslation(float translationX) { argument
1375 setTranslationX(translationX);
1380 mTranslateableViews.get(i).setTranslationX(translationX);
1386 mMenuRow.onTranslationUpdate(translationX);

Completed in 352 milliseconds