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

/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java308 * @param outLab 3-element array which holds the resulting LAB components
310 public static void colorToLAB(@ColorInt int color, @NonNull double[] outLab) { argument
311 RGBToLAB(Color.red(color), Color.green(color), Color.blue(color), outLab);
318 * <li>outLab[0] is L [0 ...1)</li>
319 * <li>outLab[1] is a [-128...127)</li>
320 * <li>outLab[2] is b [-128...127)</li>
326 * @param outLab 3-element array which holds the resulting LAB components
330 @NonNull double[] outLab) {
332 RGBToXYZ(r, g, b, outLab);
333 // outLab no
328 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
410 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/core-utils/java/android/support/v4/graphics/
H A DColorUtils.java307 * @param outLab 3-element array which holds the resulting LAB components
309 public static void colorToLAB(@ColorInt int color, @NonNull double[] outLab) { argument
310 RGBToLAB(Color.red(color), Color.green(color), Color.blue(color), outLab);
317 * <li>outLab[0] is L [0 ...1)</li>
318 * <li>outLab[1] is a [-128...127)</li>
319 * <li>outLab[2] is b [-128...127)</li>
325 * @param outLab 3-element array which holds the resulting LAB components
329 @NonNull double[] outLab) {
331 RGBToXYZ(r, g, b, outLab);
332 // outLab no
327 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
409 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.java635 * @param outLab 3-element array which holds the resulting LAB components
637 public static void colorToLAB(@ColorInt int color, @NonNull double[] outLab) { argument
638 RGBToLAB(Color.red(color), Color.green(color), Color.blue(color), outLab);
645 * <li>outLab[0] is L [0 ...100)</li>
646 * <li>outLab[1] is a [-128...127)</li>
647 * <li>outLab[2] is b [-128...127)</li>
653 * @param outLab 3-element array which holds the resulting LAB components
657 @NonNull double[] outLab) {
659 RGBToXYZ(r, g, b, outLab);
660 // outLab no
655 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
737 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 617 milliseconds