Home
last modified time | relevance | path

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

/core/core/src/main/java/androidx/core/view/
DWindowInsetsAnimationCompat.java507 @NonNull List<WindowInsetsAnimationCompat> runningAnimations); in onProgress() argument
846 List<WindowInsetsAnimationCompat> runningAnimations =
848 dispatchOnProgress(v, interpolateInsets, runningAnimations);
934 @NonNull List<WindowInsetsAnimationCompat> runningAnimations) {
938 insets = callback.onProgress(insets, runningAnimations);
947 dispatchOnProgress(child, insets, runningAnimations);
1077 @NonNull List<WindowInsetsAnimation> runningAnimations) {
1079 mTmpRunningAnimations = new ArrayList<>(runningAnimations.size());
1085 for (int i = runningAnimations.size() - 1; i >= 0; i--) {
1086 WindowInsetsAnimation animation = runningAnimations.get(i);
/core/core/src/main/java/androidx/core/view/insets/
DSystemBarStateMonitor.java139 @NonNull List<WindowInsetsAnimationCompat> runningAnimations) { in SystemBarStateMonitor()
142 for (int i = runningAnimations.size() - 1; i >= 0; i--) { in SystemBarStateMonitor()
143 final WindowInsetsAnimationCompat animation = runningAnimations.get(i); in SystemBarStateMonitor()
/core/core/src/androidTest/java/androidx/core/view/
DWindowInsetsAnimationCompatActivityTest.kt194 runningAnimations: MutableList<WindowInsetsAnimationCompat> in <lambda>()
197 progress.add(runningAnimations[0].fraction) in <lambda>()
427 runningAnimations: MutableList<WindowInsetsAnimationCompat> in <lambda>()
DViewGroupCompatTest.java164 @NonNull List<WindowInsetsAnimationCompat> runningAnimations) { in installCompatInsetsDispatch()