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

1 2 3 4 5

  /external/webkit/WebCore/platform/win/
PlatformScrollBarWin.cpp 37 ScrollbarTheme* theme)
38 : Scrollbar(client, orientation, size, theme)
  /external/webkit/WebCore/platform/gtk/
ScrollbarThemeGtk.cpp 36 static ScrollbarThemeGtk theme; local
37 return &theme;
RenderThemeGtk.cpp 145 // Use the theme parts for the default drawable.
250 static void adjustMozillaStyle(const RenderThemeGtk* theme, RenderStyle* style, GtkThemeWidgetType type)
269 static void setMozillaState(const RenderTheme* theme, GtkWidgetState* state, RenderObject* o)
271 state->active = theme->isPressed(o);
272 state->focused = theme->isFocused(o);
273 state->inHover = theme->isHovered(o);
275 state->disabled = !theme->isEnabled(o) || theme->isReadOnlyControl(o);
281 static bool paintMozillaGtkWidget(const RenderThemeGtk* theme, GtkThemeWidgetType type, RenderObject* o, const RenderObject::PaintInfo& i, const IntRect& rect)
292 setMozillaState(theme, &mozState, o)
    [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);
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 24 * A ContextWrapper that allows you to modify the theme from what is in the
30 private Resources.Theme mTheme;
53 @Override public Resources.Theme getTheme() {
59 mThemeResource = com.android.internal.R.style.Theme;
77 * Called by {@link #setTheme} and {@link #getTheme} to apply a theme
78 * resource to the current Theme object. Can override to change the
82 * @param theme The Theme object being modified.
83 * @param resid The theme style resource being applied to <var>theme</var>
95 Resources.Theme theme = mBase.getTheme(); local
    [all...]
  /external/webkit/WebCore/platform/
Scrollbar.cpp 59 ScrollbarTheme* theme)
63 , m_theme(theme)
161 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart);
166 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart);
171 if (context->updatingControlTints() && theme()->supportsControlTints()) {
179 if (!theme()->paint(this, context, damageRect))
185 autoscrollPressedPart(theme()->autoscrollTimerDelay());
190 int thumbPos = scrollbar->theme()->trackPosition(scrollbar) + scrollbar->theme()->thumbPosition(scrollbar);
191 int thumbLength = scrollbar->theme()->thumbLength(scrollbar)
    [all...]
  /external/webkit/WebCore/rendering/
RenderMediaControls.cpp 54 RenderTheme* theme = o->theme(); local
55 if (theme->isActive(o))
57 if (theme->isEnabled(o) && !theme->isReadOnlyControl(o))
59 if (theme->isPressed(o))
61 if (theme->isChecked(o))
63 if (theme->isIndeterminate(o))
65 if (theme->isFocused(o))
67 if (theme->isDefault(o)
    [all...]
RenderButton.cpp 93 if (!m_default && theme()->isDefault(this)) {
98 } else if (m_default && !theme()->isDefault(this)) {
112 innerStyle->setPaddingTop(Length(theme()->buttonInternalPaddingTop(), Fixed));
113 innerStyle->setPaddingRight(Length(theme()->buttonInternalPaddingRight(), Fixed));
114 innerStyle->setPaddingBottom(Length(theme()->buttonInternalPaddingBottom(), Fixed));
115 innerStyle->setPaddingLeft(Length(theme()->buttonInternalPaddingLeft(), Fixed));
RenderScrollbarPart.cpp 137 m_scrollbar->theme()->invalidatePart(m_scrollbar, m_part);
143 m_scrollbar->theme()->invalidatePart(m_scrollbar, m_part);
RenderScrollbarTheme.cpp 35 DEFINE_STATIC_LOCAL(RenderScrollbarTheme, theme, ());
36 return &theme;
RenderMenuList.cpp 86 m_innerBlock->style()->setPaddingLeft(Length(theme()->popupInternalPaddingLeft(style()), Fixed));
87 m_innerBlock->style()->setPaddingRight(Length(theme()->popupInternalPaddingRight(style()), Fixed));
88 m_innerBlock->style()->setPaddingTop(Length(theme()->popupInternalPaddingTop(style()), Fixed));
89 m_innerBlock->style()->setPaddingBottom(Length(theme()->popupInternalPaddingBottom(style()), Fixed));
143 if (theme()->popupOptionSupportsTextIndent()) {
248 m_maxPrefWidth = max(m_optionsWidth, theme()->minimumMenuListSize(style())) + m_innerBlock->paddingLeft() + m_innerBlock->paddingRight();
453 // For these appearance values, the theme applies padding to leave room for the
  /frameworks/base/core/java/android/content/pm/
ActivityInfo.java 33 * activity's theme. From the "theme" attribute or, if not set, 0.
35 public int theme; field in class:ActivityInfo
339 * the mode from the theme will be used.
348 theme = orig.theme;
360 * Return the theme resource identifier to use for this activity. If
361 * the activity defines a theme, that is used; else, the application
362 * theme is used.
364 * @return The theme associated with this activity
    [all...]
ApplicationInfo.java 71 * default visual theme of the application. From the "theme" attribute
74 public int theme; field in class:ApplicationInfo
398 + " theme=0x" + Integer.toHexString(theme));
456 theme = orig.theme;
489 dest.writeInt(theme);
522 theme = source.readInt();
  /cts/tests/tests/content/src/android/content/pm/cts/
ActivityInfoTest.java 85 assertEquals(mActivityInfo.theme, info.theme);
113 assertEquals(mActivityInfo.applicationInfo.theme, mActivityInfo.getThemeResource());
114 mActivityInfo.theme = 1;
115 assertEquals(mActivityInfo.theme, mActivityInfo.getThemeResource());
ApplicationInfoTest.java 84 assertEquals(mApplicationInfo.theme, info.theme);
  /frameworks/base/core/java/android/content/res/
AssetManager.java 227 /*package*/ final boolean getThemeValue(int theme, int ident,
229 int block = loadThemeAttributeValue(theme, ident, outValue, resolveRefs);
513 /*package*/ final void releaseTheme(int theme) {
515 deleteTheme(theme);
516 decRefsLocked(theme);
697 /*package*/ native static final boolean applyStyle(int theme,
728 private native final void deleteTheme(int theme);
729 /*package*/ native static final void applyThemeStyle(int theme, int styleRes, boolean force);
731 /*package*/ native static final int loadThemeAttributeValue(int theme, int ident,
734 /*package*/ native static final void dumpTheme(int theme, int priority, String tag, String prefix)
    [all...]
  /cts/tests/src/android/app/cts/
AppStubActivity.java 137 public void onApplyThemeResource( Resources.Theme theme,
140 super.onApplyThemeResource(theme,resid,first);
  /frameworks/base/core/java/android/inputmethodservice/
SoftInputWindow.java 46 * particular, it uses the window manager and theme from this context
48 * @param theme A style resource describing the theme to use for the window.
50 * and Theme Resources</a> for more information about defining and
51 * using styles. This theme is applied on top of the current theme in
52 * <var>context</var>. If 0, the default dialog theme will be used.
54 public SoftInputWindow(Context context, int theme,
56 super(context, theme);
  /packages/apps/Mms/src/com/android/mms/ui/
NumberPickerDialog.java 71 * @param theme the theme to apply to this dialog
76 int theme,
82 super(context, theme);
  /external/chromium/base/
mime_util_linux.cc 31 // In seconds, specified by icon theme specs.
45 // The default theme.
51 // theme name from threads that aren't allowed to call
75 // IconTheme represents an icon theme as defined by the xdg icon theme spec.
80 // A theme consists of multiple sub-directories, like '32x32' and 'scalable'.
111 // the icon in the parent theme.
114 // Load a theme with the name |theme_name| into memory. Returns null if theme
123 // Whether the theme loaded properly
217 scoped_ptr<IconTheme> theme; local
    [all...]
linux_versioninfo.scons 266 '../chrome/app/theme/chromium/BRANDING',
280 '../chrome/app/theme/chromium/BRANDING',
289 '$SRC_DIR/base/../chrome/app/theme/chromium/BRANDING',
  /external/webkit/WebCore/platform/haiku/
ScrollbarThemeHaiku.cpp 45 static ScrollbarThemeHaiku theme; local
46 return &theme;
  /frameworks/base/core/java/android/app/
DatePickerDialog.java 92 * @param theme the theme to apply to this dialog
99 int theme,
104 super(context, theme);
TimePickerDialog.java 85 * @param theme the theme to apply to this dialog
92 int theme,
95 super(context, theme);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationComposite.java 186 String theme; field in class:ConfigurationComposite.ConfigState
208 sb.append(theme);
240 theme = values[3];
276 sb.append(theme);
367 int cols = 9; // device+config+locale+dock+day/night+separator*2+theme+createBtn
396 // ---- 2nd line: device/config/locale/theme Combos, create button.
1634 String theme = mThemeCombo.getItem(themeIndex); local
    [all...]

Completed in 219 milliseconds

1 2 3 4 5