Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/transition/
DTransitionUtils.java42 static Animator mergeAnimators(Animator animator1, Animator animator2) { in mergeAnimators() argument
44 return animator2; in mergeAnimators()
45 } else if (animator2 == null) { in mergeAnimators()
49 animatorSet.playTogether(animator1, animator2); in mergeAnimators()
/frameworks/base/core/tests/coretests/src/android/animation/
DAnimatorSetActivityTest.java602 ObjectAnimator animator2 = ObjectAnimator.ofInt(target2, property, 0, 100); in testInitializeWithoutReadingValues() local
605 set.playSequentially(animator1, animator2, animator3); in testInitializeWithoutReadingValues()
634 ObjectAnimator animator2 = ObjectAnimator.ofInt(target, property, 0, 100); in initAfterStartNotification() local
637 animator2.setDuration(10); in initAfterStartNotification()
640 set.playSequentially(animator1, animator2, animator3); in initAfterStartNotification()
642 animator2.addListener(new AnimatorListenerAdapter() { in initAfterStartNotification()
646 animator2.setIntValues(target[0], target[0] + 100); in initAfterStartNotification()
DAnimatorSetCallsTest.java218 ValueAnimator animator2 = ValueAnimator.ofFloat(0f, 1f); in pauseResumeSeekingAnimators() local
219 mSet2.play(animator2).after(mAnimator); in pauseResumeSeekingAnimators()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/split/
DSplitLayout.java699 ValueAnimator animator2 = moveSurface(t, leash2, getRefBounds2(), distBounds2, in splitSwitching() local
705 set.playTogether(animator1, animator2, animator3); in splitSwitching()