HomeSort by relevance Sort by last modified time
    Searched refs:theme (Results 1 - 25 of 231) sorted by null

1 2 3 4 5 6 7 8 910

  /external/llvm/docs/_themes/llvm-theme/
theme.conf 0 [theme]
3 stylesheet = llvm-theme.css
  /cts/hostsidetests/theme/app/src/android/theme/app/modifiers/
AbstractLayoutModifier.java 17 package android.theme.app.modifiers;
19 import android.theme.app.LayoutModifier;
DatePickerModifier.java 17 package android.theme.app.modifiers;
19 import android.theme.app.LayoutModifier;
ViewPressedModifier.java 17 package android.theme.app.modifiers;
TimePickerModifier.java 17 package android.theme.app.modifiers;
ViewCheckedModifier.java 17 package android.theme.app.modifiers;
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeAndroid.cpp 35 DEFINE_STATIC_LOCAL(ScrollbarThemeOverlay, theme, (3, 3, ScrollbarThemeOverlay::DisallowHitTest, Color(128, 128, 128, 128)));
36 return &theme;
Scrollbar.cpp 51 Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme)
55 , m_theme(theme)
73 m_theme = ScrollbarTheme::theme();
140 int oldThumbPosition = theme()->thumbPosition(this);
144 setPressedPos(m_pressedPos + theme()->thumbPosition(this) - oldThumbPosition);
163 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart);
182 if (!theme()->paint(this, context, damageRect))
188 autoscrollPressedPart(theme()->autoscrollTimerDelay());
193 int thumbPos = scrollbar->theme()->trackPosition(scrollbar) + scrollbar->theme()->thumbPosition(scrollbar)
    [all...]
  /external/chromium_org/third_party/polymer/components-chromium/core-style/
my-theme-extracted.js 3 CoreStyle.g.theme = {
  /external/chromium_org/ui/views/controls/menu/
menu_config_mac.cc 13 void MenuConfig::Init(const ui::NativeTheme* theme) {
18 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) {
20 MenuConfig, mac_instance, (theme ? theme : ui::NativeTheme::instance()));
menu_config_aura.cc 26 void MenuConfig::Init(const ui::NativeTheme* theme) {
27 if (theme == ui::NativeThemeAura::instance())
28 InitAura(theme);
32 void MenuConfig::InitAura(const ui::NativeTheme* theme) {
53 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) {
56 views_instance = new MenuConfig(theme ?
57 theme : ui::NativeTheme::instance());
menu_config.cc 11 MenuConfig::MenuConfig(const ui::NativeTheme* theme)
43 native_theme(theme),
46 Init(theme);
menu_config.h 21 explicit MenuConfig(const ui::NativeTheme* theme);
24 static const MenuConfig& instance(const ui::NativeTheme* theme);
131 void Init(const ui::NativeTheme* theme);
134 void InitAura(const ui::NativeTheme* theme);
menu_config_win.cc 24 void MenuConfig::Init(const NativeTheme* theme) {
25 if (theme == ui::NativeThemeAura::instance()) {
26 InitAura(theme);
82 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) {
83 // NOTE: |theme| may be NULL if used before the menu is running.
84 if (!theme || theme == NativeThemeWin::instance()) {
92 views_instance = new MenuConfig(theme);
  /cts/hostsidetests/theme/app/src/android/theme/app/
LayoutModifier.java 17 package android.theme.app;
  /external/chromium_org/third_party/WebKit/Source/web/mac/
WebScrollbarTheme.mm 50 ScrollbarTheme* theme = ScrollbarTheme::theme();
51 if (theme->isMockTheme())
54 static_cast<ScrollbarThemeMacCommon*>(ScrollbarTheme::theme())->preferencesChanged(
  /external/chromium_org/ui/views/controls/scrollbar/
native_scroll_bar_wrapper.h 39 static int GetVerticalScrollBarWidth(const ui::NativeTheme* theme);
40 static int GetHorizontalScrollBarHeight(const ui::NativeTheme* theme);
native_scroll_bar.cc 33 const ui::NativeTheme* theme) {
34 return NativeScrollBarWrapper::GetHorizontalScrollBarHeight(theme);
39 const ui::NativeTheme* theme) {
40 return NativeScrollBarWrapper::GetVerticalScrollBarWidth(theme);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarTheme.h 39 virtual int scrollbarThickness(ScrollbarControlSize controlSize) OVERRIDE { return ScrollbarTheme::theme()->scrollbarThickness(controlSize); }
41 virtual ScrollbarButtonsPlacement buttonsPlacement() const OVERRIDE { return ScrollbarTheme::theme()->buttonsPlacement(); }
45 virtual bool shouldCenterOnThumb(ScrollbarThemeClient* scrollbar, const PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldCenterOnThumb(scrollbar, event); }
46 virtual bool shouldSnapBackToDragOrigin(ScrollbarThemeClient* scrollbar, const PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldSnapBackToDragOrigin(scrollbar, event); }
48 virtual double initialAutoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::theme()->initialAutoscrollTimerDelay(); }
49 virtual double autoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::theme()->autoscrollTimerDelay(); }
51 virtual void registerScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->registerScrollbar(scrollbar); }
52 virtual void unregisterScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->unregisterScrollbar(scrollbar); }
  /external/chromium_org/third_party/WebKit/Source/platform/
OverscrollTheme.cpp 68 OverscrollTheme* OverscrollTheme::theme() function in class:blink::OverscrollTheme
70 DEFINE_STATIC_LOCAL(OverscrollTheme, theme, ());
71 return &theme;
OverscrollTheme.h 46 static OverscrollTheme* theme();
  /external/chromium_org/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/
DistilledPagePrefs.java 28 void onChangeTheme(Theme theme);
50 private void onChangeTheme(int theme) {
51 mDistilledPagePrefsObserver.onChangeTheme(Theme.getThemeForValue(theme));
108 public void setTheme(Theme theme) {
109 nativeSetTheme(mDistilledPagePrefsAndroid, theme.asNativeEnum());
112 public Theme getTheme() {
113 return Theme.getThemeForValue(nativeGetTheme(mDistilledPagePrefsAndroid))
    [all...]
  /cts/tests/tests/theme/src/android/theme/cts/
DeviceDefaultActivity.java 17 package android.theme.cts;
19 import com.android.cts.theme.R;
  /external/chromium_org/components/dom_distiller/core/
viewer.cc 38 // CSS Theme classes. Must agree with classes in distilledpage.css.
54 const std::string GetJsTheme(DistilledPagePrefs::Theme theme) {
55 if (theme == DistilledPagePrefs::DARK) {
57 } else if (theme == DistilledPagePrefs::SEPIA) {
64 const std::string GetThemeCssClass(DistilledPagePrefs::Theme theme) {
65 if (theme == DistilledPagePrefs::DARK) {
67 } else if (theme == DistilledPagePrefs::SEPIA) {
108 const DistilledPagePrefs::Theme theme
    [all...]
viewer.h 32 const DistilledPagePrefs::Theme theme,
43 const DistilledPagePrefs::Theme theme,
61 const DistilledPagePrefs::Theme theme,
82 // Returns JavaScript corresponding to setting a specific theme.
83 const std::string GetDistilledPageThemeJs(DistilledPagePrefs::Theme theme);

Completed in 351 milliseconds

1 2 3 4 5 6 7 8 910