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

1 2 3 4

  /frameworks/base/core/java/android/widget/
ScrollBarDrawable.java 196 thumb.mutate();
206 track.mutate();
216 thumb.mutate();
226 track.mutate();
244 public ScrollBarDrawable mutate() { method in class:ScrollBarDrawable
245 if (!mMutated && super.mutate() == this) {
247 mVerticalTrack.mutate();
250 mVerticalThumb.mutate();
253 mHorizontalTrack.mutate();
256 mHorizontalThumb.mutate();
    [all...]
  /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();
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
IconUtils.java 271 icon.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...]
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimationDrawable.java 344 public Drawable mutate() { method in class:AnimationDrawable
345 if (!mMutated && super.mutate() == this) {
346 mAnimationState.mutate();
382 private void mutate() { method in class:AnimationDrawable.AnimationState
LevelListDrawable.java 148 public Drawable mutate() { method in class:LevelListDrawable
149 if (!mMutated && super.mutate() == this) {
150 mLevelListState.mutate();
177 // Perform a shallow copy and rely on mutate() to deep-copy.
186 private void mutate() { method in class:LevelListDrawable.LevelListState
StateListDrawable.java 291 public Drawable mutate() { method in class:StateListDrawable
292 if (!mMutated && super.mutate() == this) {
293 mStateListState.mutate();
330 // Perform a shallow copy and rely on mutate() to deep-copy.
339 private void mutate() { method in class:StateListDrawable.StateListState
ClipDrawable.java 332 public Drawable mutate() { method in class:ClipDrawable
333 if (!mMutated && super.mutate() == this) {
334 mState.mDrawable.mutate();
InsetDrawable.java 391 public Drawable mutate() { method in class:InsetDrawable
392 if (!mMutated && super.mutate() == this) {
393 mState.mDrawable.mutate();
ScaleDrawable.java 333 public Drawable mutate() { method in class:ScaleDrawable
334 if (!mMutated && super.mutate() == this) {
335 mState.mDrawable.mutate();
ColorDrawable.java 83 public Drawable mutate() { method in class:ColorDrawable
84 if (!mMutated && super.mutate() == this) {
DrawableContainer.java 146 mCurrDrawable.mutate().setAlpha(alpha);
164 mCurrDrawable.mutate().setDither(mDrawableContainerState.mDither);
177 mCurrDrawable.mutate().setColorFilter(cf);
190 mCurrDrawable.mutate().setTintList(tint);
203 mCurrDrawable.mutate().setTintMode(tintMode);
246 mCurrDrawable.mutate().setAutoMirrored(mDrawableContainerState.mAutoMirrored);
268 mCurrDrawable.mutate().setAlpha(mAlpha);
486 d.mutate();
527 mCurrDrawable.mutate().setAlpha(mAlpha);
533 mCurrDrawable.mutate().setAlpha(((255-animAlpha)*mAlpha)/255)
589 public Drawable mutate() { method in class:DrawableContainer
876 private void mutate() { method in class:DrawableContainer.DrawableContainerState
883 drawables[i].mutate(); method
    [all...]
AnimatedRotateDrawable.java 384 public Drawable mutate() { method in class:AnimatedRotateDrawable
385 if (!mMutated && super.mutate() == this) {
386 mState.mDrawable.mutate();
AnimatedStateListDrawable.java 528 public Drawable mutate() { method in class:AnimatedStateListDrawable
529 if (!mMutated && super.mutate() == this) {
530 mState.mutate();
568 // Perform a shallow copy and rely on mutate() to deep-copy.
578 private void mutate() { method in class:AnimatedStateListDrawable.AnimatedStateListState
RotateDrawable.java 510 public Drawable mutate() { method in class:RotateDrawable
511 if (!mMutated && super.mutate() == this) {
512 mState.mDrawable.mutate();
  /external/chromium_org/third_party/skia/src/core/
SkRecord.h 19 // Though an enterprising user may find calling alloc(), append(), visit(), and mutate() enough to
39 this->mutate<void>(i, destroyer);
56 // Mutate the i-th canvas command with a functor matching this interface:
61 R mutate(unsigned i, F& f) { function in class:SkRecord
63 return fRecords[i].mutate<R>(fTypes[i], f);
65 // TODO: It'd be nice to infer R from F for visit and mutate if we ever get std::result_of.
97 this->mutate<void>(i, destroyer);
144 // visit() or mutate(). The recorded canvas calls don't have to have any idea about the
183 // visit() and mutate() work with the parallel fTypes array to do the work of a vtable.
208 // Mutate this record with functor F (see public API above) assuming the record we'r
211 R mutate(Type8 type, F& f) { function in struct:SkRecord::Record
    [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
  /external/skia/src/core/
SkRecord.h 19 // Though an enterprising user may find calling alloc(), append(), visit(), and mutate() enough to
36 this->mutate<void>(i, destroyer);
53 // Mutate the i-th canvas command with a functor matching this interface:
58 R mutate(unsigned i, F& f) { function in class:SkRecord
60 return fRecords[i].mutate<R>(fTypes[i], f);
62 // TODO: It'd be nice to infer R from F for visit and mutate if we ever get std::result_of.
93 this->mutate<void>(i, destroyer);
140 // visit() or mutate(). The recorded canvas calls don't have to have any idea about the
179 // visit() and mutate() work with the parallel fTypes array to do the work of a vtable.
204 // Mutate this record with functor F (see public API above) assuming the record we'r
207 R mutate(Type8 type, F& f) { function in struct:SkRecord::Record
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
FrameLayoutWithShadows.java 295 shadow.mutate();
300 shadowView.setDrawableBottom(d.mutate());
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AnimatedVectorDrawableTest.java 175 d1.mutate();
GradientDrawableTest.java 308 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();
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
HeadersFragment.java 217 background.mutate();
HeadersSupportFragment.java 219 background.mutate();

Completed in 789 milliseconds

1 2 3 4