Searched defs:fromLeft (Results 1 - 4 of 4) sorted by last modified time

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DSimpleItemAnimator.java139 final int fromLeft = preInfo.left;
149 return animateChange(oldHolder, newHolder, fromLeft, fromTop, toLeft, toTop);
246 * @param fromLeft Left of the old view holder
254 ViewHolder newHolder, int fromLeft, int fromTop, int toLeft, int toTop);
253 animateChange(ViewHolder oldHolder, ViewHolder newHolder, int fromLeft, int fromTop, int toLeft, int toTop) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationSettingsIconRow.java184 public void fadeInSettings(final boolean fromLeft, final float transX, argument
192 setIconLocation(transX > 0 /* fromLeft */);
199 boolean pastGear = (fromLeft && transX <= notiThreshold)
200 || (!fromLeft && absTrans <= notiThreshold);
/frameworks/base/core/java/android/view/animation/
H A DAnimationUtils.java242 * @param fromLeft is the object to be animated coming from the left
245 public static Animation makeInAnimation(Context c, boolean fromLeft) { argument
247 if (fromLeft) {
/frameworks/base/core/java/android/widget/
H A DGallery.java849 * the fromLeft parameter
850 * @param fromLeft Are we positioning views based on the left edge? (i.e.,
854 private View makeAndAddView(int position, int offset, int x, boolean fromLeft) { argument
869 setUpChild(child, offset, x, fromLeft);
879 setUpChild(child, offset, x, fromLeft);
892 * the fromLeft parameter
893 * @param fromLeft Are we positioning views based on the left edge? (i.e.,
896 private void setUpChild(View child, int offset, int x, boolean fromLeft) { argument
905 addViewInLayout(child, fromLeft != mIsRtl ? -1 : 0, lp, true);
926 if (fromLeft) {
[all...]

Completed in 105 milliseconds