Home | History | Annotate | Download | only in widget

Lines Matching defs:mPrimaryOrientation

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;
793 line += mPrimaryOrientation.getEndAfterPadding();
795 line += mPrimaryOrientation.getStartAfterPadding();
870 final int target = mPrimaryOrientation.getEndAfterPadding()
872 anchorInfo.mOffset = target - mPrimaryOrientation.getDecoratedEnd(child);
874 final int target = mPrimaryOrientation.getStartAfterPadding()
876 anchorInfo.mOffset = target - mPrimaryOrientation.getDecoratedStart(child);
882 final int childSize = mPrimaryOrientation.getDecoratedMeasurement(child);
883 if (childSize > mPrimaryOrientation.getTotalSpace()) {
886 ? mPrimaryOrientation.getEndAfterPadding()
887 : mPrimaryOrientation.getStartAfterPadding();
891 final int startGap = mPrimaryOrientation.getDecoratedStart(child)
892 - mPrimaryOrientation.getStartAfterPadding();
897 final int endGap = mPrimaryOrientation.getEndAfterPadding()
898 - mPrimaryOrientation.getDecoratedEnd(child);
1075 return ScrollbarHelper.computeScrollOffset(state, mPrimaryOrientation,
1095 return ScrollbarHelper.computeScrollExtent(state, mPrimaryOrientation,
1115 return ScrollbarHelper.computeScrollRange(state, mPrimaryOrientation,
1259 line -= mPrimaryOrientation.getEndAfterPadding();
1264 line -= mPrimaryOrientation.getStartAfterPadding();
1359 final int boundsStart = mPrimaryOrientation.getStartAfterPadding();
1360 final int boundsEnd = mPrimaryOrientation.getEndAfterPadding();
1365 final int childStart = mPrimaryOrientation.getDecoratedStart(child);
1366 final int childEnd = mPrimaryOrientation.getDecoratedEnd(child);
1389 final int boundsStart = mPrimaryOrientation.getStartAfterPadding();
1390 final int boundsEnd = mPrimaryOrientation.getEndAfterPadding();
1394 final int childStart = mPrimaryOrientation.getDecoratedStart(child);
1395 final int childEnd = mPrimaryOrientation.getDecoratedEnd(child);
1417 int gap = mPrimaryOrientation.getEndAfterPadding() - maxEndLine;
1426 mPrimaryOrientation.offsetChildren(gap);
1436 int gap = minStartLine - mPrimaryOrientation.getStartAfterPadding();
1445 mPrimaryOrientation.offsetChildren(-gap);
1458 endExtra = mPrimaryOrientation.getTotalSpace();
1460 startExtra = mPrimaryOrientation.getTotalSpace();
1468 mLayoutState.mStartLine = mPrimaryOrientation.getStartAfterPadding() - startExtra;
1469 mLayoutState.mEndLine = mPrimaryOrientation.getEndAfterPadding() + endExtra;
1471 mLayoutState.mEndLine = mPrimaryOrientation.getEnd() + endExtra;
1476 mLayoutState.mInfinite = mPrimaryOrientation.getMode() == View.MeasureSpec.UNSPECIFIED
1477 && mPrimaryOrientation.getEnd() == 0;
1604 ? mPrimaryOrientation.getEndAfterPadding()
1605 : mPrimaryOrientation.getStartAfterPadding();
1641 end = start + mPrimaryOrientation.getDecoratedMeasurement(view);
1652 start = end - mPrimaryOrientation.getDecoratedMeasurement(view);
1724 final int minStart = getMinStart(mPrimaryOrientation.getStartAfterPadding());
1725 diff = mPrimaryOrientation.getStartAfterPadding() - minStart;
1727 final int maxEnd = getMaxEnd(mPrimaryOrientation.getEndAfterPadding());
1728 diff = maxEnd - mPrimaryOrientation.getEndAfterPadding();
1911 if (mPrimaryOrientation.getDecoratedEnd(child) <= line
1912 && mPrimaryOrientation.getTransformedEndWithDecoration(child) <= line) {
1942 if (mPrimaryOrientation.getDecoratedStart(child) >= line
1943 && mPrimaryOrientation.getTransformedStartWithDecoration(child) >= line) {
1996 final int defaultLine = mPrimaryOrientation.getStartAfterPadding();
2009 final int defaultLine = mPrimaryOrientation.getEndAfterPadding();
2196 mPrimaryOrientation.offsetChildren(-totalScroll);
2313 mLayoutState.mAvailable = (int) (MAX_SCROLL_FACTOR * mPrimaryOrientation.getTotalSpace());
2535 mCachedStart = mPrimaryOrientation.getDecoratedStart(startView);
2569 mCachedEnd = mPrimaryOrientation.getDecoratedEnd(endView);
2597 mDeletedSize += mPrimaryOrientation.getDecoratedMeasurement(view);
2610 mDeletedSize += mPrimaryOrientation.getDecoratedMeasurement(view);
2626 if ((reverseLayout && reference < mPrimaryOrientation.getEndAfterPadding())
2627 || (!reverseLayout && reference > mPrimaryOrientation.getStartAfterPadding())) {
2657 mDeletedSize -= mPrimaryOrientation.getDecoratedMeasurement(end);
2673 mDeletedSize -= mPrimaryOrientation.getDecoratedMeasurement(start);
2758 final int start = mPrimaryOrientation.getStartAfterPadding();
2759 final int end = mPrimaryOrientation.getEndAfterPadding();
2763 final int childStart = mPrimaryOrientation.getDecoratedStart(child);
2764 final int childEnd = mPrimaryOrientation.getDecoratedEnd(child);
3293 mOffset = mLayoutFromEnd ? mPrimaryOrientation.getEndAfterPadding()
3294 : mPrimaryOrientation.getStartAfterPadding();
3299 mOffset = mPrimaryOrientation.getEndAfterPadding() - addedDistance;
3301 mOffset = mPrimaryOrientation.getStartAfterPadding() + addedDistance;