HomeSort by relevance Sort by last modified time
    Searched refs:outLab (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/com/android/internal/util/
NotificationColorUtil.java 441 * @param outLab 3-element array which holds the resulting LAB components
443 public static void colorToLAB(@ColorInt int color, @NonNull double[] outLab) {
444 RGBToLAB(Color.red(color), Color.green(color), Color.blue(color), outLab);
451 * <li>outLab[0] is L [0 ...100)</li>
452 * <li>outLab[1] is a [-128...127)</li>
453 * <li>outLab[2] is b [-128...127)</li>
459 * @param outLab 3-element array which holds the resulting LAB components
463 @NonNull double[] outLab) {
465 RGBToXYZ(r, g, b, outLab);
466 // outLab now contains XY
    [all...]
  /frameworks/support/core-utils/java/android/support/v4/graphics/
ColorUtils.java 307 * @param outLab 3-element array which holds the resulting LAB components
309 public static void colorToLAB(@ColorInt int color, @NonNull double[] outLab) {
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 now contains XY
    [all...]
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 

Completed in 44 milliseconds