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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ScrollbarThemeChromiumAndroid.cpp 36 DEFINE_STATIC_LOCAL(ScrollbarThemeChromiumOverlay, theme, ());
37 return &theme;
  /external/llvm/docs/_themes/llvm-theme/
theme.conf 0 [theme]
3 stylesheet = llvm-theme.css
  /packages/apps/Contacts/src/com/android/contacts/util/
ThemeUtils.java 19 import android.content.res.Resources.Theme;
23 * Provides static functions to more easily resolve attributes of the current theme
27 * Resolves the given attribute id of the theme to a resource id
29 public static int getAttribute(Theme theme, int attrId) {
31 theme.resolveAttribute(attrId, outValue, true);
38 public static int getSelectableItemBackground(Theme theme) {
39 return getAttribute(theme, android.R.attr.selectableItemBackground);
45 public static int getActivatedBackground(Theme theme)
    [all...]
  /external/chromium_org/ui/views/controls/menu/
menu_config_views.cc 26 void MenuConfig::Init(const ui::NativeTheme* theme) {
27 InitAura(theme);
31 void MenuConfig::InitAura(const ui::NativeTheme* theme) {
32 text_color = theme->GetSystemColor(
56 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) {
59 views_instance = new MenuConfig(theme ?
60 theme : ui::NativeTheme::instance());
menu_config.h 21 explicit MenuConfig(const ui::NativeTheme* theme);
24 static const MenuConfig& instance(const ui::NativeTheme* theme);
136 void Init(const ui::NativeTheme* theme);
140 void InitAura(const ui::NativeTheme* theme);
menu_config_win.cc 27 void MenuConfig::Init(const NativeTheme* theme) {
29 if (theme == ui::NativeThemeAura::instance()) {
30 InitAura(theme);
92 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) {
93 // NOTE: |theme| may be NULL if used before the menu is running.
94 if (!theme || theme == NativeThemeWin::instance()) {
102 views_instance = new MenuConfig(theme);
  /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.h 35 static int GetHorizontalScrollBarHeight(const ui::NativeTheme* theme);
36 static int GetVerticalScrollBarWidth(const ui::NativeTheme* theme);
native_scroll_bar.cc 36 const ui::NativeTheme* theme) {
37 return NativeScrollBarWrapper::GetHorizontalScrollBarHeight(theme);
42 const ui::NativeTheme* theme) {
43 return NativeScrollBarWrapper::GetVerticalScrollBarWidth(theme);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
SelectThemeAction.java 33 public SelectThemeAction(ConfigurationChooser configuration, String title, String theme,
36 assert theme.startsWith(STYLE_RESOURCE_PREFIX)
37 || theme.startsWith(ANDROID_STYLE_RESOURCE_PREFIX) : theme;
39 mTheme = theme;
ThemeMenuAction.java 52 ANDROID_STYLE_RESOURCE_PREFIX + "Theme.DeviceDefault.Light"; //$NON-NLS-1$
54 ANDROID_STYLE_RESOURCE_PREFIX + "Theme.Holo.Light"; //$NON-NLS-1$
56 ANDROID_STYLE_RESOURCE_PREFIX + "Theme.DeviceDefault"; //$NON-NLS-1$
58 ANDROID_STYLE_RESOURCE_PREFIX + "Theme.Holo"; //$NON-NLS-1$
60 ANDROID_STYLE_RESOURCE_PREFIX +"Theme.Light"; //$NON-NLS-1$
62 ANDROID_STYLE_RESOURCE_PREFIX +"Theme"; //$NON-NLS-1$
93 // First show the currently selected theme (grayed out since you can't
122 // TODO: Add variations of the current theme here, e.g.
123 // if you're using Theme.Holo, add Theme.Holo.Dialog, Theme.Holo.Panel
187 String theme = activityThemes.get(activity); local
215 String theme = mThemeList.get(i); local
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_install_ui_browsertest.cc 21 // Checks that a theme info bar is currently visible and issues an undo to
22 // revert to the previous theme.
41 // Install theme once and undo to verify we go back to default theme.
42 FilePath theme_crx = PackExtension(test_data_dir_.AppendASCII("theme"));
44 const Extension* theme = GetTheme(); local
45 ASSERT_TRUE(theme);
46 std::string theme_id = theme->id();
50 // Set the same theme twice and undo to verify we go back to default theme
71 const Extension* theme = GetTheme(); local
    [all...]
theme_installed_infobar_delegate.cc 38 bool ThemeInstalledInfoBarDelegate::MatchesTheme(const Extension* theme) const {
39 return theme && (theme->id() == theme_id_);
71 // TODO(aa): Reply with the theme's icon, but this requires reading it
101 // If the new theme is different from what this info bar is associated
113 // "undo" the theme change that triggered this notification
  /external/chromium/chrome/browser/ui/views/
theme_helpers.cc 29 CTheme theme; local
30 if (theme.IsThemingSupported())
31 theme.OpenThemeData(NULL, L"REBAR");
32 // On Windows XP+, if using a Theme, we can ask the theme to render the
34 if (!theme.IsThemeNull()) {
37 theme.DrawThemeBackground(dc, 0, 0, &rect, NULL);
40 // On Windows 2000 or Windows XP+ with the Classic theme selected, we need
77 CTheme theme; local
78 if (theme.IsThemingSupported()
    [all...]
theme_background.cc 25 // Never theme app and popup windows.
34 ui::ThemeProvider* theme = ThemeServiceFactory::GetForProfile(profile); local
37 background = theme->GetBitmapNamed(
41 background = theme->GetBitmapNamed(
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperSettingsActivity.java 26 * proper theme of the activity depending on how it is being used.
40 Resources.Theme theme = getTheme(); local
42 theme.applyStyle(com.android.internal.R.style.PreviewWallpaperSettings, true);
44 theme.applyStyle(com.android.internal.R.style.ActiveWallpaperSettings, true);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarTheme.h 41 virtual int scrollbarThickness(ScrollbarControlSize controlSize) OVERRIDE { return ScrollbarTheme::theme()->scrollbarThickness(controlSize); }
43 virtual ScrollbarButtonsPlacement buttonsPlacement() const OVERRIDE { return ScrollbarTheme::theme()->buttonsPlacement(); }
49 virtual bool shouldCenterOnThumb(ScrollbarThemeClient* scrollbar, const PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldCenterOnThumb(scrollbar, event); }
51 virtual double initialAutoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::theme()->initialAutoscrollTimerDelay(); }
52 virtual double autoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::theme()->autoscrollTimerDelay(); }
54 virtual void registerScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->registerScrollbar(scrollbar); }
55 virtual void unregisterScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->unregisterScrollbar(scrollbar); }
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Scrollbar.cpp 59 ScrollbarTheme* theme)
63 , m_theme(theme)
81 m_theme = ScrollbarTheme::theme();
133 int oldThumbPosition = theme()->thumbPosition(this);
137 setPressedPos(m_pressedPos + theme()->thumbPosition(this) - oldThumbPosition);
156 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart);
172 if (context->updatingControlTints() && theme()->supportsControlTints()) {
180 if (!theme()->paint(this, context, damageRect))
186 autoscrollPressedPart(theme()->autoscrollTimerDelay());
191 int thumbPos = scrollbar->theme()->trackPosition(scrollbar) + scrollbar->theme()->thumbPosition(scrollbar)
    [all...]
  /cts/tests/tests/theme/src/android/theme/cts/
DeviceDefaultActivity.java 17 package android.theme.cts;
19 import com.android.cts.theme.R;
  /frameworks/base/services/java/com/android/server/wm/
StartingData.java 23 final int theme; field in class:StartingData
35 theme = _theme;
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSetupActivity.java 23 // Extra containing the resource name of the theme to be used
24 private static final String EXTRA_THEME = "theme";
28 // Style resources containing theme settings
33 protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first) {
39 super.onApplyThemeResource(theme, resid, first);
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 26 * A ContextWrapper that allows you to modify the theme from what is in the
32 private Resources.Theme mTheme;
98 @Override public Resources.Theme getTheme() {
121 * Called by {@link #setTheme} and {@link #getTheme} to apply a theme
122 * resource to the current Theme object. Can override to change the
126 * @param theme The Theme object being modified.
127 * @param resid The theme style resource being applied to <var>theme</var>.
129 * applied to <var>theme</var>
139 Resources.Theme theme = mBase.getTheme(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_install_ui_browsertest.cc 34 // Checks that a theme info bar is currently visible and issues an undo to
35 // revert to the previous theme.
50 // Install the given theme from the data dir and verify expected name.
55 const Extension* theme = GetTheme(); local
56 ASSERT_TRUE(theme);
57 ASSERT_EQ(theme->name(), expected_name);
81 // Install theme once and undo to verify we go back to default theme.
82 base::FilePath theme_crx = PackExtension(test_data_dir_.AppendASCII("theme"));
84 const Extension* theme = GetTheme() local
113 const Extension* theme = GetTheme(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
theme_handler.cc 31 // Listen for theme installation.
50 ThemeSource* theme = new ThemeSource(profile); local
51 content::URLDataSource::Add(profile, theme);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
WeekPickerDialog.java 28 * @param theme the theme to apply to this dialog
34 int theme,
39 super(context, theme, callBack, year, weekOfYear, minValue, maxValue);

Completed in 626 milliseconds

1 2 3 4 5 6 7 8 91011>>