Lines Matching refs:first
116 static public void assertBaselineAligned(View first, View second) { in assertBaselineAligned() argument
118 first.getLocationOnScreen(xy); in assertBaselineAligned()
119 int firstTop = xy[1] + first.getBaseline(); in assertBaselineAligned()
134 static public void assertRightAligned(View first, View second) { in assertRightAligned() argument
136 first.getLocationOnScreen(xy); in assertRightAligned()
137 int firstRight = xy[0] + first.getMeasuredWidth(); in assertRightAligned()
153 static public void assertRightAligned(View first, View second, int margin) { in assertRightAligned() argument
155 first.getLocationOnScreen(xy); in assertRightAligned()
156 int firstRight = xy[0] + first.getMeasuredWidth(); in assertRightAligned()
171 static public void assertLeftAligned(View first, View second) { in assertLeftAligned() argument
173 first.getLocationOnScreen(xy); in assertLeftAligned()
190 static public void assertLeftAligned(View first, View second, int margin) { in assertLeftAligned() argument
192 first.getLocationOnScreen(xy); in assertLeftAligned()
208 static public void assertBottomAligned(View first, View second) { in assertBottomAligned() argument
210 first.getLocationOnScreen(xy); in assertBottomAligned()
211 int firstBottom = xy[1] + first.getMeasuredHeight(); in assertBottomAligned()
227 static public void assertBottomAligned(View first, View second, int margin) { in assertBottomAligned() argument
229 first.getLocationOnScreen(xy); in assertBottomAligned()
230 int firstBottom = xy[1] + first.getMeasuredHeight(); in assertBottomAligned()
245 static public void assertTopAligned(View first, View second) { in assertTopAligned() argument
247 first.getLocationOnScreen(xy); in assertTopAligned()
264 static public void assertTopAligned(View first, View second, int margin) { in assertTopAligned() argument
266 first.getLocationOnScreen(xy); in assertTopAligned()