Searched refs:secondRect (Results 1 – 2 of 2) sorted by relevance
108 final Rect secondRect = mTemp2; in compare() local111 mAdapter.obtainBounds(second, secondRect); in compare()113 if (firstRect.top < secondRect.top) { in compare()115 } else if (firstRect.top > secondRect.top) { in compare()117 } else if (firstRect.left < secondRect.left) { in compare()119 } else if (firstRect.left > secondRect.left) { in compare()121 } else if (firstRect.bottom < secondRect.bottom) { in compare()123 } else if (firstRect.bottom > secondRect.bottom) { in compare()125 } else if (firstRect.right < secondRect.right) { in compare()127 } else if (firstRect.right > secondRect.right) { in compare()
1433 final Rect secondRect = mTempRect2; in doViewsOverlap() local1434 getChildRect(second, second.getParent() != this, secondRect); in doViewsOverlap()1436 return !(firstRect.left > secondRect.right || firstRect.top > secondRect.bottom in doViewsOverlap()1437 || firstRect.right < secondRect.left || firstRect.bottom < secondRect.top); in doViewsOverlap()