Searched defs:expectedWidth (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
H A DBaseCardViewTest.java69 void measureAndLayout(View view, int expectedWidth, int expectedHeight) { argument
71 assertEquals(expectedWidth, view.getMeasuredWidth());
73 view.layout(0, 0, expectedWidth, expectedHeight);
H A DItemBridgeAdapterTest.java107 static void measureAndLayout(View view, int expectedWidth, int expectedHeight) { argument
108 view.measure(View.MeasureSpec.makeMeasureSpec(expectedWidth, View.MeasureSpec.EXACTLY),
110 view.layout(0, 0, expectedWidth, expectedHeight);
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DShortcutManagerTest1.java917 protected void checkShrinkBitmap(int expectedWidth, int expectedHeight, int resId, int maxSize) { argument
918 assertBitmapSize(expectedWidth, expectedHeight,
/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
H A DShortcutManagerTestUtils.java592 public static void assertBitmapSize(int expectedWidth, int expectedHeight, Bitmap bitmap) { argument
593 assertEquals("width", expectedWidth, bitmap.getWidth());

Completed in 162 milliseconds