Lines Matching defs:second

122      * @param second The second view
124 static public void assertBaselineAligned(View first, View second) {
129 second.getLocationOnScreen(xy);
130 int secondTop = xy[1] + second.getBaseline();
140 * @param second The second view
142 static public void assertRightAligned(View first, View second) {
147 second.getLocationOnScreen(xy);
148 int secondRight = xy[0] + second.getMeasuredWidth();
158 * @param second The second view
159 * @param margin The margin between the first view and the second view
161 static public void assertRightAligned(View first, View second, int margin) {
166 second.getLocationOnScreen(xy);
167 int secondRight = xy[0] + second.getMeasuredWidth();
177 * @param second The second view
179 static public void assertLeftAligned(View first, View second) {
184 second.getLocationOnScreen(xy);
195 * @param second The second view
196 * @param margin The margin between the first view and the second view
198 static public void assertLeftAligned(View first, View second, int margin) {
203 second.getLocationOnScreen(xy);
214 * @param second The second view
216 static public void assertBottomAligned(View first, View second) {
221 second.getLocationOnScreen(xy);
222 int secondBottom = xy[1] + second.getMeasuredHeight();
232 * @param second The second view
233 * @param margin The margin between the first view and the second view
235 static public void assertBottomAligned(View first, View second, int margin) {
240 second.getLocationOnScreen(xy);
241 int secondBottom = xy[1] + second.getMeasuredHeight();
251 * @param second The second view
253 static public void assertTopAligned(View first, View second) {
258 second.getLocationOnScreen(xy);
269 * @param second The second view
270 * @param margin The margin between the first view and the second view
272 static public void assertTopAligned(View first, View second, int margin) {
277 second.getLocationOnScreen(xy);