Home
last modified time | relevance | path

Searched refs:mAnimatorRequestors (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/animation/
DAnimationHandler.java82 private final ArrayList<WeakReference<Object>> mAnimatorRequestors = new ArrayList<>(); field in AnimationHandler
180 boolean wasEmpty = mAnimatorRequestors.isEmpty(); in requestAnimatorsEnabledImpl()
182 synchronized (mAnimatorRequestors) { in requestAnimatorsEnabledImpl()
187 for (int i = mAnimatorRequestors.size() - 1; i >= 0; --i) { in requestAnimatorsEnabledImpl()
188 WeakReference<Object> ref = mAnimatorRequestors.get(i); in requestAnimatorsEnabledImpl()
194 mAnimatorRequestors.remove(i); in requestAnimatorsEnabledImpl()
199 mAnimatorRequestors.add(weakRef); in requestAnimatorsEnabledImpl()
202 for (int i = mAnimatorRequestors.size() - 1; i >= 0; --i) { in requestAnimatorsEnabledImpl()
203 WeakReference<Object> ref = mAnimatorRequestors.get(i); in requestAnimatorsEnabledImpl()
207 mAnimatorRequestors.remove(i); in requestAnimatorsEnabledImpl()
[all …]