Searched defs:mPendingAnimations (Results 1 - 3 of 3) sorted by last modified time

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

Completed in 113 milliseconds