Searched defs:onDescendantInvalidated (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewOverlay.java332 public void onDescendantInvalidated(@NonNull View child, @NonNull View target) { method in class:ViewOverlay.OverlayViewGroup
336 ((ViewGroup) mHostView).onDescendantInvalidated(mHostView, target);
340 super.onDescendantInvalidated(child, target);
342 // Can't use onDescendantInvalidated because host isn't a ViewGroup - fall back
H A DViewParent.java71 default void onDescendantInvalidated(@NonNull View child, @NonNull View target) { method in interface:ViewParent
74 getParent().onDescendantInvalidated(child, target);
84 * @deprecated Use {@link #onDescendantInvalidated(View, View)} instead.
109 * @deprecated Use {@link #onDescendantInvalidated(View, View)} instead.
H A DViewGroup.java5794 public void onDescendantInvalidated(@NonNull View child, @NonNull View target) { method in class:ViewGroup
5823 mParent.onDescendantInvalidated(this, target);
5832 * @deprecated Use {@link #onDescendantInvalidated(View, View)} instead to observe updates to
5841 onDescendantInvalidated(child, child);
5949 * @deprecated Use {@link #onDescendantInvalidated(View, View)} instead to observe updates to
H A DViewRootImpl.java1237 public void onDescendantInvalidated(@NonNull View child, @NonNull View descendant) { method in class:ViewRootImpl

Completed in 90 milliseconds