Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/animation/
DAnimator.java116 ArrayList<AnimatorPauseListener> tmpListeners = in pause() local
118 int numListeners = tmpListeners.size(); in pause()
120 tmpListeners.get(i).onAnimationPause(this); in pause()
140 ArrayList<AnimatorPauseListener> tmpListeners = in resume() local
142 int numListeners = tmpListeners.size(); in resume()
144 tmpListeners.get(i).onAnimationResume(this); in resume()
DAnimatorSet.java355 ArrayList<AnimatorListener> tmpListeners = null; in cancel() local
357 tmpListeners = (ArrayList<AnimatorListener>) mListeners.clone(); in cancel()
358 int size = tmpListeners.size(); in cancel()
360 tmpListeners.get(i).onAnimationCancel(this); in cancel()
368 if (tmpListeners != null) { in cancel()
369 int size = tmpListeners.size(); in cancel()
371 tmpListeners.get(i).onAnimationEnd(this); in cancel()
394 ArrayList<AnimatorListener> tmpListeners = in end() local
396 for (int i = 0; i < tmpListeners.size(); i++) { in end()
397 tmpListeners.get(i).onAnimationEnd(this); in end()
[all …]
DValueAnimator.java944 ArrayList<AnimatorListener> tmpListeners = in notifyStartListeners() local
946 int numListeners = tmpListeners.size(); in notifyStartListeners()
948 tmpListeners.get(i).onAnimationStart(this); in notifyStartListeners()
1033 ArrayList<AnimatorListener> tmpListeners = in cancel() local
1035 for (AnimatorListener listener : tmpListeners) { in cancel()
1145 ArrayList<AnimatorListener> tmpListeners = in endAnimation() local
1147 int numListeners = tmpListeners.size(); in endAnimation()
1149 tmpListeners.get(i).onAnimationEnd(this); in endAnimation()
/frameworks/base/core/java/android/transition/
DTransition.java1689 ArrayList<TransitionListener> tmpListeners = in pause() local
1691 int numListeners = tmpListeners.size(); in pause()
1693 tmpListeners.get(i).onTransitionPause(this); in pause()
1721 ArrayList<TransitionListener> tmpListeners = in resume() local
1723 int numListeners = tmpListeners.size(); in resume()
1725 tmpListeners.get(i).onTransitionResume(this); in resume()
1893 ArrayList<TransitionListener> tmpListeners = in start() local
1895 int numListeners = tmpListeners.size(); in start()
1897 tmpListeners.get(i).onTransitionStart(this); in start()
1920 ArrayList<TransitionListener> tmpListeners = in end() local
[all …]