Home
last modified time | relevance | path

Searched refs:scrolled (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
DUiScrollable.java269 boolean scrolled = scrollForward(); in scrollIntoView()
273 if (!scrolled) { in scrollIntoView()
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DLinearLayoutManager.java1169 final int scrolled = absDy > consumed ? layoutDirection * consumed : dy; in scrollBy() local
1170 mOrientationHelper.offsetChildren(-scrolled); in scrollBy()
1172 Log.d(TAG, "scroll req: " + dy + " scrolled: " + scrolled); in scrollBy()
1174 mLayoutState.mLastScrollDelta = scrolled; in scrollBy()
1175 return scrolled; in scrollBy()
DStaggeredGridLayoutManager.java1578 int scrolled = layoutState.mStartLine - getMaxStart(layoutState.mStartLine);
1580 if (scrolled < 0) {
1583 line = layoutState.mEndLine - Math.min(scrolled, layoutState.mAvailable);
1588 int scrolled = getMinEnd(layoutState.mEndLine) - layoutState.mEndLine;
1590 if (scrolled < 0) {
1593 line = layoutState.mStartLine + Math.min(scrolled, layoutState.mAvailable);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DGridLayoutManagerTest.java890 int scrolled = mGlm.scrollBy(scrollStep, in scrollBackAndPreservePositionsTest()
892 globalScrollPosition += scrolled; in scrollBackAndPreservePositionsTest()
893 if (scrolled == 0) { in scrollBackAndPreservePositionsTest()
/frameworks/base/docs/html/tools/help/uiautomator/
DUiScrollable.jd1925 <ul class="nolist"><li>true if scrolled, and false if can't scroll anymore</li></ul>
1972 <ul class="nolist"><li>true if scrolled, false if can't scroll anymore</li></ul>
2017 <ul class="nolist"><li>true on scrolled else false</li></ul>
2062 <ul class="nolist"><li>true on scrolled, else false</li></ul>
2505 <ul class="nolist"><li>true if scrolled, false if can't scroll anymore</li></ul>
2552 <ul class="nolist"><li>true if scrolled, and false if can't scroll anymore</li></ul>
2652 <ul class="nolist"><li>true if scrolled, false if can't scroll anymore</li></ul>
2707 <ul class="nolist"><li>true if scrolled, false if can't scroll anymore</li></ul>
2911 <ul class="nolist"><li>true on scrolled else false</li></ul>
2965 <ul class="nolist"><li>true on scrolled else false</li></ul>
[all …]
/frameworks/base/docs/html/training/material/
Dlists-cards.jd31 sets that can be scrolled very efficiently by maintaining a limited number of views. Use the
/frameworks/base/docs/html/guide/webapps/
Dmigrating.jd370 and the page is scrolled, causing a <code>touchcancel</code> to be thrown.</li>
/frameworks/native/services/inputflinger/
DInputReader.cpp2574 bool scrolled = vscroll != 0 || hscroll != 0; in sync() local
2583 if (moved || scrolled || buttonsChanged) { in sync()
2616 if ((buttonsPressed || moved || scrolled) && getDevice()->isExternal()) { in sync()
2625 if (downChanged || moved || scrolled || buttonsChanged) { in sync()
2686 if (scrolled) { in sync()
/frameworks/base/docs/html/guide/practices/ui_guidelines/
Dactivity_task_design.jd426 re-load the messages and display its initial, non-scrolled state.
446 running) in the same scrolled state the user last left it.
/frameworks/base/core/java/android/view/
DViewRootImpl.java6568 final boolean scrolled = scrollToRectOrFocus(rectangle, immediate); in requestChildRectangleOnScreen()
6579 return scrolled; in requestChildRectangleOnScreen()
DView.java5534 boolean scrolled = false; in requestRectangleOnScreen()
5539 scrolled |= parent.requestChildRectangleOnScreen(child, in requestRectangleOnScreen()
5560 return scrolled; in requestRectangleOnScreen()