Lines Matching defs:child

37         public boolean onStartNestedScroll(ViewParent parent, View child, View target,
40 return ((NestedScrollingParent) parent).onStartNestedScroll(child, target,
46 public void onNestedScrollAccepted(ViewParent parent, View child, View target,
49 ((NestedScrollingParent) parent).onNestedScrollAccepted(child, target,
93 public void notifySubtreeAccessibilityStateChanged(ViewParent parent, View child,
102 public void notifySubtreeAccessibilityStateChanged(ViewParent parent, View child,
104 parent.notifySubtreeAccessibilityStateChanged(child, source, changeType);
111 public boolean onStartNestedScroll(ViewParent parent, View child, View target,
114 return parent.onStartNestedScroll(child, target, nestedScrollAxes);
123 public void onNestedScrollAccepted(ViewParent parent, View child, View target,
126 parent.onNestedScrollAccepted(child, target, nestedScrollAxes);
207 * Called by a child to request from its parent to send an {@link AccessibilityEvent}.
208 * The child has already populated a record for itself in the event and is delegating
219 * @param child The child which requests sending the event.
228 ViewParent parent, View child, AccessibilityEvent event) {
229 return parent.requestSendAccessibilityEvent(child, event);
240 * @param child Direct child of this ViewParent containing target
246 public static boolean onStartNestedScroll(ViewParent parent, View child, View target,
248 return onStartNestedScroll(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
258 * @param child Direct child of this ViewParent containing target
263 public static void onNestedScrollAccepted(ViewParent parent, View child, View target,
265 onNestedScrollAccepted(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
332 * @param child Direct child of this ViewParent containing target
339 public static boolean onStartNestedScroll(ViewParent parent, View child, View target,
343 return ((NestedScrollingParent2) parent).onStartNestedScroll(child, target,
347 return IMPL.onStartNestedScroll(parent, child, target, nestedScrollAxes);
361 * @param child Direct child of this ViewParent containing target
369 public static void onNestedScrollAccepted(ViewParent parent, View child, View target,
373 ((NestedScrollingParent2) parent).onNestedScrollAccepted(child, target,
377 IMPL.onNestedScrollAccepted(parent, child, target, nestedScrollAxes);
406 * <p>This method will be called when the ViewParent's current nested scrolling child view
413 * position of multiple child elements, for example. The unconsumed portion may be used to
441 * to consume the scroll before the nested scrolling child does. An example of this is a
445 * <p><code>onNestedPreScroll</code> is called when a nested scrolling child invokes
472 * <p>This method signifies that a nested scrolling child has detected suitable conditions
478 * <p>If a nested scrolling child view would normally fling but it is at the edge of
480 * parent instead. The parent may optionally consume the fling or observe a child fling.</p>
485 * @param consumed true if the child consumed the fling, false otherwise
496 * <p>This method siginfies that a nested scrolling child has detected a fling with the given
505 * <code>true</code> from this method, the parent indicates that the child should not
522 * @param child The direct child whose subtree has changed.
533 public static void notifySubtreeAccessibilityStateChanged(ViewParent parent, View child,
535 IMPL.notifySubtreeAccessibilityStateChanged(parent, child, source, changeType);