/external/chromium_org/ui/gfx/ |
color_utils.cc | 127 double lightness = hsl.l; local 134 if (lightness < 0) 136 else if (lightness >= 1.0) 139 light = SkDoubleToFixed(lightness) >> 8; 144 double temp2 = (lightness < 0.5) ? 145 (lightness * (1.0 + saturation)) : 146 (lightness + saturation - (lightness * saturation)); 147 double temp1 = 2.0 * lightness - temp2; 176 // Lightness shifts in the style of popular image editors aren't actuall [all...] |
color_utils.h | 41 // hsl_shift[2] (lightness): A lightness shift, with the 43 // 0 = remove all lightness (make all pixels black). 45 // 1 = full lightness (make all pixels white).
|
skbitmap_operations.h | 73 // hsl_shift[2] (lightness): A lightness shift for the image, with the 75 // 0 = remove all lightness (make all pixels black). 77 // 1 = full lightness (make all pixels white).
|
skbitmap_operations.cc | 549 // Lightness shift: 0 -> black, 0.5 -> NOP, 1 -> white.
|
/frameworks/wilhelm/src/itf/ |
ILEDArray.c | 68 if (!(0 <= color.lightness && color.lightness <= 1000)) 119 color->lightness = 1000;
|
/external/chromium_org/ui/gfx/image/ |
image_skia_operations.h | 60 // hsl_shift[2] (lightness): A lightness shift for the image, with the 62 // 0 = remove all lightness (make all pixels black). 64 // 1 = full lightness (make all pixels white).
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
Color.cpp | 99 RGBA32 makeRGBAFromHSLA(double hue, double saturation, double lightness, double alpha) 104 int greyValue = static_cast<int>(lightness * scaleFactor); 108 double temp2 = lightness < 0.5 ? lightness * (1.0 + saturation) : lightness + saturation - lightness * saturation; 109 double temp1 = 2.0 * lightness - temp2; 382 void Color::getHSL(double& hue, double& saturation, double& lightness) const 408 lightness = 0.5 * (max + min); 411 else if (lightness <= 0.5 [all...] |
/external/chromium/chrome/common/extensions/docs/static/ |
themes.html | 113 Tints are in Hue-Saturation-Lightness (HSL) format, 128 <b>Lightness</b> is also relative,
|
/external/chromium_org/chrome/common/extensions/docs/templates/articles/ |
themes.html | 109 Tints are in Hue-Saturation-Lightness (HSL) format, 124 <b>Lightness</b> is also relative,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
colorsys.py | 64 # L: color lightness
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
colorsys.py | 64 # L: color lightness
|
/external/qemu/android/skin/ |
window.c | 248 /* technical note about the lightness emulation 251 * non-linear LCD lightness, without going too dark or bright. 253 * the default lightness is around 105 (about 40%) and we prefer 601 /* apply lightness */ [all...] |
/external/chromium/chrome/common/extensions/docs/ |
themes.html | 436 Tints are in Hue-Saturation-Lightness (HSL) format, 451 <b>Lightness</b> is also relative,
|
/frameworks/native/include/media/openmax/ |
OMX_IVCommon.h | 661 * Define for setting Lightness 667 * nLightness : Values allowed for lightness -100 to 100, zero means no [all...] |
/hardware/qcom/media/mm-core/inc/ |
OMX_IVCommon.h | 631 * Define for setting Lightness 637 * nLightness : Values allowed for lightness -100 to 100, zero means no
|
/hardware/qcom/media/mm-core/omxcore/inc/ |
OMX_IVCommon.h | 631 * Define for setting Lightness 637 * nLightness : Values allowed for lightness -100 to 100, zero means no
|
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/include/khronos/ |
OMX_IVCommon.h | 631 * Define for setting Lightness 637 * nLightness : Values allowed for lightness -100 to 100, zero means no
|
/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/ |
OMX_IVCommon.h | 631 * Define for setting Lightness
637 * nLightness : Values allowed for lightness -100 to 100, zero means no
[all...] |
/hardware/ti/omap4xxx/domx/omx_core/inc/ |
OMX_IVCommon.h | 631 * Define for setting Lightness 637 * nLightness : Values allowed for lightness -100 to 100, zero means no
|
/frameworks/av/libvideoeditor/vss/common/inc/ |
M4VIFI_FiltersAPI.h | 142 * @note This structure have the hue, saturation and lightness value [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
FrameView.cpp | 373 // Reduce the background color from RGB to a lightness value 374 // and determine which scrollbar style to use based on a lightness 376 double hue, saturation, lightness; local 377 backgroundColor.getHSL(hue, saturation, lightness); 378 if (lightness <= .5) [all...] |
/external/chromium_org/ash/wm/ |
header_painter.cc | 356 // We don't need the extra lightness in the edges when we're at the top edge
|
/external/chromium/chrome/browser/ui/gtk/ |
gtk_theme_service.cc | 717 // background tab color, with the lightness and saturation moved in the [all...] |
/external/chromium_org/chrome/browser/ui/libgtk2ui/ |
gtk2_ui.cc | 698 // background tab color, with the lightness and saturation moved in the [all...] |
/external/chromium_org/ui/native_theme/ |
native_theme_base.cc | 72 // Get lightness adjusted color. [all...] |