Searched defs:transition (Results 176 - 200 of 214) sorted by relevance

123456789

/frameworks/base/tests/net/java/com/android/server/connectivity/
H A DLingerMonitorTest.java76 setNotificationSwitch(transition(WIFI, CELLULAR));
86 setNotificationSwitch(transition(WIFI, CELLULAR));
97 setNotificationSwitch(transition(WIFI, CELLULAR));
108 setNotificationSwitch(transition(WIFI, CELLULAR));
122 setNotificationSwitch(transition(WIFI, CELLULAR));
136 setNotificationSwitch(transition(WIFI, CELLULAR));
154 setNotificationSwitch(transition(WIFI, CELLULAR));
175 setNotificationSwitch(transition(WIFI, CELLULAR));
201 setNotificationSwitch(transition(WIFI, CELLULAR));
226 setNotificationSwitch(transition(WIF
303 String transition(String from, String to) { method in class:LingerMonitorTest
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DEhFrameReader.cpp114 const Action transition[NumOfStates][NumOfTokenKinds] = { local
139 if (!transition[cur_state][token.kind](pEhFrame, entry, token)) {
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentTransitionCompat21.java21 import android.transition.Transition;
22 import android.transition.TransitionManager;
23 import android.transition.TransitionSet;
34 public boolean canHandle(Object transition) { argument
35 return transition instanceof Transition;
39 public Object cloneTransition(Object transition) { argument
41 if (transition != null) {
42 copy = ((Transition) transition).clone();
48 public Object wrapTransitionInSet(Object transition) { argument
49 if (transition
117 hasSimpleTarget(Transition transition) argument
204 beginDelayedTransition(ViewGroup sceneRoot, Object transition) argument
[all...]
H A DFragmentTransitionImpl.java40 * Returns {@code true} if this implementation can handle the specified {@link transition}.
42 public abstract boolean canHandle(Object transition); argument
45 * Returns a clone of a transition or null if it is null
47 public abstract Object cloneTransition(Object transition); argument
50 * Wraps a transition in a TransitionSet and returns the set. If transition is null, null is
53 public abstract Object wrapTransitionInSet(Object transition); argument
65 * Sets a transition epicenter to the rectangle of a given View.
80 * This method adds views as targets to the transition, but only if the transition
119 beginDelayedTransition(ViewGroup sceneRoot, Object transition) argument
[all...]
H A DFragmentTransition.java65 "android.support.transition.FragmentTransitionSupport");
68 // support-transition is not loaded; ignore
93 * part of this transition.
95 * as part of this transition.
146 * @param containerId The container ID that is executing the transition.
150 * part of this transition.
152 * as part of this transition.
193 * Configures a transition for a single fragment container for which the transaction was
198 * @param containerId The container ID that is executing the transition.
248 Object transition
991 configureEnteringExitingViews(FragmentTransitionImpl impl, Object transition, Fragment fragment, ArrayList<View> sharedElements, View nonExistentView) argument
[all...]
H A DBackStackRecord.java501 public FragmentTransaction setTransition(int transition) { argument
502 mTransition = transition;
/frameworks/support/transition/api14/android/support/transition/
H A DViewOverlayApi14.java17 package android.support.transition;
/frameworks/support/transition/src/android/support/transition/
H A DChangeBounds.java17 package android.support.transition;
46 * This transition captures the layout bounds of target views before and after
47 * the scene change and animates those changes during the transition.
49 * <p>A ChangeBounds transition can be described in a resource file by using the
193 * {@link android.transition.ChangeClipBounds} is not compatible with ChangeBounds
394 public void onTransitionCancel(@NonNull Transition transition) {
400 public void onTransitionEnd(@NonNull Transition transition) {
404 transition.removeListener(this);
408 public void onTransitionPause(@NonNull Transition transition) {
413 public void onTransitionResume(@NonNull Transition transition) {
[all...]
H A DStyleable.java17 package android.support.transition;
57 android.R.attr.transition,
H A DTransition.java17 package android.support.transition;
63 * captured property values. A custom transition knows what property values
65 * changes to those values. For example, the {@link Fade} transition tracks
79 * <p>Transitions can be declared in XML resource files inside the <code>res/transition</code>
81 * subclasses along with attributes to define some of the attributes of that transition.
83 * transition:</p>
89 * <p>Note that attributes for the transition are not required, just as they are
92 * elaborate example which declares a {@link TransitionSet} transition with
110 * transition uses a fadingMode of {@link Fade#OUT} instead of the default
113 * this transition act
2288 onTransitionStart(@onNull Transition transition) argument
2299 onTransitionEnd(@onNull Transition transition) argument
2311 onTransitionCancel(@onNull Transition transition) argument
2323 onTransitionPause(@onNull Transition transition) argument
2334 onTransitionResume(@onNull Transition transition) argument
2356 AnimationInfo(View view, String name, Transition transition, WindowIdImpl windowId, TransitionValues values) argument
2434 onGetEpicenter(@onNull Transition transition) argument
[all...]
/frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
H A DFadeAndShortSlide.java16 package android.support.v17.leanback.transition;
29 import android.transition.Fade;
30 import android.transition.Transition;
31 import android.transition.TransitionValues;
32 import android.transition.Visibility;
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DSlideKitkat.java16 package android.support.v17.leanback.transition;
26 import android.transition.TransitionValues;
27 import android.transition.Visibility;
/frameworks/base/core/java/android/app/
H A DEnterTransitionCoordinator.java28 import android.transition.Transition;
29 import android.transition.TransitionListenerAdapter;
30 import android.transition.TransitionManager;
263 * In that case, we can finish any transition that was started, but we
264 * should cancel any pending transition and just bring those Views visible.
395 // Now start shared element transition
409 Transition transition = beginTransition(decorView, startEnterTransition,
415 startEnterTransition(transition);
499 public void onTransitionStart(Transition transition) {
504 public void onTransitionEnd(Transition transition) {
580 startEnterTransition(Transition transition) argument
[all...]
H A DFragmentTransition.java20 import android.transition.Transition;
21 import android.transition.TransitionListenerAdapter;
22 import android.transition.TransitionManager;
23 import android.transition.TransitionSet;
80 * part of this transition.
82 * as part of this transition.
131 * @param containerId The container ID that is executing the transition.
135 * part of this transition.
137 * as part of this transition.
178 * Configures a transition fo
444 cloneTransition(Transition transition) argument
876 setEpicenter(Transition transition, View view) argument
943 setSharedElementTargets(TransitionSet transition, View nonExistentView, ArrayList<View> sharedViews) argument
1025 replaceTargets(Transition transition, ArrayList<View> oldTargets, ArrayList<View> newTargets) argument
1058 addTargets(Transition transition, ArrayList<View> views) argument
1084 hasSimpleTarget(Transition transition) argument
1097 configureEnteringExitingViews(Transition transition, Fragment fragment, ArrayList<View> sharedElements, View nonExistentView) argument
[all...]
H A DActivityTransitionCoordinator.java26 import android.transition.Transition;
27 import android.transition.TransitionListenerAdapter;
28 import android.transition.TransitionSet;
29 import android.transition.Visibility;
59 * - Exit transition starts by setting transitioning Views to INVISIBLE
65 * 4) The shared element transition completes.
71 * - The shared element transition is started
72 * - If the window allows overlapping transitions, the views transition is started by setting
77 * 7) The exit transition completes in the calling Activity.
80 * - If the window doesn't allow overlapping enter transitions, the enter transition i
351 setTargets(Transition transition, boolean add) argument
387 configureTransition(Transition transition, boolean includeTransitioningViews) argument
408 removeExcludedViews(Transition transition, ArrayList<View> views) argument
425 findIncludedViews(Transition transition, ArrayList<View> views, ArraySet<View> included) argument
981 onTransitionStart(Transition transition) argument
991 onTransitionEnd(Transition transition) argument
1024 noLayoutSuppressionForVisibilityTransitions(Transition transition) argument
1048 onGetEpicenter(Transition transition) argument
[all...]
H A DBackStackRecord.java523 public FragmentTransaction setTransition(int transition) { argument
524 mTransition = transition;
/frameworks/base/services/core/java/com/android/server/wm/
H A DBoundsAnimationController.java119 BoundsAnimationController(Context context, AppTransition transition, Handler handler, argument
122 mAppTransition = transition;
216 // windows-drawn signal before we start the rest of the transition down into PiP.
H A DAccessibilityController.java171 public void onAppWindowTransitionLocked(WindowState windowState, int transition) { argument
173 mDisplayMagnifier.onAppWindowTransitionLocked(windowState, transition);
178 public void onWindowTransitionLocked(WindowState windowState, int transition) { argument
180 mDisplayMagnifier.onWindowTransitionLocked(windowState, transition);
346 public void onAppWindowTransitionLocked(WindowState windowState, int transition) { argument
348 Slog.i(LOG_TAG, "Window transition: "
349 + AppTransition.appTransitionToString(transition)
354 switch (transition) {
367 public void onWindowTransitionLocked(WindowState windowState, int transition) { argument
369 Slog.i(LOG_TAG, "Window transition
[all...]
/frameworks/support/fragment/tests/java/android/support/v4/app/
H A DFragmentTransitionTest.java37 import android.transition.TransitionSet;
103 // enter transition
108 // exit transition
120 // reenter transition
129 // return transition
137 // Test that shared elements transition from one fragment to the next
143 // Now do a transition to scene2
198 // should be a normal transition from fragment1 to fragment2
262 // Now do a transition to scene2
322 // Now do a transition t
827 verifyAndClearTransition(TargetTracking transition, Rect epicenter, View... expected) argument
[all...]
/frameworks/support/fragment/tests/java/android/support/v4/app/test/
H A DFragmentTestActivity.java30 import android.transition.Transition;
31 import android.transition.Transition.TransitionListener;
32 import android.transition.TransitionInflater;
78 R.transition.fade,
79 R.transition.fade,
80 R.transition.fade,
81 R.transition.fade,
82 R.transition.change_bounds,
83 R.transition.change_bounds,
181 Transition transition
194 onTransitionStart(Transition transition) argument
199 onTransitionEnd(Transition transition) argument
204 onTransitionCancel(Transition transition) argument
208 onTransitionPause(Transition transition) argument
212 onTransitionResume(Transition transition) argument
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedStateListDrawable.java42 * keyframes may optionally be defined using transition elements.
47 * <code>&lt;transition></code> element.
66 private static final String ELEMENT_TRANSITION = "transition";
71 /** The currently running transition, if any. */
74 /** Index to be set after the transition ends. */
119 * Adds a new transition between keyframes.
123 * @param transition An {@link Animatable} drawable to use as a transition, may not be null
124 * @param reversible Whether the transition can be reversed
127 @NonNull T transition, boolea
126 addTransition(int fromId, int toId, @NonNull T transition, boolean reversible) argument
[all...]
/frameworks/base/libs/input/
H A DPointerController.cpp238 void PointerController::fade(Transition transition) { argument
245 if (transition == TRANSITION_IMMEDIATE) {
255 void PointerController::unfade(Transition transition) { argument
262 if (transition == TRANSITION_IMMEDIATE) {
/frameworks/base/core/java/android/transition/
H A DTransition.java17 package android.transition;
56 * captured property values. A custom transition knows what property values
58 * changes to those values. For example, the {@link Fade} transition tracks
72 * <p>Transitions can be declared in XML resource files inside the <code>res/transition</code>
74 * subclasses along with attributes to define some of the attributes of that transition.
75 * For example, here is a minimal resource file that declares a {@link ChangeBounds} transition:
77 * {@sample development/samples/ApiDemos/res/transition/changebounds.xml ChangeBounds}
79 * <p>This TransitionSet contains {@link android.transition.Explode} for visibility,
80 * {@link android.transition.ChangeBounds}, {@link android.transition
2297 onTransitionStart(Transition transition) argument
2308 onTransitionEnd(Transition transition) argument
2320 onTransitionCancel(Transition transition) argument
2332 onTransitionPause(Transition transition) argument
2343 onTransitionResume(Transition transition) argument
2359 Transition transition; field in class:Transition.AnimationInfo
2361 AnimationInfo(View view, String name, Transition transition, WindowId windowId, TransitionValues values) argument
2439 onGetEpicenter(Transition transition) argument
[all...]
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java41 * <p>One of the core concepts of these transition animations is that there are two types of
42 * changes that cause the transition and four different animations that run because of
43 * those changes. The changes that trigger the transition are items being added to a container
44 * (referred to as an "appearing" transition) or removed from a container (also known as
49 * the transition may want different animations for the changing items depending on whether
71 * <p>The animations specified for the transition, both the defaults and any custom animations
72 * set on the transition object, are templates only. That is, these animations exist to hold the
75 * set automatically in the process of setting up the transition each time it runs. Each of the
84 * values when the transition begins. Custom animations will be similarly populated with
129 * from the container. This transition typ
1476 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
1491 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
[all...]
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareImpl.java473 int transition,
484 "GeofenceTransition| " + location + ", transition:" + transition +
491 transition,
808 int transition,
814 mTransition = transition;
470 reportGeofenceTransition( int geofenceId, Location location, int transition, long transitionTimestamp, int monitoringType, int sourcesUsed) argument
806 GeofenceTransition( int geofenceId, int transition, long timestamp, Location location, int monitoringType, int sourcesUsed) argument

Completed in 497 milliseconds

123456789