Searched refs:mAnimatorRequestors (Results 1 – 1 of 1) sorted by relevance
82 private final ArrayList<WeakReference<Object>> mAnimatorRequestors = new ArrayList<>(); field in AnimationHandler180 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 …]