Searched defs:mutate (Results 1 - 16 of 16) 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 DColorDrawable.java76 public Drawable mutate() { method in class:ColorDrawable
77 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.java305 public Drawable mutate() { method in class:AnimationDrawable
306 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.java388 public Drawable mutate() { method in class:NinePatchDrawable
389 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.java252 public Drawable mutate() { method in class:ScaleDrawable
253 if (!mMutated && super.mutate() == this) {
254 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.java736 public Drawable mutate() { method in class:Drawable
941 * {@link Drawable#mutate()} on a Drawable should typically create a new ConstantState for that
974 * @see Drawable#mutate()
H A DDrawableContainer.java108 mCurrDrawable.mutate().setAlpha(alpha);
121 mCurrDrawable.mutate().setDither(mDrawableContainerState.mDither);
131 mCurrDrawable.mutate().setColorFilter(cf);
179 mCurrDrawable.mutate().setAlpha(mAlpha);
315 d.mutate();
359 mCurrDrawable.mutate().setAlpha(mAlpha);
365 mCurrDrawable.mutate().setAlpha(((255-animAlpha)*mAlpha)/255);
382 mLastDrawable.mutate().setAlpha((animAlpha*mAlpha)/255);
410 public Drawable mutate() { method in class:DrawableContainer
411 if (!mMutated && super.mutate()
[all...]
H A DLayerDrawable.java576 public Drawable mutate() { method in class:LayerDrawable
577 if (!mMutated && super.mutate() == this) {
586 array[i].mDrawable.mutate();
H A DGradientDrawable.java182 * {@link #mutate()} before changing this property.</p>
187 * @see #mutate()
203 * {@link #mutate()} before changing this property.</p>
207 * @see #mutate()
222 * {@link #mutate()} before changing this property.</p>
227 * @see #mutate()
239 * {@link #mutate()} before changing this property.</p>
246 * @see #mutate()
272 * {@link #mutate()} before changing this property.</p>
277 * @see #mutate()
1063 public Drawable mutate() { method in class:GradientDrawable
[all...]

Completed in 5706 milliseconds