HomeSort by relevance Sort by last modified time
    Searched defs:mFirstPosition (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/widget/
AdapterView.java 67 int mFirstPosition = 0;
609 return mFirstPosition + i;
624 return mFirstPosition;
634 return mFirstPosition + getChildCount() - 1;
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
AdapterViewICS.java 68 int mFirstPosition = 0;
619 return mFirstPosition + i;
634 return mFirstPosition;
644 return mFirstPosition + getChildCount() - 1;
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 66 private int mFirstPosition;
187 fillRight(mFirstPosition + getChildCount(), 0);
188 fillLeft(mFirstPosition - 1, 0);
399 overhang = fillLeft(mFirstPosition - 1, allowOverhang);
402 overhang = fillRight(mFirstPosition + getChildCount(), allowOverhang);
435 * is always the view corresponding to position mFirstPosition + i.
473 mFirstPosition++;
528 mFirstPosition = pos + 1;
671 mFirstPosition = 0;
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 67 * - mFirstPosition is the adapter position of the View returned by getChildAt(0).
68 * - Any child index can be translated to an adapter position by adding mFirstPosition.
69 * - Any adapter position can be translated to a child index by subtracting mFirstPosition.
70 * - Views for items in the range [mFirstPosition, mFirstPosition + getChildCount()) are
115 private int mFirstPosition;
275 return mFirstPosition;
398 overhang = fillUp(mFirstPosition - 1, allowOverhang);
401 overhang = fillDown(mFirstPosition + getChildCount(), allowOverhang) + mItemMargin;
432 if (mFirstPosition != 0 || getChildCount() != mItemCount)
    [all...]

Completed in 43 milliseconds