Home
last modified time | relevance | path

Searched refs:checkLayoutParams (Results 1 – 11 of 11) sorted by relevance

/cts/tests/tests/widget/src/android/widget/cts/
DAbsoluteLayoutTest.java93 assertTrue(mMyAbsoluteLayout.checkLayoutParams(mAbsoluteLayoutParams)); in testCheckLayoutParams()
96 assertFalse(mMyAbsoluteLayout.checkLayoutParams(layoutParams)); in testCheckLayoutParams()
97 assertFalse(mMyAbsoluteLayout.checkLayoutParams(null)); in testCheckLayoutParams()
151 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams() method in AbsoluteLayoutTest.MyAbsoluteLayout
152 return super.checkLayoutParams(p); in checkLayoutParams()
DTableRowTest.java164 assertTrue(mockTableRow.checkLayoutParams(new TableRow.LayoutParams(200, 300))); in testCheckLayoutParams()
166 assertFalse(mockTableRow.checkLayoutParams(new ViewGroup.LayoutParams(200, 300))); in testCheckLayoutParams()
168 assertFalse(mockTableRow.checkLayoutParams(new RelativeLayout.LayoutParams(200, 300))); in testCheckLayoutParams()
170 assertFalse(mockTableRow.checkLayoutParams(null)); in testCheckLayoutParams()
224 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams() method in TableRowTest.MockTableRow
225 return super.checkLayoutParams(p); in checkLayoutParams()
DRadioGroupTest.java332 assertFalse(mRadioGroupWrapper.checkLayoutParams(null)); in testCheckLayoutParams()
336 assertFalse(mRadioGroupWrapper.checkLayoutParams(relativeParams)); in testCheckLayoutParams()
340 assertFalse(mRadioGroupWrapper.checkLayoutParams(linearParams)); in testCheckLayoutParams()
344 assertTrue(mRadioGroupWrapper.checkLayoutParams(radioParams)); in testCheckLayoutParams()
525 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams() method in RadioGroupTest.MockRadioGroup
526 return super.checkLayoutParams(p); in checkLayoutParams()
DFrameLayoutTest.java226 assertFalse(myFrameLayout.checkLayoutParams(null)); in testCheckLayoutParams()
231 assertFalse(myFrameLayout.checkLayoutParams(params1)); in testCheckLayoutParams()
234 assertTrue(myFrameLayout.checkLayoutParams(params2)); in testCheckLayoutParams()
334 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams() method in FrameLayoutTest.MyFrameLayout
335 return super.checkLayoutParams(p); in checkLayoutParams()
DGalleryTest.java221 assertFalse(gallery.checkLayoutParams(p1)); in testCheckLayoutParams()
224 assertTrue(gallery.checkLayoutParams(p2)); in testCheckLayoutParams()
361 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams() method in GalleryTest.MyGallery
362 return super.checkLayoutParams(p); in checkLayoutParams()
DRelativeLayoutTest.java318 assertFalse(myRelativeLayout.checkLayoutParams(p1)); in testCheckLayoutParams()
321 assertTrue(myRelativeLayout.checkLayoutParams(p2)); in testCheckLayoutParams()
324 assertFalse(myRelativeLayout.checkLayoutParams(p3)); in testCheckLayoutParams()
405 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams() method in RelativeLayoutTest.MyRelativeLayout
406 return super.checkLayoutParams(p); in checkLayoutParams()
DTableLayoutTest.java574 assertTrue(mTableCustomEmpty.checkLayoutParams(new TableLayout.LayoutParams(200, 300))); in testCheckLayoutParams()
576 assertFalse(mTableCustomEmpty.checkLayoutParams(new ViewGroup.LayoutParams(200, 300))); in testCheckLayoutParams()
578 assertFalse(mTableCustomEmpty.checkLayoutParams(new RelativeLayout.LayoutParams(200, 300))); in testCheckLayoutParams()
580 assertFalse(mTableCustomEmpty.checkLayoutParams(null)); in testCheckLayoutParams()
633 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams() method in TableLayoutTest.MockTableLayout
634 return super.checkLayoutParams(p); in checkLayoutParams()
DAbsListViewTest.java566 assertTrue(listView.checkLayoutParams(param1)); in testCheckLayoutParams()
569 assertFalse(listView.checkLayoutParams(param2)); in testCheckLayoutParams()
1191 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams() method in AbsListViewTest.MyListView
1192 return super.checkLayoutParams(p); in checkLayoutParams()
DLinearLayoutTest.java280 assertFalse(parent.checkLayoutParams(params)); in testCheckLayoutParams()
283 assertTrue(parent.checkLayoutParams(params)); in testCheckLayoutParams()
1274 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams() method in LinearLayoutTest.MockLinearLayout
1275 return super.checkLayoutParams(p); in checkLayoutParams()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DBoxInsetLayout.java369 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams() method in BoxInsetLayout
/cts/tests/tests/view/src/android/view/cts/
DViewGroupTest.java425 assertFalse(mMockViewGroup.checkLayoutParams(null)); in testCheckLayoutParams()
427 assertTrue(mMockViewGroup.checkLayoutParams(new ViewGroup.LayoutParams(100, 200))); in testCheckLayoutParams()
2776 public boolean checkLayoutParams(LayoutParams p) { in checkLayoutParams() method in ViewGroupTest.MockViewGroup
2777 return super.checkLayoutParams(p); in checkLayoutParams()