Home
last modified time | relevance | path

Searched refs:comparedWith (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/
DGhostView.java276 private static boolean isOnTop(ArrayList<View> viewParents, ArrayList<View> comparedWith) { in isOnTop() argument
277 if (viewParents.isEmpty() || comparedWith.isEmpty() || in isOnTop()
278 viewParents.get(0) != comparedWith.get(0)) { in isOnTop()
282 int depth = Math.min(viewParents.size(), comparedWith.size()); in isOnTop()
285 View comparedWithParent = comparedWith.get(i); in isOnTop()
294 boolean isComparedWithTheParent = (comparedWith.size() == depth); in isOnTop()
314 private static boolean isOnTop(View view, View comparedWith) { in isOnTop() argument
333 } else if (child == comparedWith) { in isOnTop()