/external/llvm/docs/_themes/llvm-theme/ |
theme.conf | 0 [theme] 3 stylesheet = llvm-theme.css
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollbarThemeAndroid.cpp | 35 DEFINE_STATIC_LOCAL(ScrollbarThemeOverlay, theme, (3, 4, ScrollbarThemeOverlay::DisallowHitTest)); 36 return &theme;
|
Scrollbar.cpp | 53 Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme) 57 , m_theme(theme) 75 m_theme = ScrollbarTheme::theme(); 147 int oldThumbPosition = theme()->thumbPosition(this); 151 setPressedPos(m_pressedPos + theme()->thumbPosition(this) - oldThumbPosition); 170 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart); 186 if (context->updatingControlTints() && theme()->supportsControlTints()) { 194 if (!theme()->paint(this, context, damageRect)) 200 autoscrollPressedPart(theme()->autoscrollTimerDelay()); 205 int thumbPos = scrollbar->theme()->trackPosition(scrollbar) + scrollbar->theme()->thumbPosition(scrollbar) [all...] |
/external/chromium_org/third_party/WebKit/Source/web/mac/ |
WebScrollbarTheme.cpp | 44 ScrollbarTheme* theme = ScrollbarTheme::theme(); local 45 if (theme->isMockTheme()) 48 static_cast<ScrollbarThemeMacCommon*>(ScrollbarTheme::theme())->preferencesChanged(
|
/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 if (theme == ui::NativeThemeAura::instance()) 28 InitAura(theme); 32 void MenuConfig::InitAura(const ui::NativeTheme* theme) { 33 text_color = theme->GetSystemColor( 57 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) { 60 views_instance = new MenuConfig(theme ? 61 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.cc | 13 MenuConfig::MenuConfig(const ui::NativeTheme* theme) 48 native_theme(theme), 57 Init(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);
|
/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...] |
/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...] |
/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 | 40 virtual int scrollbarThickness(ScrollbarControlSize controlSize) OVERRIDE { return ScrollbarTheme::theme()->scrollbarThickness(controlSize); } 42 virtual ScrollbarButtonsPlacement buttonsPlacement() const OVERRIDE { return ScrollbarTheme::theme()->buttonsPlacement(); } 48 virtual bool shouldCenterOnThumb(ScrollbarThemeClient* scrollbar, const PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldCenterOnThumb(scrollbar, event); } 50 virtual double initialAutoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::theme()->initialAutoscrollTimerDelay(); } 51 virtual double autoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::theme()->autoscrollTimerDelay(); } 53 virtual void registerScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->registerScrollbar(scrollbar); } 54 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:WebCore::OverscrollTheme 70 DEFINE_STATIC_LOCAL(OverscrollTheme, theme, ()); 71 return &theme;
|
OverscrollTheme.h | 46 static OverscrollTheme* theme();
|
/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 | 36 // Checks that a theme info bar is currently visible and issues an undo to 37 // revert to the previous theme. 52 // Install the given theme from the data dir and verify expected name. 55 // If there is already a theme installed, the current theme should be 61 const Extension* theme = GetTheme(); local 62 ASSERT_TRUE(theme); 63 ASSERT_EQ(theme->name(), expected_name); 87 // Install theme once and undo to verify we go back to default theme 90 const Extension* theme = GetTheme(); local 119 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);
|