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

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DSimpleItemAnimator.java81 int newLeft = postLayoutInfo == null ? disappearingItemView.getLeft() : postLayoutInfo.left;
83 if (!viewHolder.isRemoved() && (oldLeft != newLeft || oldTop != newTop)) {
84 disappearingItemView.layout(newLeft, newTop,
85 newLeft + disappearingItemView.getWidth(),
90 return animateMove(viewHolder, oldLeft, oldTop, newLeft, newTop);
/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.java303 * @param newLeft The new "left" coordinate for the rectangle
306 public void offsetTo(int newLeft, int newTop) { argument
307 right += newLeft - left;
309 left = newLeft;
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DSlidingPaneLayout.java949 void onPanelDragged(int newLeft) { argument
959 final int newStart = isLayoutRtl ? getWidth() - newLeft - childWidth : newLeft;
1384 final int newLeft;
1389 newLeft = Math.max(Math.min(left, startBound), endBound);
1393 newLeft = Math.min(Math.max(left, startBound), endBound);
1395 return newLeft;
H A DViewDragHelper.java1038 final int newLeft = mCallback.clampViewPositionHorizontal(toCapture,
1048 && newLeft == oldLeft) && (verticalDragRange == 0
/frameworks/av/services/audioflinger/
H A DEffects.cpp1846 uint32_t newLeft = *left; local
1872 mLeftVolume = newLeft;
1877 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
1878 mNewLeftVolume = newLeft;
1884 uint32_t lVol = newLeft;
1898 *left = newLeft;
/frameworks/base/core/java/com/android/internal/widget/
H A DFloatingToolbar.java114 int newLeft, int newRight, int newTop, int newBottom,
116 mNewRect.set(newLeft, newRight, newTop, newBottom);

Completed in 158 milliseconds