Searched refs:scrolled (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DGridLayoutManagerBaseConfigSetTest.java93 int scrolled = mGlm.scrollBy(scrollStep,
95 globalScrollPosition += scrolled;
96 if (scrolled == 0) {
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiScrollable.java272 boolean scrolled = scrollForward();
276 if (!scrolled) {
290 * if the method scrolled successfully until the child became fully visible;
379 * @return true if scrolled, false if can't scroll anymore
395 * @return true if scrolled, false if can't scroll anymore
411 * @return true if scrolled, false if can't scroll anymore
458 * @return true if scrolled, and false if can't scroll anymore
474 * @return true if scrolled, and false if can't scroll anymore
490 * @return true if scrolled, false if can't scroll anymore
538 * @return true on scrolled els
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java1200 final int scrolled = absDy > consumed ? layoutDirection * consumed : dy;
1201 mOrientationHelper.offsetChildren(-scrolled);
1203 Log.d(TAG, "scroll req: " + dy + " scrolled: " + scrolled);
1205 mLayoutState.mLastScrollDelta = scrolled;
1206 return scrolled;
H A DStaggeredGridLayoutManager.java1729 int scrolled = layoutState.mStartLine - getMaxStart(layoutState.mStartLine);
1731 if (scrolled < 0) {
1734 line = layoutState.mEndLine - Math.min(scrolled, layoutState.mAvailable);
1739 int scrolled = getMinEnd(layoutState.mEndLine) - layoutState.mEndLine;
1741 if (scrolled < 0) {
1744 line = layoutState.mStartLine + Math.min(scrolled, layoutState.mAvailable);
2077 Log.d(TAG, "asked " + dt + " scrolled" + totalScroll);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp2622 bool scrolled = vscroll != 0 || hscroll != 0; local
2631 if (moved || scrolled || buttonsChanged) {
2666 if ((buttonsPressed || moved || scrolled) && getDevice()->isExternal()) {
2675 if (downChanged || moved || scrolled || buttonsChanged) {
2736 if (scrolled) {
2842 bool scrolled = scroll != 0; local
2849 if (scrolled && getDevice()->isExternal()) {
2854 if (scrolled) {
/frameworks/base/core/java/android/view/
H A DView.java3349 * The offset, in pixels, by which the content of this view is scrolled
3356 * The offset, in pixels, by which the content of this view is scrolled
5970 * @return Whether any parent scrolled.
5991 * @return Whether any parent scrolled.
6004 boolean scrolled = false;
6009 scrolled |= parent.requestChildRectangleOnScreen(child, rectangle, immediate);
6022 return scrolled;
11536 * view scrolled its own contents). This is typically as a result of
11648 * Set the horizontal scrolled position of your view. This will cause a call to
11658 * Set the vertical scrolled positio
[all...]
H A DViewRootImpl.java3094 // Next, check whether top or bottom is covered based on the non-scrolled
6872 final boolean scrolled = scrollToRectOrFocus(rectangle, immediate);
6881 return scrolled;

Completed in 7088 milliseconds