Searched refs:newLeft (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DSimpleItemAnimator.java95 int newLeft = postLayoutInfo == null ? disappearingItemView.getLeft() : postLayoutInfo.left;
97 if (!viewHolder.isRemoved() && (oldLeft != newLeft || oldTop != newTop)) {
98 disappearingItemView.layout(newLeft, newTop,
99 newLeft + disappearingItemView.getWidth(),
104 return animateMove(viewHolder, oldLeft, oldTop, newLeft, newTop);
H A DFloatingToolbar.java109 int newLeft, int newRight, int newTop, int newBottom,
111 mNewRect.set(newLeft, newRight, newTop, newBottom);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DSimpleItemAnimator.java95 int newLeft = postLayoutInfo == null ? disappearingItemView.getLeft() : postLayoutInfo.left;
97 if (!viewHolder.isRemoved() && (oldLeft != newLeft || oldTop != newTop)) {
98 disappearingItemView.layout(newLeft, newTop,
99 newLeft + disappearingItemView.getWidth(),
104 return animateMove(viewHolder, oldLeft, oldTop, newLeft, newTop);
/frameworks/support/wear/src/android/support/wear/widget/
H A DCurvingLayoutCallback.java95 int newLeft = (int) (mPathPoints[0] - mAnchorOffsetXY[0]);
96 child.offsetLeftAndRight(newLeft - child.getLeft());
/frameworks/base/graphics/java/android/graphics/
H A DRectF.java248 * @param newLeft The new "left" coordinate for the rectangle
251 public void offsetTo(float newLeft, float newTop) { argument
252 right += newLeft - left;
254 left = newLeft;
H A DRect.java308 * @param newLeft The new "left" coordinate for the rectangle
311 public void offsetTo(int newLeft, int newTop) { argument
312 right += newLeft - left;
314 left = newLeft;
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DSlidingPaneLayout.java945 void onPanelDragged(int newLeft) { argument
955 final int newStart = isLayoutRtl ? getWidth() - newLeft - childWidth : newLeft;
1380 final int newLeft;
1385 newLeft = Math.max(Math.min(left, startBound), endBound);
1389 newLeft = Math.min(Math.max(left, startBound), endBound);
1391 return newLeft;
H A DViewDragHelper.java1036 final int newLeft = mCallback.clampViewPositionHorizontal(toCapture,
1044 if ((hDragRange == 0 || (hDragRange > 0 && newLeft == oldLeft))
/frameworks/av/services/audioflinger/
H A DEffects.cpp1866 uint32_t newLeft = *left; local
1892 mLeftVolume = newLeft;
1897 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
1898 mNewLeftVolume = newLeft;
1904 uint32_t lVol = newLeft;
1918 *left = newLeft;

Completed in 894 milliseconds