Home
last modified time | relevance | path

Searched refs:smallestWidth (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/
DRecentsConfiguration.java66 public final int smallestWidth; field in RecentsConfiguration
98 smallestWidth = ssp.getDeviceSmallestWidth(); in RecentsConfiguration()
99 isLargeScreen = smallestWidth >= (int) (screenDensity * LARGE_SCREEN_MIN_DP); in RecentsConfiguration()
100 isXLargeScreen = smallestWidth >= (int) (screenDensity * XLARGE_SCREEN_MIN_DP); in RecentsConfiguration()
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
DCameraSource.java280 int smallestWidth = previewSizes.get(0).width; in findClosestSize() local
294 if ( size.width < smallestWidth && in findClosestSize()
296 smallestWidth = size.width; in findClosestSize()
302 closestWidth = smallestWidth; in findClosestSize()
/frameworks/base/core/java/com/android/internal/view/menu/
DMenuPopupHelper.java233 final int smallestWidth = Math.min(displaySize.x, displaySize.y); in createPopup() local
236 final boolean enableCascadingSubmenus = smallestWidth >= minSmallestWidthCascading; in createPopup()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DCameraStreamer.java1328 int smallestWidth = sizes.get(0).width; in findClosestSizeFromList() local
1342 if ( size.width < smallestWidth && in findClosestSizeFromList()
1344 smallestWidth = size.width; in findClosestSizeFromList()
1350 closestWidth = smallestWidth; in findClosestSizeFromList()