Searched refs:mMaxScrollX (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java88 int mMaxScrollX = UNDEFINED; field in class:AccessibilityRecord
446 return mMaxScrollX;
456 mMaxScrollX = maxScrollX;
775 mMaxScrollX = record.mMaxScrollX;
801 mMaxScrollX = UNDEFINED;
833 builder.append("; MaxScrollX: " + mMaxScrollX);
H A DAccessibilityEvent.java1102 record.mMaxScrollX = parcel.readInt();
1154 parcel.writeInt(record.mMaxScrollX);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DPagedView.java106 protected int mMaxScrollX; field in class:PagedView
563 } else if (x > mMaxScrollX) {
564 super.scrollTo(mMaxScrollX, y);
566 overScroll(x - mMaxScrollX);
731 mMaxScrollX = getChildOffset(childCount - 1) - getRelativeChildOffset(childCount - 1);
733 mMaxScrollX = 0;
1344 mOverScrollX = mMaxScrollX + overScrollAmount;
1345 super.scrollTo(mMaxScrollX, getScrollY());
1368 mOverScrollX = mMaxScrollX + overScrollAmount;
1369 super.scrollTo(mMaxScrollX, getScroll
[all...]
H A DKeyguardWidgetPager.java522 boolean isInOverscroll = mOverScrollX < 0 || mOverScrollX > mMaxScrollX;

Completed in 584 milliseconds