Lines Matching refs:second

114      * @param second The second view
116 static public void assertBaselineAligned(View first, View second) {
121 second.getLocationOnScreen(xy);
122 int secondTop = xy[1] + second.getBaseline();
132 * @param second The second view
134 static public void assertRightAligned(View first, View second) {
139 second.getLocationOnScreen(xy);
140 int secondRight = xy[0] + second.getMeasuredWidth();
150 * @param second The second view
151 * @param margin The margin between the first view and the second view
153 static public void assertRightAligned(View first, View second, int margin) {
158 second.getLocationOnScreen(xy);
159 int secondRight = xy[0] + second.getMeasuredWidth();
169 * @param second The second view
171 static public void assertLeftAligned(View first, View second) {
176 second.getLocationOnScreen(xy);
187 * @param second The second view
188 * @param margin The margin between the first view and the second view
190 static public void assertLeftAligned(View first, View second, int margin) {
195 second.getLocationOnScreen(xy);
206 * @param second The second view
208 static public void assertBottomAligned(View first, View second) {
213 second.getLocationOnScreen(xy);
214 int secondBottom = xy[1] + second.getMeasuredHeight();
224 * @param second The second view
225 * @param margin The margin between the first view and the second view
227 static public void assertBottomAligned(View first, View second, int margin) {
232 second.getLocationOnScreen(xy);
233 int secondBottom = xy[1] + second.getMeasuredHeight();
243 * @param second The second view
245 static public void assertTopAligned(View first, View second) {
250 second.getLocationOnScreen(xy);
261 * @param second The second view
262 * @param margin The margin between the first view and the second view
264 static public void assertTopAligned(View first, View second, int margin) {
269 second.getLocationOnScreen(xy);