Lines Matching defs:consumed

69                 int[] consumed) {
71 ((NestedScrollingParent) parent).onNestedPreScroll(target, dx, dy, consumed);
76 float velocityY, boolean consumed) {
79 consumed);
156 int[] consumed) {
158 parent.onNestedPreScroll(target, dx, dy, consumed);
167 float velocityY, boolean consumed) {
169 return parent.onNestedFling(target, velocityX, velocityY, consumed);
288 * @param dxConsumed Horizontal scroll distance in pixels already consumed by target
289 * @param dyConsumed Vertical scroll distance in pixels already consumed by target
290 * @param dxUnconsumed Horizontal scroll distance in pixels not consumed by target
291 * @param dyUnconsumed Vertical scroll distance in pixels not consumed by target
309 * @param consumed Output. The horizontal and vertical scroll distance consumed by this parent
312 int[] consumed) {
313 onNestedPreScroll(parent, target, dx, dy, consumed, ViewCompat.TYPE_TOUCH);
411 * <p>Both the consumed and unconsumed portions of the scroll distance are reported to the
412 * ViewParent. An implementation may choose to use the consumed portion to match or chase scroll
419 * @param dxConsumed Horizontal scroll distance in pixels already consumed by target
420 * @param dyConsumed Vertical scroll distance in pixels already consumed by target
421 * @param dxUnconsumed Horizontal scroll distance in pixels not consumed by target
422 * @param dyUnconsumed Vertical scroll distance in pixels not consumed by target
447 * should report how any pixels of the scroll reported by dx, dy were consumed in the
448 * <code>consumed</code> array. Index 0 corresponds to dx and index 1 corresponds to dy.
449 * This parameter will never be null. Initial values for consumed[0] and consumed[1]
455 * @param consumed Output. The horizontal and vertical scroll distance consumed by this parent
459 int[] consumed, int type) {
462 ((NestedScrollingParent2) parent).onNestedPreScroll(target, dx, dy, consumed, type);
465 IMPL.onNestedPreScroll(parent, target, dx, dy, consumed);
485 * @param consumed true if the child consumed the fling, false otherwise
486 * @return true if this parent consumed or otherwise reacted to the fling
489 float velocityY, boolean consumed) {
490 return IMPL.onNestedFling(parent, target, velocityX, velocityY, consumed);
511 * @return true if this parent consumed the fling ahead of the target view