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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/ui/views/window/
dialog_client_view.h 66 virtual void OnNativeThemeChanged(const ui::NativeTheme* theme) OVERRIDE;
  /frameworks/base/graphics/java/android/graphics/drawable/
ClipDrawable.java 25 import android.content.res.Resources.Theme;
78 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme)
80 super.inflate(r, parser, attrs, theme);
85 r, theme, attrs, com.android.internal.R.styleable.ClipDrawable);
101 dr = Drawable.createFromXmlInner(r, parser, attrs, theme);
StateListDrawable.java 29 import android.content.res.Resources.Theme;
118 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme)
121 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.StateListDrawable);
175 dr = r.getDrawable(drawableRes, theme);
185 dr = Drawable.createFromXmlInner(r, parser, attrs, theme);
AnimatedStateListDrawable.java 24 import android.content.res.Resources.Theme;
358 @NonNull AttributeSet attrs, @Nullable Theme theme)
361 r, theme, attrs, R.styleable.AnimatedStateListDrawable);
396 parseItem(r, parser, attrs, theme);
398 parseTransition(r, parser, attrs, theme);
406 @NonNull AttributeSet attrs, @Nullable Theme theme)
436 dr = r.getDrawable(drawableRes, theme);
447 dr = Drawable.createFromXmlInner(r, parser, attrs, theme);
    [all...]
