Searched defs:offsetInWindow (Results 1 - 8 of 8) sorted by relevance

/frameworks/support/v4/java/android/support/v4/view/
H A DNestedScrollingChild.java145 * @param offsetInWindow Optional. If not null, on return this will contain the offset
153 int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow);
167 * @param offsetInWindow Optional. If not null, on return this will contain the offset
174 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow); argument
152 dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) argument
H A DNestedScrollingChildHelper.java151 int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) {
156 if (offsetInWindow != null) {
157 mView.getLocationInWindow(offsetInWindow);
158 startX = offsetInWindow[0];
159 startY = offsetInWindow[1];
165 if (offsetInWindow != null) {
166 mView.getLocationInWindow(offsetInWindow);
167 offsetInWindow[0] -= startX;
168 offsetInWindow[1] -= startY;
171 } else if (offsetInWindow !
150 dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) argument
189 dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) argument
[all...]
H A DViewCompat.java463 int dyUnconsumed, int[] offsetInWindow);
465 int[] offsetInWindow);
1011 int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) {
1014 dxUnconsumed, dyUnconsumed, offsetInWindow);
1021 int[] consumed, int[] offsetInWindow) {
1024 offsetInWindow);
1649 int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) {
1651 dxUnconsumed, dyUnconsumed, offsetInWindow);
1656 int[] consumed, int[] offsetInWindow) {
1658 offsetInWindow);
462 dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) argument
464 dispatchNestedPreScroll(View view, int dx, int dy, int[] consumed, int[] offsetInWindow) argument
1010 dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) argument
1020 dispatchNestedPreScroll(View view, int dx, int dy, int[] consumed, int[] offsetInWindow) argument
1648 dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) argument
1655 dispatchNestedPreScroll(View view, int dx, int dy, int[] consumed, int[] offsetInWindow) argument
3179 dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) argument
3204 dispatchNestedPreScroll(View view, int dx, int dy, int[] consumed, int[] offsetInWindow) argument
[all...]
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewCompatLollipop.java178 int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) {
180 offsetInWindow);
184 int[] offsetInWindow) {
185 return view.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
177 dispatchNestedScroll(View view, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) argument
183 dispatchNestedPreScroll(View view, int dx, int dy, int[] consumed, int[] offsetInWindow) argument
/frameworks/support/v4/java/android/support/v4/widget/
H A DNestedScrollView.java237 int dyUnconsumed, int[] offsetInWindow) {
239 offsetInWindow);
243 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { argument
244 return mChildHelper.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
236 dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) argument
H A DSwipeRefreshLayout.java862 int dyUnconsumed, int[] offsetInWindow) {
864 dxUnconsumed, dyUnconsumed, offsetInWindow);
868 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { argument
869 return mNestedScrollingChildHelper.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
861 dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) argument
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java9781 int dyUnconsumed, int[] offsetInWindow) {
9783 dxUnconsumed, dyUnconsumed, offsetInWindow);
9787 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) { argument
9788 return getScrollingChildHelper().dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow);
9780 dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) argument
/frameworks/base/core/java/android/view/
H A DView.java21113 * @param offsetInWindow Optional. If not null, on return this will contain the offset
21121 int dxUnconsumed, int dyUnconsumed, @Nullable @Size(2) int[] offsetInWindow) {
21126 if (offsetInWindow != null) {
21127 getLocationInWindow(offsetInWindow);
21128 startX = offsetInWindow[0];
21129 startY = offsetInWindow[1];
21135 if (offsetInWindow != null) {
21136 getLocationInWindow(offsetInWindow);
21137 offsetInWindow[0] -= startX;
21138 offsetInWindow[
21120 dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, @Nullable @Size(2) int[] offsetInWindow) argument
21169 dispatchNestedPreScroll(int dx, int dy, @Nullable @Size(2) int[] consumed, @Nullable @Size(2) int[] offsetInWindow) argument
[all...]

Completed in 119 milliseconds