Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DViewPropertyAnimatorRT.java49 cancelAnimators(parent.mPendingAnimations); in startAnimation()
67 int size = parent.mPendingAnimations.size(); in doStartAnimation()
80 NameValuesHolder holder = parent.mPendingAnimations.get(i); in doStartAnimation()
94 parent.mPendingAnimations.clear(); in doStartAnimation()
126 private void cancelAnimators(ArrayList<NameValuesHolder> mPendingAnimations) { in cancelAnimators() argument
127 int size = mPendingAnimations.size(); in cancelAnimators()
129 NameValuesHolder holder = mPendingAnimations.get(i); in cancelAnimators()
DViewPropertyAnimator.java130 ArrayList<NameValuesHolder> mPendingAnimations = new ArrayList<NameValuesHolder>(); field in ViewPropertyAnimator
430 mPendingAnimations.clear(); in cancel()
867 (ArrayList<NameValuesHolder>) mPendingAnimations.clone(); in startAnimation()
868 mPendingAnimations.clear(); in startAnimation()
970 mPendingAnimations.add(nameValuePair); in animatePropertyBy()
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
DDirectoryItemAnimator.java41 private final List<ColorAnimation> mPendingAnimations = new ArrayList<>(); field in DirectoryItemAnimator
55 for (ColorAnimation anim: mPendingAnimations) { in runPendingAnimations()
59 mPendingAnimations.clear(); in runPendingAnimations()
66 for (int i = mPendingAnimations.size() - 1; i >= 0; --i) { in endAnimation()
67 ColorAnimation anim = mPendingAnimations.get(i); in endAnimation()
69 mPendingAnimations.remove(i); in endAnimation()
120 mPendingAnimations.add(new ColorAnimation(oldHolder, startColor, endColor)); in animateChange()