Searched defs:calculateContrast (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/core-utils/java/android/support/v4/graphics/
H A DColorUtils.java90 public static double calculateContrast(@ColorInt int foreground, @ColorInt int background) { method in class:ColorUtils
126 double testRatio = calculateContrast(testForeground, background);
142 testRatio = calculateContrast(testForeground, background);
/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java91 public static double calculateContrast(@ColorInt int foreground, @ColorInt int background) { method in class:ColorUtils
127 // raising an exception in calculateContrast.
129 return calculateContrast(fg, testBackground);
152 return calculateContrast(testForeground, bg);
156 double testRatio = contrastCalculator.calculateContrast(foreground, background, 255);
186 final double testRatio = calculator.calculateContrast(foreground, background,
662 double calculateContrast(int foreground, int background, int alpha); method in interface:ColorUtils.ContrastCalculator
/frameworks/base/core/java/com/android/internal/util/
H A DNotificationColorUtil.java303 if (ColorUtilsFromCompat.calculateContrast(fg, bg) >= minRatio) {
319 if (ColorUtilsFromCompat.calculateContrast(fg, bg) > minRatio) {
339 if (ColorUtilsFromCompat.calculateContrast(fg, bg) >= minRatio) {
351 if (ColorUtilsFromCompat.calculateContrast(fg, bg) > minRatio) {
374 if (ColorUtilsFromCompat.calculateContrast(fg, bg) >= minRatio) {
390 if (ColorUtilsFromCompat.calculateContrast(fg, bg) > minRatio) {
437 ColorUtilsFromCompat.calculateContrast(colorOld, bg),
438 ColorUtilsFromCompat.calculateContrast(colorNew, bg));
595 public static double calculateContrast(int foregroundColor, int backgroundColor) { method in class:NotificationColorUtil
596 return ColorUtilsFromCompat.calculateContrast(foregroundColo
677 public static double calculateContrast(@ColorInt int foreground, @ColorInt int background) { method in class:NotificationColorUtil.ColorUtilsFromCompat
[all...]

Completed in 122 milliseconds