Searched refs:firstRect (Results 1 – 2 of 2) sorted by relevance
107 final Rect firstRect = mTemp1; in compare() local110 mAdapter.obtainBounds(first, firstRect); 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()
1431 final Rect firstRect = mTempRect1; in doViewsOverlap() local1432 getChildRect(first, first.getParent() != this, firstRect); 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()