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

1 2 3 4 5 6 7 8 91011>>

  /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;
  /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 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/ui/views/controls/menu/
menu_config_mac.cc 15 void MenuConfig::Init(const ui::NativeTheme* theme) {
20 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) {
22 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);
79 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) {
80 // NOTE: |theme| may be NULL if used before the menu is running.
81 if (!theme || theme == NativeThemeWin::instance()) {
89 views_instance = new MenuConfig(theme);
  /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...]
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
AssetManager_Delegate.java 37 /*package*/ static void deleteTheme(AssetManager manager, long theme) {
38 Resources_Theme_Delegate.getDelegateManager().removeJavaReferenceFor(theme);
42 /*package*/ static void applyThemeStyle(long theme, int styleRes, boolean force) {
43 Resources_Theme_Delegate.getDelegateManager().getDelegate(theme).force = force;
  /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);
  /frameworks/support/v4/api21/android/support/v4/content/res/
ResourcesCompatApi21.java 20 import android.content.res.Resources.Theme;
24 public static Drawable getDrawable(Resources res, int id, Theme theme) {
25 return res.getDrawable(id, 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;
  /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 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); }
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardTheme.java 48 // Default theme for ICS, JB, and KLP.
51 // Default theme for LXX.
98 for (final KeyboardTheme theme : KEYBOARD_THEMES) {
99 if (theme.mThemeId == themeId) {
100 return theme;
114 final KeyboardTheme theme = searchKeyboardThemeById(themeId); local
115 if (theme != null) {
116 return theme;
118 Log.w(TAG, "Unknown keyboard theme in KLP preference: " + klpThemeIdString);
120 Log.w(TAG, "Illegal keyboard theme in KLP preference: " + klpThemeIdString, e)
137 final KeyboardTheme theme = searchKeyboardThemeById(themeId); local
173 final KeyboardTheme theme = searchKeyboardThemeById(themeId); local
    [all...]
  /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;
  /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/core/java/com/android/server/wm/
StartingData.java 23 final int theme; field in class:StartingData
35 theme = _theme;
  /frameworks/support/v4/java/android/support/v4/content/res/
ResourcesCompat.java 21 import android.content.res.Resources.Theme;
32 * styled for the specified theme. Various types of objects will be
36 * Prior to API level 21, the theme will not be applied and this method
42 * @param theme The theme used to style the drawable attributes, may be {@code null}.
47 public Drawable getDrawable(Resources res, int id, Theme theme)
51 return ResourcesCompatApi21.getDrawable(res, id, theme);

Completed in 293 milliseconds

1 2 3 4 5 6 7 8 91011>>