Home | History | Annotate | Download | only in test

Lines Matching refs:parent

329      * @param parent The group whose integrity to check
331 static public void assertGroupIntegrity(ViewGroup parent) {
332 final int count = parent.getChildCount();
336 assertNotNull("group should not contain null children", parent.getChildAt(i));
337 assertSame(parent, parent.getChildAt(i).getParent());
344 * @param parent The group
347 static public void assertGroupContains(ViewGroup parent, View child) {
348 final int count = parent.getChildCount();
353 if (parent.getChildAt(i) == child) {
357 assertTrue("child " + child + " is duplicated in parent", false);
368 * @param parent The group
371 static public void assertGroupNotContains(ViewGroup parent, View child) {
372 final int count = parent.getChildCount();
376 if (parent.getChildAt(i) == child) {
377 assertTrue("child " + child + " is found in parent", false);