HomeSort by relevance Sort by last modified time
    Searched defs:mutate (Results 1 - 25 of 31) sorted by null

1 2

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ProxyDrawable.java 94 public Drawable mutate() { method in class:ProxyDrawable
95 if (mProxy != null && !mMutated && super.mutate() == this) {
96 mProxy.mutate();
  /external/webkit/JavaScriptCore/tests/mozilla/js1_6/Array/
regress-290592.js 55 function mutate(v, index, array) function
57 reportCompare(v, array[index], 'mutate: check callback argument consistency');
219 actual = strings.map(mutate).toString();
225 reportCompare(expect, actual, 'Array.map: mutate');
326 reportCompare(expect, actual, 'Array.forEach: mutate');
  /frameworks/base/graphics/java/android/graphics/drawable/
InsetDrawable.java 246 public Drawable mutate() { method in class:InsetDrawable
247 if (!mMutated && super.mutate() == this) {
248 mInsetState.mDrawable.mutate();
RotateDrawable.java 277 public Drawable mutate() { method in class:RotateDrawable
278 if (!mMutated && super.mutate() == this) {
279 mState.mDrawable.mutate();
ScaleDrawable.java 245 public Drawable mutate() { method in class:ScaleDrawable
246 if (!mMutated && super.mutate() == this) {
247 mScaleState.mDrawable.mutate();
AnimatedRotateDrawable.java 276 public Drawable mutate() { method in class:AnimatedRotateDrawable
277 if (!mMutated && super.mutate() == this) {
278 mState.mDrawable.mutate();
AnimationDrawable.java 288 public Drawable mutate() { method in class:AnimationDrawable
289 if (!mMutated && super.mutate() == this) {
LevelListDrawable.java 144 public Drawable mutate() { method in class:LevelListDrawable
145 if (!mMutated && super.mutate() == this) {
NinePatchDrawable.java 333 public Drawable mutate() { method in class:NinePatchDrawable
334 if (!mMutated && super.mutate() == this) {
StateListDrawable.java 235 public Drawable mutate() { method in class:StateListDrawable
236 if (!mMutated && super.mutate() == this) {
LayerDrawable.java 532 public Drawable mutate() { method in class:LayerDrawable
533 if (!mMutated && super.mutate() == this) {
537 array[i].mDrawable.mutate();
BitmapDrawable.java 351 public Drawable mutate() { method in class:BitmapDrawable
352 if (!mMutated && super.mutate() == this) {
ShapeDrawable.java 352 public Drawable mutate() { method in class:ShapeDrawable
353 if (!mMutated && super.mutate() == this) {
Drawable.java 649 public Drawable mutate() { method in class:Drawable
    [all...]
DrawableContainer.java 246 public Drawable mutate() { method in class:DrawableContainer
247 if (!mMutated && super.mutate() == this) {
251 if (drawables[i] != null) drawables[i].mutate(); method
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
BitmapDrawableTest.java 510 method = "mutate",
524 d1.mutate();
GradientDrawableTest.java 461 method = "mutate",
478 d1.mutate();
InsetDrawableTest.java 448 method = "mutate",
456 d1.mutate();
LevelListDrawableTest.java 203 method = "mutate",
215 // the state does not appear to be shared before calling mutate()
221 // simply call mutate to make sure no exception is thrown
222 d1.mutate();
AnimationDrawableTest.java 450 method = "mutate",
453 @ToBeFixed(bug = "", explanation = "mutate always throws out NullPointerException")
458 // simply call mutate to make sure it does not throw an exception
459 d1.mutate();
NinePatchDrawableTest.java 442 method = "mutate",
445 @ToBeFixed(bug = "", explanation = "mutate() always throw NullPointerException.")
454 // the state is not shared before mutate.
460 // cannot test if mutate worked, since state was not shared before
461 d1.mutate();
StateListDrawableTest.java 282 method = "mutate",
285 @ToBeFixed(bug = "", explanation = "mutate() always throw NullPointerException.")
299 d1.mutate();
RotateDrawableTest.java 322 method = "mutate",
343 d1.mutate();
DrawableContainerTest.java 855 method = "mutate",
861 mDrawableContainer.mutate();
869 mDrawableContainer.mutate();
990 public Drawable mutate() { method in class:DrawableContainerTest.MockDrawable
    [all...]
LayerDrawableTest.java     [all...]

Completed in 1509 milliseconds

1 2