• Home
  • Raw
  • Download

Lines Matching refs:second

124     static public void assertBaselineAligned(View first, View second) {  in assertBaselineAligned()  argument
129 second.getLocationOnScreen(xy); in assertBaselineAligned()
130 int secondTop = xy[1] + second.getBaseline(); in assertBaselineAligned()
142 static public void assertRightAligned(View first, View second) { in assertRightAligned() argument
147 second.getLocationOnScreen(xy); in assertRightAligned()
148 int secondRight = xy[0] + second.getMeasuredWidth(); in assertRightAligned()
161 static public void assertRightAligned(View first, View second, int margin) { in assertRightAligned() argument
166 second.getLocationOnScreen(xy); in assertRightAligned()
167 int secondRight = xy[0] + second.getMeasuredWidth(); in assertRightAligned()
179 static public void assertLeftAligned(View first, View second) { in assertLeftAligned() argument
184 second.getLocationOnScreen(xy); in assertLeftAligned()
198 static public void assertLeftAligned(View first, View second, int margin) { in assertLeftAligned() argument
203 second.getLocationOnScreen(xy); in assertLeftAligned()
216 static public void assertBottomAligned(View first, View second) { in assertBottomAligned() argument
221 second.getLocationOnScreen(xy); in assertBottomAligned()
222 int secondBottom = xy[1] + second.getMeasuredHeight(); in assertBottomAligned()
235 static public void assertBottomAligned(View first, View second, int margin) { in assertBottomAligned() argument
240 second.getLocationOnScreen(xy); in assertBottomAligned()
241 int secondBottom = xy[1] + second.getMeasuredHeight(); in assertBottomAligned()
253 static public void assertTopAligned(View first, View second) { in assertTopAligned() argument
258 second.getLocationOnScreen(xy); in assertTopAligned()
272 static public void assertTopAligned(View first, View second, int margin) { in assertTopAligned() argument
277 second.getLocationOnScreen(xy); in assertTopAligned()