Searched refs:enter (Results 1 - 25 of 58) sorted by path

123

/frameworks/base/core/java/android/app/
H A DBackStackRecord.java554 public FragmentTransaction setCustomAnimations(int enter, int exit) { argument
555 return setCustomAnimations(enter, exit, 0, 0);
558 public FragmentTransaction setCustomAnimations(int enter, int exit, argument
560 mEnterAnim = enter;
977 * transition and an enter transition.
983 * <p>The enter transition operates against the last fragment that was added. If
984 * that fragment does not have a view or no fragment was added, then no enter
985 * transition is executed. The enter transition comes from the incoming fragment.</p>
990 * fragment's enter shared element transition is used, but when going back, the
1115 * Prepares the enter transitio
[all...]
H A DFragment.java1470 public Animator onCreateAnimator(int transit, boolean enter, int nextAnim) { argument
1929 * When custom transitions are used with Fragments, the enter transition callback
2168 * Sets whether the the exit transition and enter transition overlap or not.
2169 * When true, the enter transition will start as soon as possible. When false, the
2170 * enter transition will wait until the exit transition completes before starting.
2172 * @param allow true to start the enter transition when possible or false to
2181 * Returns whether the the exit transition and enter transition overlap or not.
2182 * When true, the enter transition will start as soon as possible. When false, the
2183 * enter transition will wait until the exit transition completes before starting.
2185 * @return true when the enter transitio
[all...]
H A DFragmentManager.java818 Animator loadAnimator(Fragment fragment, int transit, boolean enter, argument
820 Animator animObj = fragment.onCreateAnimator(transit, enter,
837 int styleIndex = transitToStyleIndex(transit, enter);
2242 public static int transitToStyleIndex(int transit, boolean enter) { argument
2246 animAttr = enter
2251 animAttr = enter
2256 animAttr = enter
H A DFragmentTransaction.java141 * Bit mask that is set for all enter transitions.
172 public abstract FragmentTransaction setCustomAnimations(@AnimatorRes int enter, argument
178 * and <code>popExit</code> animations will be played for enter/exit
181 public abstract FragmentTransaction setCustomAnimations(@AnimatorRes int enter, argument
/frameworks/base/core/java/android/transition/
H A DScene.java145 * set when {@link #enter() entering} a scene.
162 * an {@link #setEnterAction(Runnable)} enter action}, or a
167 public void enter() { method in class:Scene
215 * after those hierarchies are changed to, should set an enter
216 * action, and possibly an exit action as well. An enter action
237 * after those hierarchies are changed to, should set an enter
245 * if an enter action is set.
H A DTransitionManager.java64 // TODO: how to handle enter/exit?
201 scene.enter();
365 * current scene, followed by {@link Scene#enter()} on the scene
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java479 scene.enter();
/frameworks/base/core/java/com/android/internal/util/
H A DIState.java41 void enter(); method in interface:IState
H A DState.java35 * @see com.android.internal.util.IState#enter()
38 public void enter() { method in class:State
H A DStateMachine.java43 * <code>processMessage</code> and optionally <code>enter/exit/getName</code>.
44 * The enter/exit methods are equivalent to the construction and destruction
55 * is to the invoke <code>enter</code> for all of the initial state's hierarchy,
56 * starting at its eldest parent. The calls to enter will be done in the context
59 * state machine below, mP1.enter will be invoked and then mS1.enter. Finally,
91 * an <code>enter</code> method and <code>exit</code> method which may be overridden.</p>
97 * parent's up to but not including the common parent state and then enter all
132 * which is mP1. It will then call mS5.exit, mS1.exit, mS2.enter and then
133 * mS4.enter
[all...]
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
H A DStateMachineTest.java44 private static final String ENTER = "enter";
287 * Test enter/exit can use transitionTo
308 public void enter() { method in class:StateMachineTest.StateMachineEnterExitTransitionToTest.S1
309 // Test transitions in enter on the initial state work
312 log("S1.enter");
323 public void enter() { method in class:StateMachineTest.StateMachineEnterExitTransitionToTest.S2
325 log("S2.enter");
349 public void enter() { method in class:StateMachineTest.StateMachineEnterExitTransitionToTest.S3
351 log("S3.enter");
362 public void enter() { method in class:StateMachineTest.StateMachineEnterExitTransitionToTest.S4
580 public void enter() { method in class:StateMachineTest.StateMachine1.S1
681 public void enter() { method in class:StateMachineTest.StateMachine2.S1
977 public void enter() { method in class:StateMachineTest.StateMachine5.ParentState1
992 public void enter() { method in class:StateMachineTest.StateMachine5.ChildState1
1023 public void enter() { method in class:StateMachineTest.StateMachine5.ChildState2
1054 public void enter() { method in class:StateMachineTest.StateMachine5.ParentState2
1085 public void enter() { method in class:StateMachineTest.StateMachine5.ChildState3
1116 public void enter() { method in class:StateMachineTest.StateMachine5.ChildState4
1147 public void enter() { method in class:StateMachineTest.StateMachine5.ChildState5
1304 public void enter() { method in class:StateMachineTest.StateMachine6.S1
1403 public void enter() { method in class:StateMachineTest.StateMachine7.S2
1672 public void enter() { method in class:StateMachineTest.Hsm1.P1
1702 public void enter() { method in class:StateMachineTest.Hsm1.S1
1725 public void enter() { method in class:StateMachineTest.Hsm1.S2
1756 public void enter() { method in class:StateMachineTest.Hsm1.P2
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleBackground.java90 // Linear enter based on current opacity.
106 // Linear exit after enter is completed.
114 // Linear "fast" enter based on current opacity.
118 final ObjectAnimator enter = ObjectAnimator.ofFloat(this, RippleBackground.OPACITY, 1);
119 enter.setInterpolator(LINEAR_INTERPOLATOR);
120 enter.setDuration(fastEnterDuration);
121 enter.setAutoCancel(true);
123 builder.after(enter);
145 // Linear exit after enter is completed.
156 // Linear "fast" enter base
[all...]
H A DRippleComponent.java95 * Starts a ripple enter animation.
97 * @param fast whether the ripple should enter quickly
99 public final void enter(boolean fast) { method in class:RippleComponent
H A DRippleDrawable.java552 mBackground.enter(focused);
563 * Attempts to start an enter animation for the active hotspot. Fails if
590 mRipple.enter(false);
/frameworks/base/services/core/java/com/android/server/
H A DNsdService.java217 public void enter() { method in class:NsdService.NsdStateMachine.DisabledState
236 public void enter() { method in class:NsdService.NsdStateMachine.EnabledState
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkMonitor.java290 // does not entail any real state (hence no enter() or exit() routines).
364 public void enter() { method in class:NetworkMonitor.ValidatedState
460 public void enter() { method in class:NetworkMonitor.EvaluatingState
463 // cause us to exit and re-enter EvaluatingState.
540 // evaluation process via EvaluatingState#enter.
582 public void enter() { method in class:NetworkMonitor.CaptivePortalState
H A DTethering.java1643 public void enter() { method in class:Tethering.TetherMasterSM.TetherModeAliveState
1795 public void enter() { method in class:Tethering.TetherMasterSM.SetIpForwardingEnabledErrorState
1803 public void enter() { method in class:Tethering.TetherMasterSM.SetIpForwardingDisabledErrorState
1811 public void enter() { method in class:Tethering.TetherMasterSM.StartTetheringErrorState
1822 public void enter() { method in class:Tethering.TetherMasterSM.StopTetheringErrorState
1833 public void enter() { method in class:Tethering.TetherMasterSM.SetDnsForwardersErrorState
/frameworks/base/services/core/java/com/android/server/connectivity/tethering/
H A DTetherInterfaceStateMachine.java169 public void enter() { method in class:TetherInterfaceStateMachine.InitialState
201 public void enter() { method in class:TetherInterfaceStateMachine.TetheredState
338 public void enter() { method in class:TetherInterfaceStateMachine.UnavailableState
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java180 // These are the possible states for the enter/exit activities during a thumbnail transition
606 private Animation createScaleUpAnimationLocked(int transit, boolean enter, argument
612 if (enter) {
735 private Animation createClipRevealAnimationLocked(int transit, boolean enter, Rect appFrame, argument
738 if (enter) {
893 int getThumbnailTransitionState(boolean enter) { argument
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
1199 createAspectScaledThumbnailFreeformAnimationLocked(Rect sourceFrame, Rect destFrame, @Nullable Rect surfaceInsets, boolean enter) argument
1433 loadAnimation(WindowManager.LayoutParams lp, int transit, boolean enter, int uiMode, int orientation, Rect frame, Rect displayFrame, Rect insets, @Nullable Rect surfaceInsets, boolean isVoiceInteraction, boolean freeform, int taskId) argument
[all...]
H A DWindowManagerService.java2456 // We started enter animation early with a saved surface, now the app asks to remove
2464 // immediately after the enter animation is done. If the app is not yet drawn then
3267 int transit, boolean enter, boolean isVoiceInteraction) {
3304 // gets the !enter animation, and the other activity which remains on the
3305 // screen gets the enter animation. Both appear in the mOpeningApps set.
3306 enter = false;
3309 + " transit=" + AppTransition.appTransitionToString(transit) + " enter=" + enter
3311 Animation a = mAppTransition.loadAnimation(lp, transit, enter, mCurConfiguration.uiMode,
4554 // We need to inform the client the enter animatio
3266 applyAnimationLocked(AppWindowToken atoken, WindowManager.LayoutParams lp, int transit, boolean enter, boolean isVoiceInteraction) argument
[all...]
/frameworks/base/services/net/java/android/net/dhcp/
H A DDhcpClient.java399 // have an IP address, and we connect the UDP socket in DhcpBoundState#enter.
502 public void enter() { method in class:DhcpClient.LoggingState
550 public void enter() { method in class:DhcpClient.WaitBeforeOtherState
551 super.enter();
601 public void enter() { method in class:DhcpClient.DhcpState
673 public void enter() { method in class:DhcpClient.PacketRetransmittingState
674 super.enter();
745 public void enter() { method in class:DhcpClient.DhcpInitState
746 super.enter();
837 public void enter() { method in class:DhcpClient.ConfiguringInterfaceState
857 public void enter() { method in class:DhcpClient.DhcpBoundState
912 public void enter() { method in class:DhcpClient.DhcpReacquiringState
989 public void enter() { method in class:DhcpClient.DhcpRebindingState
[all...]
/frameworks/base/services/net/java/android/net/ip/
H A DIpManager.java788 // its enter() method.
1006 public void enter() { method in class:IpManager.StoppedState
1061 public void enter() { method in class:IpManager.StoppingState
1094 public void enter() { method in class:IpManager.StartedState
1159 public void enter() { method in class:IpManager.RunningState
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DBinding.java76 Scope.enter(getTarget());
77 Scope.enter(this);
H A DBindingTarget.java63 Scope.enter(expr);
179 Scope.enter(binding);
H A DDataBinder.java69 Scope.enter(layoutBinder);
92 Scope.enter(layoutBinder);

Completed in 9403 milliseconds

123