Searched refs:newLeft (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/core/java/com/android/internal/widget/ |
D | SimpleItemAnimator.java | 95 int newLeft = postLayoutInfo == null ? disappearingItemView.getLeft() : postLayoutInfo.left; in animateDisappearance() local 97 if (!viewHolder.isRemoved() && (oldLeft != newLeft || oldTop != newTop)) { in animateDisappearance() 98 disappearingItemView.layout(newLeft, newTop, in animateDisappearance() 99 newLeft + disappearingItemView.getWidth(), in animateDisappearance() 104 return animateMove(viewHolder, oldLeft, oldTop, newLeft, newTop); in animateDisappearance()
|
D | FloatingToolbar.java | 109 int newLeft, int newRight, int newTop, int newBottom, 111 mNewRect.set(newLeft, newRight, newTop, newBottom);
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
D | SimpleItemAnimator.java | 95 int newLeft = postLayoutInfo == null ? disappearingItemView.getLeft() : postLayoutInfo.left; in animateDisappearance() local 97 if (!viewHolder.isRemoved() && (oldLeft != newLeft || oldTop != newTop)) { in animateDisappearance() 98 disappearingItemView.layout(newLeft, newTop, in animateDisappearance() 99 newLeft + disappearingItemView.getWidth(), in animateDisappearance() 104 return animateMove(viewHolder, oldLeft, oldTop, newLeft, newTop); in animateDisappearance()
|
/frameworks/support/wear/src/android/support/wear/widget/ |
D | CurvingLayoutCallback.java | 95 int newLeft = (int) (mPathPoints[0] - mAnchorOffsetXY[0]); in onLayoutFinished() 96 child.offsetLeftAndRight(newLeft - child.getLeft()); in onLayoutFinished()
|
/frameworks/base/graphics/java/android/graphics/ |
D | RectF.java | 251 public void offsetTo(float newLeft, float newTop) { in offsetTo() argument 252 right += newLeft - left; in offsetTo() 254 left = newLeft; in offsetTo()
|
D | Rect.java | 311 public void offsetTo(int newLeft, int newTop) { in offsetTo() argument 312 right += newLeft - left; in offsetTo() 314 left = newLeft; in offsetTo()
|
/frameworks/support/core-ui/java/android/support/v4/widget/ |
D | SlidingPaneLayout.java | 940 void onPanelDragged(int newLeft) { in onPanelDragged() argument 950 final int newStart = isLayoutRtl ? getWidth() - newLeft - childWidth : newLeft; in onPanelDragged() 1354 final int newLeft; in clampViewPositionHorizontal() local 1359 newLeft = Math.max(Math.min(left, startBound), endBound); in clampViewPositionHorizontal() 1363 newLeft = Math.min(Math.max(left, startBound), endBound); in clampViewPositionHorizontal() 1365 return newLeft; in clampViewPositionHorizontal()
|
D | ViewDragHelper.java | 1036 final int newLeft = mCallback.clampViewPositionHorizontal(toCapture, in shouldInterceptTouchEvent() local 1044 if ((hDragRange == 0 || (hDragRange > 0 && newLeft == oldLeft)) in shouldInterceptTouchEvent()
|
/frameworks/av/services/audioflinger/ |
D | Effects.cpp | 1883 uint32_t newLeft = *left; in setVolume_l() local 1909 mLeftVolume = newLeft; in setVolume_l() 1914 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true); in setVolume_l() 1915 mNewLeftVolume = newLeft; in setVolume_l() 1921 uint32_t lVol = newLeft; in setVolume_l() 1935 *left = newLeft; in setVolume_l()
|