Home
last modified time | relevance | path

Searched defs:outLab (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/util/
DNotificationColorUtil.java429 public static void colorToLAB(@ColorInt int color, @NonNull double[] outLab) { in colorToLAB()
430 RGBToLAB(Color.red(color), Color.green(color), Color.blue(color), outLab); in colorToLAB() local
449 @NonNull double[] outLab) { in RGBToLAB()
/frameworks/support/v4/java/android/support/v4/graphics/
DColorUtils.java309 public static void colorToLAB(@ColorInt int color, @NonNull double[] outLab) { in colorToLAB()
310 RGBToLAB(Color.red(color), Color.green(color), Color.blue(color), outLab); in colorToLAB() local
329 @NonNull double[] outLab) { in RGBToLAB()