Lines Matching refs:first

124     static public void assertBaselineAligned(View first, View second) {  in assertBaselineAligned()  argument
126 first.getLocationOnScreen(xy); in assertBaselineAligned()
127 int firstTop = xy[1] + first.getBaseline(); in assertBaselineAligned()
142 static public void assertRightAligned(View first, View second) { in assertRightAligned() argument
144 first.getLocationOnScreen(xy); in assertRightAligned()
145 int firstRight = xy[0] + first.getMeasuredWidth(); in assertRightAligned()
161 static public void assertRightAligned(View first, View second, int margin) { in assertRightAligned() argument
163 first.getLocationOnScreen(xy); in assertRightAligned()
164 int firstRight = xy[0] + first.getMeasuredWidth(); in assertRightAligned()
179 static public void assertLeftAligned(View first, View second) { in assertLeftAligned() argument
181 first.getLocationOnScreen(xy); in assertLeftAligned()
198 static public void assertLeftAligned(View first, View second, int margin) { in assertLeftAligned() argument
200 first.getLocationOnScreen(xy); in assertLeftAligned()
216 static public void assertBottomAligned(View first, View second) { in assertBottomAligned() argument
218 first.getLocationOnScreen(xy); in assertBottomAligned()
219 int firstBottom = xy[1] + first.getMeasuredHeight(); in assertBottomAligned()
235 static public void assertBottomAligned(View first, View second, int margin) { in assertBottomAligned() argument
237 first.getLocationOnScreen(xy); in assertBottomAligned()
238 int firstBottom = xy[1] + first.getMeasuredHeight(); in assertBottomAligned()
253 static public void assertTopAligned(View first, View second) { in assertTopAligned() argument
255 first.getLocationOnScreen(xy); in assertTopAligned()
272 static public void assertTopAligned(View first, View second, int margin) { in assertTopAligned() argument
274 first.getLocationOnScreen(xy); in assertTopAligned()