OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kBgWeight
(Results
1 - 2
of
2
) sorted by null
/external/chromium/chrome/browser/ui/gtk/
gtk_theme_service.cc
68
const int
kBgWeight
= 3;
416
color.red = (text.red + (bg.red *
kBgWeight
)) / (1 +
kBgWeight
);
417
color.green = (text.green + (bg.green *
kBgWeight
)) / (1 +
kBgWeight
);
418
color.blue = (text.blue + (bg.blue *
kBgWeight
)) / (1 +
kBgWeight
);
[
all
...]
/external/chromium_org/chrome/browser/ui/gtk/
gtk_theme_service.cc
77
const int
kBgWeight
= 3;
459
color.red = (text.red + (bg.red *
kBgWeight
)) / (1 +
kBgWeight
);
460
color.green = (text.green + (bg.green *
kBgWeight
)) / (1 +
kBgWeight
);
461
color.blue = (text.blue + (bg.blue *
kBgWeight
)) / (1 +
kBgWeight
);
[
all
...]
Completed in 439 milliseconds