HomeSort by relevance Sort by last modified time
    Searched defs:hsl (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/ui/gfx/
color_utils_unittest.cc 15 HSL hsl = {0, 0, 0}; local
16 SkColorToHSL(SK_ColorRED, &hsl);
17 EXPECT_DOUBLE_EQ(hsl.h, 0);
18 EXPECT_DOUBLE_EQ(hsl.s, 1);
19 EXPECT_DOUBLE_EQ(hsl.l, 0.5);
23 HSL hsl = {0, 0, 0}; local
24 SkColorToHSL(SkColorSetARGB(255, 128, 128, 128), &hsl);
25 EXPECT_DOUBLE_EQ(hsl.h, 0)
33 HSL hsl = {0, 1, 0.5}; local
47 HSL hsl = {0, 0, 0}; local
60 HSL hsl = {0, 0, 0}; local
72 HSL hsl = {0.3, 0.4, 0.5}; local
92 HSL hsl = {0.3, 0.4, 0.5}; local
107 HSL hsl = {-1, -1, -1}; local
    [all...]
color_utils.cc 58 HSL hsl; local
59 SkColorToHSL(color, &hsl);
60 hsl.l = 1.0 - hsl.l;
61 return HSLToSkColor(hsl, 255);
92 void SkColorToHSL(SkColor c, HSL* hsl) {
99 hsl->l = (vmax + vmin) / 2;
101 hsl->h = hsl->s = 0
185 HSL hsl; local
    [all...]
skbitmap_operations_unittest.cc 63 color_utils::HSL hsl_shift) {
232 color_utils::HSL hsl = { -1, -1, -1 }; local
233 SkBitmap shifted = ReferenceCreateHSLShiftedBitmap(src, hsl);
270 color_utils::HSL hsl = { 0, -1, -1 }; local
272 SkBitmap shifted = SkBitmapOperations::CreateHSLShiftedBitmap(src, hsl);
286 // Validate HSL shift.
311 color_utils::HSL hsl = { h, s, l } local
    [all...]
color_analysis.cc 25 const HSL kDefaultLowerHSLBound = {-1, -1, 0.15};
26 const HSL kDefaultUpperHSLBound = {-1, -1, 0.85};
218 const HSL& lower_bound,
219 const HSL& upper_bound,
337 HSL hsl; local
338 SkColorToHSL(current_color, &hsl);
339 if (IsWithinHSLRange(hsl, lower_bound, upper_bound)) {
358 const HSL& lower_bound,
359 const HSL& upper_bound
    [all...]
  /external/chromium_org/chrome/browser/themes/
theme_service.cc 68 color_utils::HSL result;
398 color_utils::HSL ThemeService::GetTint(int id) const {
401 color_utils::HSL hsl; local
402 if (theme_supplier_.get() && theme_supplier_->GetTint(id, &hsl))
403 return hsl;
browser_theme_pack.cc 438 // Shifts an image's HSL values. The caller is responsible for deleting
441 const color_utils::HSL& hsl_shift) {
586 const color_utils::HSL& hsl_shift,
616 const color_utils::HSL hsl_shift_;
816 bool BrowserThemePack::GetTint(int id, color_utils::HSL* hsl) const {
820 hsl->h = tints_[i].h;
821 hsl->s = tints_[i].s;
822 hsl->l = tints_[i].l;
977 color_utils::HSL hsl = { -1, -1, -1 }; local
1508 color_utils::HSL hsl; local
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_ui.cc 93 const color_utils::HSL kGtkFrameShift = { -1, -1, 0.58 };
97 const color_utils::HSL kDefaultFrameShift = { -1, -1, 0.4 };
117 const color_utils::HSL kDefaultTintButtons = { -1, -1, -1 };
118 const color_utils::HSL kDefaultTintFrame = { -1, -1, -1 };
119 const color_utils::HSL kDefaultTintFrameInactive = { -1, -1, 0.75f };
120 const color_utils::HSL kDefaultTintFrameIncognito = { -1, 0.2f, 0.35f };
121 const color_utils::HSL kDefaultTintFrameIncognitoInactive = { -1, 0.3f, 0.6f };
122 const color_utils::HSL kDefaultTintBackgroundTab = { -1, 0.5, 0.75 };
240 color_utils::HSL* tint) {
242 color_utils::HSL accent_tint
1008 color_utils::HSL hsl; local
    [all...]
  /external/chromium_org/third_party/d3/src/
d3.js     [all...]
  /prebuilts/sdk/current/support/v7/palette/libs/
android-support-v7-palette.jar 

Completed in 141 milliseconds