Searched refs:mirrored (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/v4/kitkat/android/support/v4/graphics/drawable/
H A DDrawableCompatKitKat.java25 public static void setAutoMirrored(Drawable drawable, boolean mirrored) { argument
26 drawable.setAutoMirrored(mirrored);
/frameworks/support/v4/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java31 void setAutoMirrored(Drawable drawable, boolean mirrored); argument
44 public void setAutoMirrored(Drawable drawable, boolean mirrored) { argument
68 public void setAutoMirrored(Drawable drawable, boolean mirrored) { argument
69 DrawableCompatKitKat.setAutoMirrored(drawable, mirrored);
106 * Set whether this Drawable is automatically mirrored when its layout
114 * @param mirrored Set to true if the Drawable should be mirrored, false if
117 public static void setAutoMirrored(Drawable drawable, boolean mirrored) { argument
118 IMPL.setAutoMirrored(drawable, mirrored);
122 * Tells if this Drawable will be automatically mirrored whe
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DBitmapDrawable.java408 public void setAutoMirrored(boolean mirrored) { argument
409 if (mBitmapState.mAutoMirrored != mirrored) {
410 mBitmapState.mAutoMirrored = mirrored;
H A DLayerDrawable.java455 public void setAutoMirrored(boolean mirrored) { argument
456 mLayerState.mAutoMirrored = mirrored;
460 array[i].mDrawable.setAutoMirrored(mirrored);
H A DNinePatchDrawable.java304 public void setAutoMirrored(boolean mirrored) { argument
305 mNinePatchState.mAutoMirrored = mirrored;
H A DDrawableContainer.java176 public void setAutoMirrored(boolean mirrored) { argument
177 mDrawableContainerState.mAutoMirrored = mirrored;
H A DDrawable.java585 * Set whether this Drawable is automatically mirrored when its layout direction is RTL
588 * @param mirrored Set to true if the Drawable should be mirrored, false if not.
590 public void setAutoMirrored(boolean mirrored) { argument
594 * Tells if this Drawable will be automatically mirrored when its layout direction is RTL
597 * @return boolean Returns true if this Drawable will be automatically mirrored.

Completed in 2037 milliseconds