Lines Matching refs:enter

180     // These are the possible states for the enter/exit activities during a thumbnail transition
606 private Animation createScaleUpAnimationLocked(int transit, boolean enter,
612 if (enter) {
735 private Animation createClipRevealAnimationLocked(int transit, boolean enter, Rect appFrame,
738 if (enter) {
893 int getThumbnailTransitionState(boolean enter) {
894 if (enter) {
910 * This animation runs for the thumbnail that gets cross faded with the enter/exit activity
1200 Rect destFrame, @Nullable Rect surfaceInsets, boolean enter) {
1205 final float scaleH = enter ? sourceWidth / destWidth : destWidth / sourceWidth;
1206 final float scaleV = enter ? sourceHeight / destHeight : destHeight / sourceHeight;
1214 final float scaleHCenter = ((enter ? destWidth : sourceWidth) + surfaceInsetsH) / 2;
1215 final float scaleVCenter = ((enter ? destHeight : sourceHeight) + surfaceInsetsV) / 2;
1216 final ScaleAnimation scale = enter ?
1223 final int fromX = enter ? sourceHCenter - destHCenter : destHCenter - sourceHCenter;
1224 final int fromY = enter ? sourceVCenter - destVCenter : destVCenter - sourceVCenter;
1225 final TranslateAnimation translation = enter ? new TranslateAnimation(fromX, 0, fromY, 0)
1249 * This animation runs for the thumbnail that gets cross faded with the enter/exit activity
1433 Animation loadAnimation(WindowManager.LayoutParams lp, int transit, boolean enter, int uiMode,
1441 a = loadAnimationRes(lp, enter
1447 + " isEntrance=" + enter + " Callers=" + Debug.getCallers(3));
1451 a = loadAnimationRes(lp, enter
1457 + " isEntrance=" + enter + " Callers=" + Debug.getCallers(3));
1466 a = loadAnimationRes(mNextAppTransitionPackage, enter ?
1471 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
1481 a = createClipRevealAnimationLocked(transit, enter, frame, displayFrame);
1488 a = createScaleUpAnimationLocked(transit, enter, frame);
1492 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
1498 a = createThumbnailEnterExitAnimationLocked(getThumbnailTransitionState(enter),
1505 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
1513 getThumbnailTransitionState(enter), uiMode, orientation, transit, frame,
1520 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
1527 animAttr = enter
1532 animAttr = enter
1538 animAttr = enter
1543 animAttr = enter
1548 animAttr = enter
1553 animAttr = enter
1558 animAttr = enter
1563 animAttr = enter
1568 animAttr = enter
1573 animAttr = enter
1578 animAttr = enter
1587 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter