Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
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()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
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()
/frameworks/opt/colorpicker/src/com/android/colorpicker/
DColorPickerPalette.java133 private static void addSwatchToRow(TableRow row, View swatch, int rowNumber) { in addSwatchToRow() argument
135 row.addView(swatch); in addSwatchToRow()
137 row.addView(swatch, 0); in addSwatchToRow()
148 View swatch, String[] contentDescriptions) { in setSwatchDescription() argument
169 swatch.setContentDescription(description); in setSwatchDescription()
/frameworks/base/core/java/com/android/internal/graphics/palette/
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()
DColorCutQuantizer.java210 Swatch swatch = vbox.getAverageColor(); in generateAverageColors() local
211 colors.add(swatch); in generateAverageColors()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DMediaArtworkProcessor.kt81 val swatch = MediaNotificationProcessor.findBackgroundSwatch(artwork) in processArtwork() constant
84 canvas.drawColor(ColorUtils.setAlphaComponent(swatch.rgb, COLOR_ALPHA)) in processArtwork()
/frameworks/base/core/java/android/app/
DWallpaperColors.java208 Palette.Swatch swatch = swatches.get(i); in fromBitmap() local
209 int colorInt = swatch.getInt(); in fromBitmap()
210 populationByColor.put(colorInt, swatch.getPopulation()); in fromBitmap()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
DSplashscreenContentDrawer.java749 Palette.Swatch swatch = swatches.get(i); in isGrayscale() local
750 if (!isGrayscaleColor(swatch.getInt())) { in isGrayscale()