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

1 2 3

  /external/chromium/chrome/browser/sync/sessions/
status_controller.cc 47 shared_.error_counters.mutate()->num_conflicting_commits += value;
51 shared_.syncer_status.mutate()->num_updates_downloaded_total += value;
56 shared_.syncer_status.mutate()->types_needing_local_migration = types;
61 shared_.syncer_status.mutate()->num_tombstone_updates_downloaded_total +=
67 shared_.error_counters.mutate()->num_conflicting_commits = 0;
73 shared_.error_counters.mutate()->consecutive_transient_error_commits =
87 shared_.error_counters.mutate()->consecutive_errors = value;
93 *(shared_.num_server_changes_remaining.mutate()) = changes_remaining;
98 shared_.syncer_status.mutate()->invalid_store = invalid_store;
103 shared_.syncer_status.mutate()->syncer_stuck = syncer_stuck
    [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();
  /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...]
test_iterlen.py 84 self.mutate()
121 self.mutate = d.pop
128 self.mutate = d.pop
135 self.mutate = d.popitem
142 self.mutate = d.popitem
149 self.mutate = d.popitem
156 self.mutate = d.pop
158 ## ------- Types that can mutate during iteration -------
  /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...]
test_iterlen.py 84 self.mutate()
121 self.mutate = d.pop
128 self.mutate = d.pop
135 self.mutate = d.popitem
142 self.mutate = d.popitem
149 self.mutate = d.popitem
156 self.mutate = d.pop
158 ## ------- Types that can mutate during iteration -------
  /frameworks/base/core/tests/coretests/src/android/view/
MutateDrawable.java 45 ok.getBackground().mutate().setAlpha(127);
  /frameworks/base/graphics/java/android/graphics/drawable/
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...]
ColorDrawable.java 76 public Drawable mutate() { method in class:ColorDrawable
77 if (!mMutated && super.mutate() == this) {
LevelListDrawable.java 147 public Drawable mutate() { method in class:LevelListDrawable
148 if (!mMutated && super.mutate() == this) {
InsetDrawable.java 262 public Drawable mutate() { method in class:InsetDrawable
263 if (!mMutated && super.mutate() == this) {
264 mInsetState.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();
ScaleDrawable.java 257 public Drawable mutate() { method in class:ScaleDrawable
258 if (!mMutated && super.mutate() == this) {
259 mScaleState.mDrawable.mutate();
AnimationDrawable.java 305 public Drawable mutate() { method in class:AnimationDrawable
306 if (!mMutated && super.mutate() == this) {
StateListDrawable.java 251 public Drawable mutate() { method in class:StateListDrawable
252 if (!mMutated && super.mutate() == this) {
  /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));
  /external/guava/guava/src/com/google/common/collect/
TreeMultiset.java 193 private int mutate(@Nullable E e, MultisetModifier modifier) { method in class:TreeMultiset
200 BstOperations.mutate(comparator(), mutationRule, rootReference.get(), e);
216 return mutate(element, new AddModifier(occurrences));
228 return range.contains(e) ? mutate(e, new RemoveModifier(occurrences)) : 0;
238 return mutate(element, new ConditionalSetCountModifier(oldCount, newCount))
246 return mutate(element, new SetCountModifier(count));
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/guava/guava-tests/test/com/google/common/collect/
OrderingTest.java 699 verifyScenario(alteration.mutate(scenario), level + 1);
754 @Override <T> Scenario<?> mutate(Scenario<T> scenario) {
761 @Override <T> Scenario<?> mutate(Scenario<T> scenario) {
773 @Override <T> Scenario<?> mutate(Scenario<T> scenario) {
785 @Override <T> Scenario<?> mutate(final Scenario<T> scenario) {
801 @Override <T> Scenario<?> mutate(Scenario<T> scenario) {
814 @Override <T> Scenario<?> mutate(Scenario<T> scenario) {
829 @Override <T> Scenario<?> mutate(Scenario<T> scenario) {
844 abstract <T> Scenario<?> mutate(Scenario<T> scenario);
  /packages/apps/Camera/src/com/android/camera/ui/
PieItem.java 197 Drawable d = context.getResources().getDrawable(resId).mutate();
  /packages/apps/Camera2/src/com/android/camera/ui/
PieItem.java 164 Drawable d = context.getResources().getDrawable(resId).mutate();
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
TileDrawable.java 27 mInner = inner.mutate();
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
TargetDrawable.java 58 // Mutate the drawable so we can animate shared drawable properties.
59 mDrawable = drawable != null ? drawable.mutate() : null;
66 // Mutate the drawable so we can animate shared drawable properties.
67 mDrawable = other.mDrawable != null ? other.mDrawable.mutate() : null;
  /packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
TargetDrawable.java 69 // Mutate the drawable so we can animate shared drawable properties.
70 mDrawable = drawable != null ? drawable.mutate() : null;
77 // Mutate the drawable so we can animate shared drawable properties.
78 mDrawable = other.mDrawable != null ? other.mDrawable.mutate() : null;

Completed in 1297 milliseconds

1 2 3