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

1 2 3 4 5 6 7 8 9

  /external/llvm/docs/_themes/llvm-theme/
theme.conf 0 [theme]
3 stylesheet = llvm-theme.css
  /external/webkit/Source/WebCore/platform/brew/
ScrollbarThemeBrew.cpp 33 DEFINE_STATIC_LOCAL(ScrollbarThemeBrew, theme, ());
34 return &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...]
  /external/webkit/Source/WebCore/platform/efl/
ScrollbarThemeEfl.cpp 39 static ScrollbarThemeEfl theme; local
40 return &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...]
ConfigurationDescription.java 70 * Settings name for file-specific configuration preferences, such as which theme or
82 /** The theme */
83 public String theme; field in class:ConfigurationDescription
148 description.theme = configuration.getTheme();
188 String theme = element.getAttribute(ATTR_THEME); local
189 if (!theme.isEmpty()) {
190 description.theme = theme;
273 if (theme != null) {
274 element.setAttribute(ATTR_THEME, theme);
    [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/webkit/Source/WebCore/rendering/
RenderMeter.cpp 50 setWidth(theme()->meterSizeForBounds(this, frameRect()).width());
56 setHeight(theme()->meterSizeForBounds(this, frameRect()).height());
RenderProgress.cpp 85 m_animationDuration = theme()->animationDurationForProgressBar(this);
86 m_animationRepeatInterval = theme()->animationRepeatIntervalForProgressBar(this);
  /external/webkit/Source/WebCore/platform/
Scrollbar.cpp 65 ScrollbarTheme* theme)
69 , m_theme(theme)
115 int oldThumbPosition = theme()->thumbPosition(this);
119 setPressedPos(m_pressedPos + theme()->thumbPosition(this) - oldThumbPosition);
145 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart);
161 if (context->updatingControlTints() && theme()->supportsControlTints()) {
169 if (!theme()->paint(this, context, damageRect))
175 autoscrollPressedPart(theme()->autoscrollTimerDelay());
180 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
34 theme = _theme;
  /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...]
  /cts/tests/tests/content/src/android/content/pm/cts/
ActivityInfoTest.java 59 assertEquals(mActivityInfo.theme, info.theme);
82 assertEquals(mActivityInfo.applicationInfo.theme, mActivityInfo.getThemeResource());
83 mActivityInfo.theme = 1;
84 assertEquals(mActivityInfo.theme, mActivityInfo.getThemeResource());
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentDialog.java 92 case 4: return "STYLE_NORMAL with dark fullscreen theme";
93 case 5: return "STYLE_NORMAL with light theme";
94 case 6: return "STYLE_NO_TITLE with light theme";
95 case 7: return "STYLE_NO_FRAME with light theme";
96 case 8: return "STYLE_NORMAL with light fullscreen theme";
126 int style = DialogFragment.STYLE_NORMAL, theme = 0; local
138 case 4: theme = android.R.style.Theme_Holo; break;
139 case 5: theme = android.R.style.Theme_Holo_Light_Dialog; break;
140 case 6: theme = android.R.style.Theme_Holo_Light; break;
141 case 7: theme = android.R.style.Theme_Holo_Light_Panel; break
    [all...]
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentDialogSupport.java 93 case 4: return "STYLE_NORMAL with dark fullscreen theme";
94 case 5: return "STYLE_NORMAL with light theme";
95 case 6: return "STYLE_NO_TITLE with light theme";
96 case 7: return "STYLE_NO_FRAME with light theme";
97 case 8: return "STYLE_NORMAL with light fullscreen theme";
127 int style = DialogFragment.STYLE_NORMAL, theme = 0; local
138 case 2: theme = android.R.style.Theme_Panel; break;
139 case 4: theme = android.R.style.Theme; break;
140 case 5: theme = android.R.style.Theme_Light; break
    [all...]
  /frameworks/base/core/java/android/app/
Presentation.java 151 * using the default theme.
164 * using the optionally specified theme.
170 * @param theme A style resource describing the theme to use for the window.
172 * Style and Theme Resources</a> for more information about defining and using
173 * styles. This theme is applied on top of the current theme in
174 * <var>outerContext</var>. If 0, the default presentation theme will be used.
176 public Presentation(Context outerContext, Display display, int theme) {
177 super(createPresentationContext(outerContext, display, theme), theme, false) local
    [all...]
  /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
502 * the mode from the theme will be used.
532 theme = orig.theme;
546 * Return the theme resource identifier to use for this activity. If
547 * the activity defines a theme, that is used; else, the application
548 * theme is used.
550 * @return The theme associated with this activity
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieTheme.java 29 * Movie theme description
39 * Get theme by name
42 * @param theme The theme id
43 * @return The theme
45 public static MovieTheme getTheme(Context context, String theme) {
46 if (THEME_TRAVEL.equals(theme)) {
59 } else if (THEME_SURFING.equals(theme)) {
73 } else if (THEME_FILM.equals(theme)) {
86 } else if (THEME_ROCKANDROLL.equals(theme)) {
    [all...]
  /external/webkit/Source/WebCore/html/shadow/
MediaControlRootElement.cpp 101 if (mediaElement->document()->page()->theme()->usesMediaControlStatusDisplay()) {
150 if (mediaElement->document()->page()->theme()->supportsClosedCaptioning()) {
169 if (mediaElement->document()->page()->theme()->usesMediaControlVolumeSlider()) {
246 transitionValue = String::format("opacity %.1gs", document()->page()->theme()->mediaControlsFadeInDuration());
263 transitionValue = String::format("opacity %.1gs", document()->page()->theme()->mediaControlsFadeOutDuration());
287 if (isfinite(duration) || page->theme()->hasOwnDisabledStateHandlingFor(MediaSliderPart)) {
295 if (m_mediaElement->hasAudio() || page->theme()->hasOwnDisabledStateHandlingFor(MediaMuteButtonPart))
351 // Allow the theme to format the time.
353 m_currentTimeDisplay->setInnerText(page->theme()->formatMediaControlsCurrentTime(now, duration), ec);
355 m_timeRemainingDisplay->setInnerText(page->theme()->formatMediaControlsRemainingTime(now, duration), ec)
    [all...]

Completed in 593 milliseconds

1 2 3 4 5 6 7 8 9