/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();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_mutants.py | 11 # code to do containee comparisons can call back into Python and mutate 30 # The dicts are global to make it easy to mutate tham from within functions. 40 mutate = 0 variable 42 # If global mutate is true, consider mutating a dict. May or may not 43 # mutate a dict even if mutate is true. If it does decide to mutate a 48 global mutate 49 if not mutate: 61 mutate = 0 # disable mutation until key inserte [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_mutants.py | 11 # code to do containee comparisons can call back into Python and mutate 30 # The dicts are global to make it easy to mutate tham from within functions. 40 mutate = 0 variable 42 # If global mutate is true, consider mutating a dict. May or may not 43 # mutate a dict even if mutate is true. If it does decide to mutate a 48 global mutate 49 if not mutate: 61 mutate = 0 # disable mutation until key inserte [all...] |
/external/guava/guava/src/com/google/common/collect/ |
BstOperations.java | 68 public static <K, N extends BstNode<K, N>> BstMutationResult<K, N> mutate( method in class:BstOperations 79 mutate(comparator, mutationRule, tree.childOrNull(side), key); 90 public static <K, N extends BstNode<K, N>> BstMutationResult<K, N> mutate( method in class:BstOperations
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
ColorDrawable.java | 76 public Drawable mutate() { method in class:ColorDrawable 77 if (!mMutated && super.mutate() == this) {
|
DrawableContainer.java | 125 mCurrDrawable.mutate().setAlpha(alpha); 143 mCurrDrawable.mutate().setDither(mDrawableContainerState.mDither); 153 mCurrDrawable.mutate().setColorFilter(cf); 195 mCurrDrawable.mutate().setAutoMirrored(mDrawableContainerState.mAutoMirrored); 214 mCurrDrawable.mutate().setAlpha(mAlpha); 354 d.mutate(); 403 mCurrDrawable.mutate().setAlpha(mAlpha); 409 mCurrDrawable.mutate().setAlpha(((255-animAlpha)*mAlpha)/255); 426 mLastDrawable.mutate().setAlpha((animAlpha*mAlpha)/255); 454 public Drawable mutate() { method in class:DrawableContainer 664 final void mutate() { method in class:DrawableContainer.DrawableContainerState 671 drawables[i].mutate(); method [all...] |
InsetDrawable.java | 262 public Drawable mutate() { method in class:InsetDrawable 263 if (!mMutated && super.mutate() == this) { 264 mInsetState.mDrawable.mutate();
|
ScaleDrawable.java | 257 public Drawable mutate() { method in class:ScaleDrawable 258 if (!mMutated && super.mutate() == this) { 259 mScaleState.mDrawable.mutate();
|
AnimatedRotateDrawable.java | 295 public Drawable mutate() { method in class:AnimatedRotateDrawable 296 if (!mMutated && super.mutate() == this) { 297 mState.mDrawable.mutate();
|
RotateDrawable.java | 285 public Drawable mutate() { method in class:RotateDrawable 286 if (!mMutated && super.mutate() == this) { 287 mState.mDrawable.mutate();
|
AnimationDrawable.java | 305 public Drawable mutate() { method in class:AnimationDrawable 306 if (!mMutated && super.mutate() == this) {
|
LevelListDrawable.java | 147 public Drawable mutate() { method in class:LevelListDrawable 148 if (!mMutated && super.mutate() == this) {
|
LayerDrawable.java | 606 public Drawable mutate() { method in class:LayerDrawable 607 if (!mMutated && super.mutate() == this) { 612 array[i].mDrawable.mutate();
|
NinePatchDrawable.java | 433 public Drawable mutate() { method in class:NinePatchDrawable 434 if (!mMutated && super.mutate() == this) {
|
ShapeDrawable.java | 382 public Drawable mutate() { method in class:ShapeDrawable 383 if (!mMutated && super.mutate() == this) {
|
StateListDrawable.java | 251 public Drawable mutate() { method in class:StateListDrawable 252 if (!mMutated && super.mutate() == this) {
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
GradientDrawableTest.java | 288 d1.mutate();
|
LevelListDrawableTest.java | 175 // the state does not appear to be shared before calling mutate() 181 // simply call mutate to make sure no exception is thrown 182 d1.mutate();
|
AnimationDrawableTest.java | 352 // simply call mutate to make sure it does not throw an exception 353 d1.mutate();
|
BitmapDrawableTest.java | 399 d1.mutate();
|
NinePatchDrawableTest.java | 314 // the state is not shared before mutate. 320 // cannot test if mutate worked, since state was not shared before 321 d1.mutate();
|
StateListDrawableTest.java | 240 d1.mutate();
|
RotateDrawableTest.java | 222 d1.mutate();
|
/external/chromium/chrome/browser/sync/sessions/ |
session_state.h | 254 T* mutate() { function in class:browser_sync::sessions::DirtyOnWrite
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
TreeMultiset.java | 189 private int mutate(@Nullable E e, MultisetModifier modifier) { method in class:TreeMultiset 196 BstOperations.mutate(comparator(), mutationRule, rootReference.get(), e); 212 return mutate(element, new AddModifier(occurrences)); 224 return range.contains(e) ? mutate(e, new RemoveModifier(occurrences)) : 0; 234 return mutate(element, new ConditionalSetCountModifier(oldCount, newCount)) 242 return mutate(element, new SetCountModifier(count));
|