Home
last modified time | relevance | path

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

/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DAppTransitionTests.java514 assertNull(mDc.mAppTransition.getNextAppRequestedAnimation(true /* enter */)); in testGetNextAppRequestedAnimation()
515 assertNull(mDc.mAppTransition.getNextAppRequestedAnimation(false /* enter */)); in testGetNextAppRequestedAnimation()
523 assertEquals(enterAnim, mDc.mAppTransition.getNextAppRequestedAnimation(true /* enter */)); in testGetNextAppRequestedAnimation()
524 assertEquals(exitAnim, mDc.mAppTransition.getNextAppRequestedAnimation(false /* enter */)); in testGetNextAppRequestedAnimation()
531 assertEquals(enterAnim, mDc.mAppTransition.getNextAppRequestedAnimation(true /* enter */)); in testGetNextAppRequestedAnimation()
532 assertEquals(exitAnim, mDc.mAppTransition.getNextAppRequestedAnimation(false /* enter */)); in testGetNextAppRequestedAnimation()
537 assertNull(mDc.mAppTransition.getNextAppRequestedAnimation(true /* enter */)); in testGetNextAppRequestedAnimation()
538 assertNull(mDc.mAppTransition.getNextAppRequestedAnimation(false /* enter */)); in testGetNextAppRequestedAnimation()
/frameworks/base/services/core/java/com/android/server/wm/
DAppTransition.java309 Animation getNextAppRequestedAnimation(boolean enter) { in getNextAppRequestedAnimation() method in AppTransition
800 a = getNextAppRequestedAnimation(enter); in loadAnimation()
DWindowContainer.java3169 final Animation a = appTransition.getNextAppRequestedAnimation(enter); in getAnimationAdapter()