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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/views/frame/
contents_web_view.cc 48 ui::ThemeProvider* const theme = GetThemeProvider(); member in class:ui
49 if (!theme)
58 theme->GetColor(ThemeProperties::COLOR_NTP_BACKGROUND);
  /frameworks/base/core/java/android/view/animation/
AnticipateOvershootInterpolator.java 21 import android.content.res.Resources.Theme;
71 public AnticipateOvershootInterpolator(Resources res, Theme theme, AttributeSet attrs) {
73 if (theme != null) {
74 a = theme.obtainStyledAttributes(attrs, AnticipateOvershootInterpolator, 0, 0);
AnimationUtils.java 24 import android.content.res.Resources.Theme;
299 public static Interpolator loadInterpolator(Resources res, Theme theme, int id) throws NotFoundException {
303 return createInterpolatorFromXml(res, theme, parser);
321 private static Interpolator createInterpolatorFromXml(Resources res, Theme theme, XmlPullParser parser)
344 interpolator = new AccelerateInterpolator(res, theme, attrs);
346 interpolator = new DecelerateInterpolator(res, theme, attrs);
350 interpolator = new CycleInterpolator(res, theme, attrs);
352 interpolator = new AnticipateInterpolator(res, theme, attrs)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 73 for theme in self.style.theme_names():
74 if theme != curr_theme:
75 new_theme = theme
76 self.style.theme_use(theme)
79 # just one theme available, can't go on with tests
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 73 for theme in self.style.theme_names():
74 if theme != curr_theme:
75 new_theme = theme
76 self.style.theme_use(theme)
79 # just one theme available, can't go on with tests
  /frameworks/base/libs/androidfw/tests/
ResTable_test.cpp 79 ResTable::Theme theme(table);
80 ASSERT_EQ(NO_ERROR, theme.applyStyle(base::R::style::Theme1));
84 ssize_t index = theme.getAttribute(base::R::attr::attr1, &val, &specFlags);
89 index = theme.getAttribute(base::R::attr::attr2, &val, &specFlags);
99 ResTable::Theme theme(table);
100 ASSERT_EQ(NO_ERROR, theme.applyStyle(base::R::style::Theme2));
104 ssize_t index = theme.getAttribute(base::R::attr::attr1, &val, &specFlags);
109 index = theme.getAttribute(base::R::attr::attr2, &val, &specFlags)
    [all...]
  /cts/hostsidetests/theme/app/src/android/theme/app/
DisplayInfoActivity.java 17 package android.theme.app;
20 import android.theme.app.R;
HoloDeviceActivity.java 17 package android.theme.app;
28 import android.theme.app.modifiers.DatePickerModifier;
29 import android.theme.app.modifiers.ProgressBarModifier;
30 import android.theme.app.modifiers.SearchViewModifier;
31 import android.theme.app.modifiers.TimePickerModifier;
32 import android.theme.app.modifiers.ViewCheckedModifier;
33 import android.theme.app.modifiers.ViewPressedModifier;
34 import android.theme.app.R;
35 import android.theme.app.ReferenceViewGroup;
47 * A activity which display various UI elements with Holo theme
85 final Theme theme = themes[intent.getIntExtra(EXTRA_THEME, 0)]; local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/signin/
user_manager_ui.cc 37 // Set up the chrome://theme/ source
38 ThemeSource* theme = new ThemeSource(profile); local
39 content::URLDataSource::Add(profile, theme);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TextLinkColors.cpp 94 return RenderTheme::theme().systemColor(cssValueId);
113 return RenderTheme::theme().focusRingColor();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMeter.cpp 58 IntSize frameSize = RenderTheme::theme().meterSizeForBounds(this, pixelSnappedIntRect(frameRect()));
71 IntSize frameSize = RenderTheme::theme().meterSizeForBounds(this, pixelSnappedIntRect(frame));
RenderProgress.cpp 81 m_animationDuration = RenderTheme::theme().animationDurationForProgressBar(this);
82 m_animationRepeatInterval = RenderTheme::theme().animationRepeatIntervalForProgressBar(this);
RenderThemeChromiumAndroid.cpp 51 RenderTheme& RenderTheme::theme() function in class:WebCore::RenderTheme
76 // FIXME: Consider removing the conditional if a future Android theme matches this.
  /frameworks/base/graphics/java/android/graphics/drawable/
ColorDrawable.java 24 import android.content.res.Resources.Theme;
221 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme)
223 super.inflate(r, parser, attrs, theme);
225 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.ColorDrawable);
239 // Extract the theme attributes, if any.
247 public void applyTheme(Theme t) {
303 public Drawable newDrawable(Resources res, Theme theme) {
304 return new ColorDrawable(this, res, theme);
    [all...]
LevelListDrawable.java 26 import android.content.res.Resources.Theme;
87 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme)
89 super.inflate(r, parser, attrs, theme);
108 TypedArray a = obtainAttributes(r, theme, attrs,
127 dr = r.getDrawable(drawableRes, theme);
137 dr = Drawable.createFromXmlInner(r, parser, attrs, theme);
TransitionDrawable.java 20 import android.content.res.Resources.Theme;
92 private TransitionDrawable(TransitionState state, Resources res, Theme theme) {
93 super(state, res, theme);
264 public Drawable newDrawable(Resources res, Theme theme) {
265 return new TransitionDrawable(this, res, theme);
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 21 import android.content.res.Resources.Theme;
87 * @param theme The theme
93 public static Animator loadAnimator(Resources resources, Theme theme, int id)
95 return loadAnimator(resources, theme, id, 1);
99 public static Animator loadAnimator(Resources resources, Theme theme, int id,
105 return createAnimatorFromXml(resources, theme, parser, pathErrorScale);
501 private static Animator createAnimatorFromXml(Resources res, Theme theme, XmlPullParser parser
    [all...]
  /external/chromium_org/ui/views/controls/scrollbar/
native_scroll_bar_views.cc 296 const ui::NativeTheme* theme = native_scroll_bar_->GetNativeTheme(); local
298 return gfx::Size(0, GetHorizontalScrollBarHeight(theme));
299 return gfx::Size(GetVerticalScrollBarWidth(theme), 0);
382 const ui::NativeTheme* theme) {
383 if (!theme)
384 theme = ui::NativeTheme::instance();
387 gfx::Size button_size = theme->GetPartSize(
394 gfx::Size track_size = theme->GetPartSize(
404 const ui::NativeTheme* theme) {
405 if (!theme)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ColorDelegator.py 65 theme = idleConf.GetOption('main','Theme','name')
67 "COMMENT": idleConf.GetHighlight(theme, "comment"),
68 "KEYWORD": idleConf.GetHighlight(theme, "keyword"),
69 "BUILTIN": idleConf.GetHighlight(theme, "builtin"),
70 "STRING": idleConf.GetHighlight(theme, "string"),
71 "DEFINITION": idleConf.GetHighlight(theme, "definition"),
74 "BREAK": idleConf.GetHighlight(theme, "break"),
75 "ERROR": idleConf.GetHighlight(theme, "error"),
77 "hit": idleConf.GetHighlight(theme, "hit")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ColorDelegator.py 65 theme = idleConf.GetOption('main','Theme','name')
67 "COMMENT": idleConf.GetHighlight(theme, "comment"),
68 "KEYWORD": idleConf.GetHighlight(theme, "keyword"),
69 "BUILTIN": idleConf.GetHighlight(theme, "builtin"),
70 "STRING": idleConf.GetHighlight(theme, "string"),
71 "DEFINITION": idleConf.GetHighlight(theme, "definition"),
74 "BREAK": idleConf.GetHighlight(theme, "break"),
75 "ERROR": idleConf.GetHighlight(theme, "error"),
77 "hit": idleConf.GetHighlight(theme, "hit")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationChooser.java 240 // icon, the theme icon, etc so that it looks vertically misaligned:
433 * Returns the current theme, or null if none has been selected
435 * @return the theme name, or null
439 String theme = mConfiguration.getTheme(); local
440 if (theme != null) {
441 theme = ResourceHelper.styleToTheme(theme);
444 return theme;
610 * the given theme name, the given device and device state.
630 // This may be a second refresh after triggered by theme abov
1762 String theme = mConfiguration.getTheme(); local
1790 String theme = value.getName(); local
1844 String theme = mConfiguration.getTheme(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SpinButtonElement.cpp 219 ScrollbarTheme* theme = ScrollbarTheme::theme(); local
220 m_repeatingTimer.start(theme->initialAutoscrollTimerDelay(), theme->autoscrollTimerDelay(), FROM_HERE);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeGeometryNative.cpp 38 PassOwnPtr<blink::WebScrollbarThemeGeometryNative> WebScrollbarThemeGeometryNative::create(WebCore::ScrollbarTheme* theme)
40 return adoptPtr(new WebScrollbarThemeGeometryNative(theme));
43 WebScrollbarThemeGeometryNative::WebScrollbarThemeGeometryNative(WebCore::ScrollbarTheme* theme)
44 : m_theme(theme)
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
Resources_Theme_Delegate.java 29 import android.content.res.Resources.Theme;
34 * Delegate used to provide new implementation of a select few methods of {@link Resources.Theme}
36 * Through the layoutlib_create tool, the original methods of Theme have been replaced
42 // Whether to use the Theme.mThemeResId as primary theme.
58 Resources thisResources, Theme thisTheme,
68 Resources thisResources, Theme thisTheme,
79 Resources thisResources, Theme thisTheme,
90 Resources thisResources, Theme thisTheme,
101 /*package*/ static TypedArray resolveAttributes(Resources thisResources, Theme thisTheme
132 ResourceReference theme = context.resolveId(nativeResid); local
    [all...]
  /frameworks/opt/setupwizard/navigationbar/src/com/android/setupwizard/navigationbar/
SetupWizardNavBar.java 123 // Normally we can automatically guess the theme by comparing the foreground color against
131 int theme = attributes.getResourceId(0, 0); local
132 if (theme == 0) {
134 // theme is light-on-dark or dark-on-light.
140 theme = isDarkBg ? R.style.setup_wizard_navbar_theme_dark :
144 return theme;

Completed in 1602 milliseconds

1 23 4 5 6 7 8 91011>>