Searched refs:outLab (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java351 * @param outLab 3-element array which holds the resulting LAB components
353 public static void colorToLAB(@ColorInt int color, @NonNull double[] outLab) { argument
354 RGBToLAB(Color.red(color), Color.green(color), Color.blue(color), outLab);
361 * <li>outLab[0] is L [0 ...1)</li>
362 * <li>outLab[1] is a [-128...127)</li>
363 * <li>outLab[2] is b [-128...127)</li>
369 * @param outLab 3-element array which holds the resulting LAB components
373 @NonNull double[] outLab) {
375 RGBToXYZ(r, g, b, outLab);
376 // outLab no
371 RGBToLAB(@ntRangefrom = 0x0, to = 0xFF) int r, @IntRange(from = 0x0, to = 0xFF) int g, @IntRange(from = 0x0, to = 0xFF) int b, @NonNull double[] outLab) argument
453 XYZToLAB(@loatRangefrom = 0f, to = XYZ_WHITE_REFERENCE_X) double x, @FloatRange(from = 0f, to = XYZ_WHITE_REFERENCE_Y) double y, @FloatRange(from = 0f, to = XYZ_WHITE_REFERENCE_Z) double z, @NonNull double[] outLab) argument
[all...]
/frameworks/support/compat/src/main/java/androidx/core/graphics/
H A DColorUtils.java375 * @param outLab 3-element array which holds the resulting LAB components
377 public static void colorToLAB(@ColorInt int color, @NonNull double[] outLab) { argument
378 RGBToLAB(Color.red(color), Color.green(color), Color.blue(color), outLab);
385 * <li>outLab[0] is L [0 ...1)</li>
386 * <li>outLab[1] is a [-128...127)</li>
387 * <li>outLab[2] is b [-128...127)</li>
393 * @param outLab 3-element array which holds the resulting LAB components
397 @NonNull double[] outLab) {
399 RGBToXYZ(r, g, b, outLab);
400 // outLab no
395 RGBToLAB(@ntRangefrom = 0x0, to = 0xFF) int r, @IntRange(from = 0x0, to = 0xFF) int g, @IntRange(from = 0x0, to = 0xFF) int b, @NonNull double[] outLab) argument
477 XYZToLAB(@loatRangefrom = 0f, to = XYZ_WHITE_REFERENCE_X) double x, @FloatRange(from = 0f, to = XYZ_WHITE_REFERENCE_Y) double y, @FloatRange(from = 0f, to = XYZ_WHITE_REFERENCE_Z) double z, @NonNull double[] outLab) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DNotificationColorUtil.java710 * @param outLab 3-element array which holds the resulting LAB components
712 public static void colorToLAB(@ColorInt int color, @NonNull double[] outLab) { argument
713 RGBToLAB(Color.red(color), Color.green(color), Color.blue(color), outLab);
720 * <li>outLab[0] is L [0 ...100)</li>
721 * <li>outLab[1] is a [-128...127)</li>
722 * <li>outLab[2] is b [-128...127)</li>
728 * @param outLab 3-element array which holds the resulting LAB components
732 @NonNull double[] outLab) {
734 RGBToXYZ(r, g, b, outLab);
735 // outLab no
730 RGBToLAB(@ntRangefrom = 0x0, to = 0xFF) int r, @IntRange(from = 0x0, to = 0xFF) int g, @IntRange(from = 0x0, to = 0xFF) int b, @NonNull double[] outLab) argument
812 XYZToLAB(@loatRangefrom = 0f, to = XYZ_WHITE_REFERENCE_X) double x, @FloatRange(from = 0f, to = XYZ_WHITE_REFERENCE_Y) double y, @FloatRange(from = 0f, to = XYZ_WHITE_REFERENCE_Z) double z, @NonNull double[] outLab) argument
[all...]

Completed in 170 milliseconds