Searched refs:potentialChild (Results 1 – 1 of 1) sorted by relevance
906 private static boolean isChildView(View parent, View potentialChild) { in isChildView() argument907 return potentialChild.getParent() != null && (potentialChild.getParent() == parent || ( in isChildView()908 potentialChild.getParent() instanceof ViewGroup && isChildView(parent, in isChildView()909 (ViewGroup) potentialChild.getParent()))); in isChildView()