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

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiScrollable.java269 boolean scrolled = scrollForward();
273 if (!scrolled) {
287 * if the method scrolled successfully until the child became fully visible;
376 * @return true if scrolled, false if can't scroll anymore
392 * @return true if scrolled, false if can't scroll anymore
408 * @return true if scrolled, false if can't scroll anymore
455 * @return true if scrolled, and false if can't scroll anymore
471 * @return true if scrolled, and false if can't scroll anymore
487 * @return true if scrolled, false if can't scroll anymore
535 * @return true on scrolled els
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java1169 final int scrolled = absDy > consumed ? layoutDirection * consumed : dy;
1170 mOrientationHelper.offsetChildren(-scrolled);
1172 Log.d(TAG, "scroll req: " + dy + " scrolled: " + scrolled);
1174 mLayoutState.mLastScrollDelta = scrolled;
1175 return scrolled;
H A 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);
1936 Log.d(TAG, "asked " + dt + " scrolled" + totalScroll);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DGridLayoutManagerTest.java890 int scrolled = mGlm.scrollBy(scrollStep,
892 globalScrollPosition += scrolled;
893 if (scrolled == 0) {
/frameworks/native/services/inputflinger/
H A DInputReader.cpp2574 bool scrolled = vscroll != 0 || hscroll != 0; local
2583 if (moved || scrolled || buttonsChanged) {
2616 if ((buttonsPressed || moved || scrolled) && getDevice()->isExternal()) {
2625 if (downChanged || moved || scrolled || buttonsChanged) {
2686 if (scrolled) {
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java6568 final boolean scrolled = scrollToRectOrFocus(rectangle, immediate);
6579 return scrolled;
H A DView.java3200 * The offset, in pixels, by which the content of this view is scrolled
3207 * The offset, in pixels, by which the content of this view is scrolled
5502 * @return Whether any parent scrolled.
5521 * @return Whether any parent scrolled.
5534 boolean scrolled = false;
5539 scrolled |= parent.requestChildRectangleOnScreen(child,
5560 return scrolled;
10717 * view scrolled its own contents). This is typically as a result of
10829 * Set the horizontal scrolled position of your view. This will cause a call to
10839 * Set the vertical scrolled positio
[all...]

Completed in 7280 milliseconds