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

  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
StaggeredGridLayoutManager.java 116 OrientationHelper mPrimaryOrientation;
258 mPrimaryOrientation = OrientationHelper.createOrientationHelper(this, mOrientation);
373 int myEnd = mPrimaryOrientation.getDecoratedEnd(child);
374 int nextEnd = mPrimaryOrientation.getDecoratedEnd(nextChild);
381 int myStart = mPrimaryOrientation.getDecoratedStart(child);
382 int nextStart = mPrimaryOrientation.getDecoratedStart(nextChild);
404 if (span.getEndLine() < mPrimaryOrientation.getEndAfterPadding()) {
410 } else if (span.getStartLine() > mPrimaryOrientation.getStartAfterPadding()) {
457 OrientationHelper tmp = mPrimaryOrientation;
458 mPrimaryOrientation = mSecondaryOrientation
    [all...]
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
BaseStaggeredGridLayoutManagerTest.java 180 log.append("total space:" + mLayoutManager.mPrimaryOrientation.getTotalSpace());
615 final int boundsStart = mPrimaryOrientation.getStartAfterPadding();
616 final int boundsEnd = mPrimaryOrientation.getEndAfterPadding();
672 mPrimaryOrientation.getDecoratedStart(view),
674 mPrimaryOrientation.getDecoratedEnd(view),
679 mPrimaryOrientation.getDecoratedStart(view),
681 mPrimaryOrientation.getDecoratedEnd(view));
687 sb.append("view bounds:[start:").append(mPrimaryOrientation.getStartAfterPadding())
688 .append(",").append(" end").append(mPrimaryOrientation.getEndAfterPadding());
695 mPrimaryOrientation.getDecoratedStart(child)).append(", end:"
    [all...]

Completed in 113 milliseconds