Home
last modified time | relevance | path

Searched refs:newLeft (Results 1 – 7 of 7) sorted by relevance

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DSimpleItemAnimator.java81 int newLeft = postLayoutInfo == null ? disappearingItemView.getLeft() : postLayoutInfo.left; in animateDisappearance() local
83 if (!viewHolder.isRemoved() && (oldLeft != newLeft || oldTop != newTop)) { in animateDisappearance()
84 disappearingItemView.layout(newLeft, newTop, in animateDisappearance()
85 newLeft + disappearingItemView.getWidth(), in animateDisappearance()
90 return animateMove(viewHolder, oldLeft, oldTop, newLeft, newTop); in animateDisappearance()
/frameworks/base/graphics/java/android/graphics/
DRectF.java251 public void offsetTo(float newLeft, float newTop) { in offsetTo() argument
252 right += newLeft - left; in offsetTo()
254 left = newLeft; in offsetTo()
DRect.java306 public void offsetTo(int newLeft, int newTop) { in offsetTo() argument
307 right += newLeft - left; in offsetTo()
309 left = newLeft; in offsetTo()
/frameworks/support/v4/java/android/support/v4/widget/
DSlidingPaneLayout.java945 private void onPanelDragged(int newLeft) { in onPanelDragged() argument
955 final int newStart = isLayoutRtl ? getWidth() - newLeft - childWidth : newLeft; in onPanelDragged()
1378 final int newLeft; in clampViewPositionHorizontal() local
1383 newLeft = Math.max(Math.min(left, startBound), endBound); in clampViewPositionHorizontal()
1387 newLeft = Math.min(Math.max(left, startBound), endBound); in clampViewPositionHorizontal()
1389 return newLeft; in clampViewPositionHorizontal()
DViewDragHelper.java1036 final int newLeft = mCallback.clampViewPositionHorizontal(toCapture, in shouldInterceptTouchEvent() local
1046 && newLeft == oldLeft) && (verticalDragRange == 0 in shouldInterceptTouchEvent()
/frameworks/av/services/audioflinger/
DEffects.cpp1659 uint32_t newLeft = *left; in setVolume_l() local
1685 mLeftVolume = newLeft; in setVolume_l()
1690 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true); in setVolume_l()
1691 mNewLeftVolume = newLeft; in setVolume_l()
1697 uint32_t lVol = newLeft; in setVolume_l()
1711 *left = newLeft; in setVolume_l()
/frameworks/base/core/java/com/android/internal/widget/
DFloatingToolbar.java114 int newLeft, int newRight, int newTop, int newBottom,
116 mNewRect.set(newLeft, newRight, newTop, newBottom);