VectorDrawable.java 19 import android.content.res.Resources.Theme;
215 private VectorDrawable(VectorDrawableState state, Resources res, Theme theme) {
216 if (theme != null && state.canApplyTheme()) {
217 // If we need to apply a theme, implicitly mutate.
219 applyTheme(theme);
366 public void applyTheme(Theme t) {
447 public void inflate(Resources res, XmlPullParser parser, AttributeSet attrs, Theme theme)
453 final TypedArray a = obtainAttributes(res, theme, attrs, R.styleable.VectorDrawable)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePickerDialog.java 114 * @param theme the theme to apply to this dialog
122 int theme,
127 this(context, theme, callBack, year, monthOfYear, dayOfMonth, false);
132 * @param theme the theme to apply to this dialog
141 int theme,
147 super(context, theme);
  /external/chromium_org/ui/views/controls/button/
label_button.cc 324 const ui::NativeTheme* theme = GetNativeTheme(); local
326 theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonEnabledColor),
327 theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonHoverColor),
328 theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonHoverColor),
329 theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonDisabledColor),
350 label_->SetBackgroundColor(theme->GetSystemColor(
412 void LabelButton::OnNativeThemeChanged(const ui::NativeTheme* theme) {
text_button.cc 163 const ui::NativeTheme* theme = view.GetNativeTheme(); local
175 theme->Paint(canvas->sk_canvas(), part, prev_state, rect, prev_extra);
182 theme->Paint(canvas->sk_canvas(), part, state, rect, extra);
187 theme->Paint(canvas->sk_canvas(), part, state, rect, extra);
500 void TextButtonBase::OnNativeThemeChanged(const ui::NativeTheme* theme) {
502 color_enabled_ = theme->GetSystemColor(
506 color_disabled_ = theme->GetSystemColor(
510 color_highlight_ = theme->GetSystemColor(
514 color_hover_ = theme->GetSystemColor(
  /frameworks/base/core/java/android/app/
AlertDialog.java 67 * Special theme constant for {@link #AlertDialog(Context, int)}: use
68 * the traditional (pre-Holo) alert dialog theme.
73 * Special theme constant for {@link #AlertDialog(Context, int)}: use
74 * the holographic alert theme with a dark background.
79 * Special theme constant for {@link #AlertDialog(Context, int)}: use
80 * the holographic alert theme with a light background.
85 * Special theme constant for {@link #AlertDialog(Context, int)}: use
86 * the device's default alert theme with a dark background.
91 * Special theme constant for {@link #AlertDialog(Context, int)}: use
92 * the device's default alert theme with a light background
    [all...]
DatePickerDialog.java 97 * @param theme the theme to apply to this dialog
103 public DatePickerDialog(Context context, int theme, OnDateSetListener listener, int year,
105 super(context, resolveDialogTheme(context, theme));
TimePickerDialog.java 92 * @param theme the theme to apply to this dialog
98 public TimePickerDialog(Context context, int theme, OnTimeSetListener callBack, int hourOfDay,
100 super(context, resolveDialogTheme(context, theme));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
configHandler.py 297 def GetHighlight(self, theme, element, fgBg=None):
299 return individual highlighting theme elements.
304 if self.defaultCfg['highlight'].has_section(theme):
305 themeDict=self.GetThemeDict('default',theme)
307 themeDict=self.GetThemeDict('user',theme)
326 type - string, 'default' or 'user' theme type
327 themeName - string, theme name
329 in the specified theme. Values are loaded over a set of ultimate last
330 fallback defaults to guarantee that all theme elements are present in
331 a newly created theme
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
configHandler.py 297 def GetHighlight(self, theme, element, fgBg=None):
299 return individual highlighting theme elements.
304 if self.defaultCfg['highlight'].has_section(theme):
305 themeDict=self.GetThemeDict('default',theme)
307 themeDict=self.GetThemeDict('user',theme)
326 type - string, 'default' or 'user' theme type
327 themeName - string, theme name
329 in the specified theme. Values are loaded over a set of ultimate last
330 fallback defaults to guarantee that all theme elements are present in
331 a newly created theme
    [all...]
  /external/chromium_org/sync/tools/testserver/
chromiumsync_test.py 312 theme = chromiumsync.SYNC_TYPE_FIELDS['theme']
316 msg.requested_types.theme.SetInParent()
322 chromiumsync.THEME: 15412})
341 marker.data_type_id = theme.number
347 chromiumsync.THEME: 15413})
364 marker.data_type_id = theme.number
370 chromiumsync.THEME: 0})
376 self.assertEqual(marker.data_type_id, theme.number)
385 self.assertEqual(marker.data_type_id, theme.number
    [all...]
  /frameworks/base/core/java/android/content/pm/
ApplicationInfo.java 75 * default visual theme of the application. From the "theme" attribute
78 public int theme; field in class:ApplicationInfo
601 + " theme=0x" + Integer.toHexString(theme));
681 theme = orig.theme;
731 dest.writeInt(theme);
780 theme = source.readInt();
    [all...]
  /frameworks/base/core/java/android/content/res/
Resources.java 146 * Returns the most appropriate default theme for the specified target SDK version.
154 * @param curTheme The current theme, or 0 if not specified.
156 * @return A theme resource identifier
161 com.android.internal.R.style.Theme,
713 * or {@link #getDrawable(int, Theme)} passing the desired theme.</p>
721 * @see #getDrawable(int, Theme)
726 Log.w(TAG, "Drawable " + getResourceName(id) + " has unresolved theme "
727 + "attributes! Consider using Resources.getDrawable(int, Theme) or "
735 * styled for the specified theme. Various types of objects will b
1673 String theme; local
    [all...]
  /cts/hostsidetests/theme/
Android.mk 30 LOCAL_CTS_TEST_PACKAGE := android.host.theme
  /cts/tests/tests/view/src/android/view/cts/
ContextThemeWrapperTest.java 22 import android.content.res.Resources.Theme;
39 protected void onApplyThemeResource(Theme theme, int resid, boolean first) {
41 super.onApplyThemeResource(theme, resid, first);
57 // set Theme to TextAppearance
62 // assert theme style of TextAppearance
108 // get Theme and assert
109 Resources.Theme expected = getContext().getResources().newTheme();
  /external/chromium_org/chrome/browser/ui/webui/
version_ui.cc 148 // Set up the chrome://theme/ source.
149 ThemeSource* theme = new ThemeSource(profile); local
150 content::URLDataSource::Add(profile, theme);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFrontendHost.cpp 202 return RenderTheme::theme().activeSelectionBackgroundColor().serialized();
207 return RenderTheme::theme().activeSelectionForegroundColor().serialized();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorUtils.js 91 theme: config.theme,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
InplaceEditor.js 242 * @param {string} theme
246 setMultilineOptions: function(initialValue, mode, theme, lineWrapping, smartIndent)
251 this.theme = theme;
  /external/chromium_org/ui/views/bubble/
bubble_delegate.h 127 virtual void OnNativeThemeChanged(const ui::NativeTheme* theme) OVERRIDE;
151 // Update the bubble color from |theme|, unless it was explicitly set.
152 void UpdateColorsFromTheme(const ui::NativeTheme* theme);
  /external/chromium_org/ui/views/controls/
label.h 173 virtual void OnNativeThemeChanged(const ui::NativeTheme* theme) OVERRIDE;
205 // Updates any colors that have not been explicitly set from the theme.
206 void UpdateColorsFromTheme(const ui::NativeTheme* theme);
  /external/replicaisland/src/com/replica/replicaisland/
LevelBuilder.java 121 int theme) {
124 switch(theme) {

Completed in 2106 milliseconds

1 2 3 45 6 7 8 91011>>