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

1 2

  /frameworks/support/compat/api21/android/support/v4/graphics/drawable/
DrawableCompatLollipop.java 66 public static void applyTheme(Drawable drawable, Resources.Theme t) {
67 drawable.applyTheme(t);
  /frameworks/support/compat/java/android/support/v4/graphics/drawable/
DrawableCompat.java 55 void applyTheme(Drawable drawable, Resources.Theme t);
125 public void applyTheme(Drawable drawable, Resources.Theme t) {
239 public void applyTheme(Drawable drawable, Resources.Theme t) {
240 DrawableCompatLollipop.applyTheme(drawable, t);
422 public static void applyTheme(@NonNull Drawable drawable, @NonNull Resources.Theme t) {
423 IMPL.applyTheme(drawable, t);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
RippleDrawableTest.java 98 halfDrawable.applyTheme(t);
100 doubleDrawable.applyTheme(t);
InsetDrawableTest.java 406 halfDrawable.applyTheme(t);
409 doubleDrawable.applyTheme(t);
GradientDrawableTest.java 562 halfDrawable.applyTheme(t);
567 doubleDrawable.applyTheme(t);
VectorDrawableTest.java 474 halfDrawable.applyTheme(t);
476 doubleDrawable.applyTheme(t);
  /frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
VectorDrawableCommon.java 139 public void applyTheme(Resources.Theme t) {
142 DrawableCompat.applyTheme(mDelegateDrawable, t);
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedRotateDrawable.java 141 public void applyTheme(@NonNull Theme t) {
142 super.applyTheme(t);
ClipDrawable.java 100 public void applyTheme(@NonNull Theme t) {
101 super.applyTheme(t);
ColorDrawable.java 265 public void applyTheme(Theme t) {
266 super.applyTheme(t);
RotateDrawable.java 81 public void applyTheme(@NonNull Theme t) {
82 super.applyTheme(t);
ScaleDrawable.java 114 public void applyTheme(@NonNull Theme t) {
115 super.applyTheme(t);
DrawableWrapper.java 145 public void applyTheme(@NonNull Theme t) {
146 super.applyTheme(t);
152 mDrawable.applyTheme(t);
InsetDrawable.java 113 public void applyTheme(@NonNull Theme t) {
114 super.applyTheme(t);
StateListDrawable.java 370 public void applyTheme(Theme theme) {
371 super.applyTheme(theme);
VectorDrawable.java 480 public void applyTheme(Theme t) {
481 super.applyTheme(t);
514 mVectorState.applyTheme(t);
    [all...]
ShapeDrawable.java 409 public void applyTheme(Theme t) {
410 super.applyTheme(t);
DrawableContainer.java 610 public void applyTheme(Theme theme) {
611 mDrawableContainerState.applyTheme(theme);
941 final void applyTheme(Theme theme) {
949 drawables[i].applyTheme(theme);
    [all...]
AnimatedStateListDrawable.java 391 public void applyTheme(@Nullable Theme theme) {
392 super.applyTheme(theme);
NinePatchDrawable.java 475 public void applyTheme(@NonNull Theme t) {
476 super.applyTheme(t);
RippleDrawable.java 496 public void applyTheme(@NonNull Theme t) {
497 super.applyTheme(t);
    [all...]
  /prebuilts/sdk/current/support/graphics/drawable/libs/
android-support-animatedvectordrawable.jar 
android-support-vectordrawable.jar 
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 207 // Deep copy, these may change due to applyTheme().
354 // modulate again during applyTheme().
411 private void applyTheme(Theme t) {
483 clone.applyTheme(t);
GradientColor.java 177 * Update the root level's attributes, either for inflate or applyTheme.
542 clone.applyTheme(t);
559 private void applyTheme(Theme t) {

Completed in 844 milliseconds

1 2