Searched defs:mutate (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/graphics/java/android/graphics/drawable/
H A DMipmapDrawable.java181 public Drawable mutate() { method in class:MipmapDrawable
182 if (!mMutated && super.mutate() == this) {
H A DLevelListDrawable.java147 public Drawable mutate() { method in class:LevelListDrawable
148 if (!mMutated && super.mutate() == this) {
H A DStateListDrawable.java248 public Drawable mutate() { method in class:StateListDrawable
249 if (!mMutated && super.mutate() == this) {
H A DAnimationDrawable.java293 public Drawable mutate() { method in class:AnimationDrawable
294 if (!mMutated && super.mutate() == this) {
H A DInsetDrawable.java251 public Drawable mutate() { method in class:InsetDrawable
252 if (!mMutated && super.mutate() == this) {
253 mInsetState.mDrawable.mutate();
H A DNinePatchDrawable.java347 public Drawable mutate() { method in class:NinePatchDrawable
348 if (!mMutated && super.mutate() == this) {
H A DRotateDrawable.java280 public Drawable mutate() { method in class:RotateDrawable
281 if (!mMutated && super.mutate() == this) {
282 mState.mDrawable.mutate();
H A DScaleDrawable.java253 public Drawable mutate() { method in class:ScaleDrawable
254 if (!mMutated && super.mutate() == this) {
255 mScaleState.mDrawable.mutate();
H A DAnimatedRotateDrawable.java290 public Drawable mutate() { method in class:AnimatedRotateDrawable
291 if (!mMutated && super.mutate() == this) {
292 mState.mDrawable.mutate();
H A DBitmapDrawable.java426 public Drawable mutate() { method in class:BitmapDrawable
427 if (!mMutated && super.mutate() == this) {
H A DShapeDrawable.java374 public Drawable mutate() { method in class:ShapeDrawable
375 if (!mMutated && super.mutate() == this) {
H A DDrawable.java725 public Drawable mutate() { method in class:Drawable
923 * {@link Drawable#mutate()} on a Drawable should typically create a new ConstantState for that
956 * @see Drawable#mutate()
H A DDrawableContainer.java400 public Drawable mutate() { method in class:DrawableContainer
401 if (!mMutated && super.mutate() == this) {
405 if (drawables[i] != null) drawables[i].mutate();
H A DLayerDrawable.java576 public Drawable mutate() { method in class:LayerDrawable
577 if (!mMutated && super.mutate() == this) {
581 array[i].mDrawable.mutate();
H A DGradientDrawable.java876 public Drawable mutate() { method in class:GradientDrawable
877 if (!mMutated && super.mutate() == this) {

Completed in 84 milliseconds