HomeSort by relevance Sort by last modified time
    Searched defs:mutate (Results 1 - 25 of 38) 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/Source/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 251 public Drawable mutate() { method in class:InsetDrawable
252 if (!mMutated && super.mutate() == this) {
253 mInsetState.mDrawable.mutate();
ScaleDrawable.java 253 public Drawable mutate() { method in class:ScaleDrawable
254 if (!mMutated && super.mutate() == this) {
255 mScaleState.mDrawable.mutate();
AnimatedRotateDrawable.java 290 public Drawable mutate() { method in class:AnimatedRotateDrawable
291 if (!mMutated && super.mutate() == this) {
292 mState.mDrawable.mutate();
RotateDrawable.java 280 public Drawable mutate() { method in class:RotateDrawable
281 if (!mMutated && super.mutate() == this) {
282 mState.mDrawable.mutate();
AnimationDrawable.java 293 public Drawable mutate() { method in class:AnimationDrawable
294 if (!mMutated && super.mutate() == this) {
LevelListDrawable.java 147 public Drawable mutate() { method in class:LevelListDrawable
148 if (!mMutated && super.mutate() == this) {
MipmapDrawable.java 181 public Drawable mutate() { method in class:MipmapDrawable
182 if (!mMutated && super.mutate() == this) {
NinePatchDrawable.java 347 public Drawable mutate() { method in class:NinePatchDrawable
348 if (!mMutated && super.mutate() == this) {
LayerDrawable.java 576 public Drawable mutate() { method in class:LayerDrawable
577 if (!mMutated && super.mutate() == this) {
581 array[i].mDrawable.mutate();
BitmapDrawable.java 426 public Drawable mutate() { method in class:BitmapDrawable
427 if (!mMutated && super.mutate() == this) {
ShapeDrawable.java 374 public Drawable mutate() { method in class:ShapeDrawable
375 if (!mMutated && super.mutate() == this) {
StateListDrawable.java 248 public Drawable mutate() { method in class:StateListDrawable
249 if (!mMutated && super.mutate() == this) {
Drawable.java 725 public Drawable mutate() { method in class:Drawable
    [all...]
DrawableContainer.java 400 public Drawable mutate() { method in class:DrawableContainer
401 if (!mMutated && super.mutate() == this) {
405 if (drawables[i] != null) drawables[i].mutate(); method
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
GradientDrawableTest.java 461 method = "mutate",
478 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();
BitmapDrawableTest.java 571 method = "mutate",
585 d1.mutate();
NinePatchDrawableTest.java 408 method = "mutate",
411 @ToBeFixed(bug = "", explanation = "mutate() always throw NullPointerException.")
420 // the state is not shared before mutate.
426 // cannot test if mutate worked, since state was not shared before
427 d1.mutate();
StateListDrawableTest.java 282 method = "mutate",
285 @ToBeFixed(bug = "", explanation = "mutate() always throw NullPointerException.")
299 d1.mutate();
RotateDrawableTest.java 320 method = "mutate",
341 d1.mutate();
DrawableContainerTest.java 853 method = "mutate",
859 mDrawableContainer.mutate();
867 mDrawableContainer.mutate();
988 public Drawable mutate() { method in class:DrawableContainerTest.MockDrawable
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
session_state.h 254 T* mutate() { function in class:browser_sync::sessions::DirtyOnWrite

Completed in 320 milliseconds

1 2