Home
last modified time | relevance | path

Searched refs:swatch (Results 1 – 7 of 7) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DMediaNotificationProcessor.java75 for (Palette.Swatch swatch : swatches) { in findBackgroundSwatch()
76 if (swatch != dominantSwatch in findBackgroundSwatch()
77 && swatch.getPopulation() > highestNonWhitePopulation in findBackgroundSwatch()
78 && !isWhiteOrBlack(swatch.getHsl())) { in findBackgroundSwatch()
79 second = swatch; in findBackgroundSwatch()
80 highestNonWhitePopulation = swatch.getPopulation(); in findBackgroundSwatch()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DMediaNotificationProcessorTest.java65 Palette.Swatch swatch = MediaNotificationProcessor.findBackgroundSwatch(mArtwork); in findBackgroundSwatch_white() local
67 assertCloseColors(swatch.getRgb(), Color.WHITE); in findBackgroundSwatch_white()
77 Palette.Swatch swatch = MediaNotificationProcessor.findBackgroundSwatch(mArtwork); in findBackgroundSwatch_red() local
79 assertCloseColors(swatch.getRgb(), Color.RED); in findBackgroundSwatch_red()
/aosp14/frameworks/base/core/java/com/android/internal/graphics/palette/
H A DPalette.java116 Swatch swatch = mSwatches.get(i); in findDominantSwatch() local
117 if (swatch.getPopulation() > maxPop) { in findDominantSwatch()
118 maxSwatch = swatch; in findDominantSwatch()
119 maxPop = swatch.getPopulation(); in findDominantSwatch()
172 Swatch swatch = (Swatch) o; in equals() local
173 return mPopulation == swatch.mPopulation && mColor.toArgb() == swatch.mColor.toArgb(); in equals()
H A DColorCutQuantizer.java210 Swatch swatch = vbox.getAverageColor(); in generateAverageColors() local
211 colors.add(swatch); in generateAverageColors()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DMediaArtworkProcessor.kt81 val swatch = MediaNotificationProcessor.findBackgroundSwatch(artwork) regex
84 canvas.drawColor(ColorUtils.setAlphaComponent(swatch.rgb, COLOR_ALPHA))
/aosp14/frameworks/base/core/java/android/app/
H A DWallpaperColors.java241 Palette.Swatch swatch = swatches.get(i); in fromBitmap() local
242 int colorInt = swatch.getInt(); in fromBitmap()
243 populationByColor.put(colorInt, swatch.getPopulation()); in fromBitmap()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
H A DSplashscreenContentDrawer.java973 Palette.Swatch swatch = swatches.get(i); in isGrayscale() local
974 if (!isGrayscaleColor(swatch.getInt())) { in isGrayscale()