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

12 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
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
188 String theme = attributes.getTheme(); local
224 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...]
  /cts/hostsidetests/theme/app/src/android/theme/app/modifiers/
TimePickerModifier.java 17 package android.theme.app.modifiers;
ViewCheckedModifier.java 17 package android.theme.app.modifiers;
SearchViewModifier.java 17 package android.theme.app.modifiers;
19 import android.theme.app.R;
ProgressBarModifier.java 17 package android.theme.app.modifiers;
  /external/chromium_org/third_party/WebKit/Source/platform/
OverscrollTheme.h 46 static OverscrollTheme* theme();
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 25 * A ContextWrapper that allows you to modify the theme from what is in the
30 private Resources.Theme mTheme;
94 @Override public Resources.Theme getTheme() {
117 * Called by {@link #setTheme} and {@link #getTheme} to apply a theme
118 * resource to the current Theme object. Can override to change the
122 * @param theme The Theme object being modified.
123 * @param resid The theme style resource being applied to <var>theme</var>.
125 * applied to <var>theme</var>
135 Resources.Theme theme = getBaseContext().getTheme(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_install_ui_browsertest.cc 38 // Checks that a theme info bar is currently visible and issues an undo to
39 // revert to the previous theme.
54 // Install the given theme from the data dir and verify expected name.
57 // If there is already a theme installed, the current theme should be
63 const Extension* theme = GetTheme(); local
64 ASSERT_TRUE(theme);
65 ASSERT_EQ(theme->name(), expected_name);
89 // Install theme once and undo to verify we go back to default theme
92 const Extension* theme = GetTheme(); local
121 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);
  /external/chromium_org/ui/views/controls/scrollbar/
native_scroll_bar.h 35 static int GetHorizontalScrollBarHeight(const ui::NativeTheme* theme);
36 static int GetVerticalScrollBarWidth(const ui::NativeTheme* theme);
native_scroll_bar.cc 33 const ui::NativeTheme* theme) {
34 return NativeScrollBarWrapper::GetHorizontalScrollBarHeight(theme);
39 const ui::NativeTheme* theme) {
40 return NativeScrollBarWrapper::GetVerticalScrollBarWidth(theme);
  /cts/hostsidetests/theme/app/src/android/theme/app/
CaptureHolo.java 17 package android.theme.app;
  /frameworks/base/core/java/android/view/animation/
AccelerateInterpolator.java 21 import android.content.res.Resources.Theme;
63 public AccelerateInterpolator(Resources res, Theme theme, AttributeSet attrs) {
65 if (theme != null) {
66 a = theme.obtainStyledAttributes(attrs, R.styleable.AccelerateInterpolator, 0, 0);
AnticipateInterpolator.java 22 import android.content.res.Resources.Theme;
55 public AnticipateInterpolator(Resources res, Theme theme, AttributeSet attrs) {
57 if (theme != null) {
58 a = theme.obtainStyledAttributes(attrs, R.styleable.AnticipateInterpolator, 0, 0);
CycleInterpolator.java 22 import android.content.res.Resources.Theme;
46 public CycleInterpolator(Resources resources, Theme theme, AttributeSet attrs) {
48 if (theme != null) {
49 a = theme.obtainStyledAttributes(attrs, R.styleable.CycleInterpolator, 0, 0);
DecelerateInterpolator.java 22 import android.content.res.Resources.Theme;
56 public DecelerateInterpolator(Resources res, Theme theme, AttributeSet attrs) {
58 if (theme != null) {
59 a = theme.obtainStyledAttributes(attrs, R.styleable.DecelerateInterpolator, 0, 0);
OvershootInterpolator.java 21 import android.content.res.Resources.Theme;
56 public OvershootInterpolator(Resources res, Theme theme, AttributeSet attrs) {
58 if (theme != null) {
59 a = theme.obtainStyledAttributes(attrs, R.styleable.OvershootInterpolator, 0, 0);
  /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 38 * activity's theme. From the "theme" attribute or, if not set, 0.
40 public int theme; field in class:ActivityInfo
619 * the mode from the theme will be used.
649 theme = orig.theme;
664 * Return the theme resource identifier to use for this activity. If
665 * the activity defines a theme, that is used; else, the application
666 * theme is used.
668 * @return The theme associated with this activity
    [all...]
  /external/chromium_org/ash/ime/
candidate_view.cc 47 const ui::NativeTheme& theme) {
62 shortcut_label->SetEnabledColor(theme.GetSystemColor(
64 shortcut_label->SetDisabledColor(theme.GetSystemColor(
82 theme.GetSystemColor(ui::NativeTheme::kColorId_WindowBackground),
119 const ui::NativeTheme& theme) {
126 annotation_label->SetEnabledColor(theme.GetSystemColor(
149 const ui::NativeTheme& theme = *GetNativeTheme(); local
150 shortcut_label_ = CreateShortcutLabel(orientation, theme);
152 annotation_label_ = CreateAnnotationLabel(orientation, theme);
161 views::Background::CreateSolidBackground(theme.GetSystemColor
200 ui::NativeTheme* theme = GetNativeTheme(); local
    [all...]

Completed in 5261 milliseconds

12 3 4 5 6 7 8 91011>>