Home
last modified time | relevance | path

Searched refs:iconBitmapSize (Results 1 – 12 of 12) sorted by relevance

/aosp12/packages/apps/Launcher3/src/com/android/launcher3/icons/
H A DLauncherIcons.java61 return new LauncherIcons(context, idp.fillResIconDpi, idp.iconBitmapSize, poolId, in obtain()
76 protected LauncherIcons(Context context, int fillResIconDpi, int iconBitmapSize, int poolId, in LauncherIcons() argument
78 super(context, fillResIconDpi, iconBitmapSize, shapeDetection); in LauncherIcons()
H A DIconCache.java105 idp.fillResIconDpi, idp.iconBitmapSize, true /* inMemoryCache */); in IconCache()
/aosp12/frameworks/libs/systemui/iconloaderlib/src_full_lib/com/android/launcher3/icons/
H A DIconFactory.java64 private IconFactory(Context context, int fillResIconDpi, int iconBitmapSize, int poolId) { in IconFactory() argument
65 super(context, fillResIconDpi, iconBitmapSize); in IconFactory()
/aosp12/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/
H A DBaseIconFactory.java68 protected BaseIconFactory(Context context, int fillResIconDpi, int iconBitmapSize, in BaseIconFactory() argument
73 mIconBitmapSize = iconBitmapSize; in BaseIconFactory()
87 public BaseIconFactory(Context context, int fillResIconDpi, int iconBitmapSize) { in BaseIconFactory() argument
88 this(context, fillResIconDpi, iconBitmapSize, false); in BaseIconFactory()
H A DIconNormalizer.java88 IconNormalizer(Context context, int iconBitmapSize, boolean shapeDetection) { in IconNormalizer() argument
90 mMaxSize = iconBitmapSize * 2; in IconNormalizer()
/aosp12/frameworks/base/core/java/com/android/internal/app/
H A DSimpleIconFactory.java146 private SimpleIconFactory(Context context, int fillResIconDpi, int iconBitmapSize, in SimpleIconFactory() argument
150 mIconBitmapSize = iconBitmapSize; in SimpleIconFactory()
159 mMaxSize = iconBitmapSize * 2; in SimpleIconFactory()
170 mDefaultBlurMaskFilter = new BlurMaskFilter(iconBitmapSize * BLUR_FACTOR, in SimpleIconFactory()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/graphics/
H A DLauncherPreviewRenderer.java145 return new LauncherIconsForPreview(context, mIdp.fillResIconDpi, mIdp.iconBitmapSize, in newLauncherIcons()
151 private LauncherIconsForPreview(Context context, int fillResIconDpi, int iconBitmapSize, in LauncherIconsForPreview() argument
153 super(context, fillResIconDpi, iconBitmapSize, poolId, shapeDetection); in LauncherIconsForPreview()
204 new BaseIconFactory(context, mIdp.fillResIconDpi, mIdp.iconBitmapSize) { }; in LauncherPreviewRenderer()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/
H A DInvariantDeviceProfile.java117 public int iconBitmapSize; field in InvariantDeviceProfile
319 iconBitmapSize = ResourceUtils.pxFromDp(maxIconSize, metrics); in initGrid()
320 fillResIconDpi = getLauncherIconDensity(iconBitmapSize); in initGrid()
396 numColumns, numRows, numDatabaseHotseatIcons, iconBitmapSize, fillResIconDpi, in toModelState()
H A DLauncherAppState.java159 mInvariantDeviceProfile.fillResIconDpi, mInvariantDeviceProfile.iconBitmapSize); in refreshAndReloadLauncher()
H A DUtilities.java741 int iconSize = appState.getInvariantDeviceProfile().iconBitmapSize; in getBadge()
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
H A DSplashscreenContentDrawer.java408 protected ShapeIconFactory(Context context, int fillResIconDpi, int iconBitmapSize) { in ShapeIconFactory() argument
409 super(context, fillResIconDpi, iconBitmapSize, true /* shapeDetection */); in ShapeIconFactory()
/aosp12/packages/apps/Launcher3/tests/src/com/android/launcher3/util/
H A DLauncherModelHelper.java417 idp.iconBitmapSize = DEFAULT_BITMAP_SIZE; in setupDefaultLayoutProvider()