HomeSort by relevance Sort by last modified time
    Searched refs:Transition (Results 176 - 200 of 250) sorted by null

1 2 3 4 5 6 78 910

  /device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/Ia16/
Real16ToFlat32.asm 3 ; Transition from 16 bit real mode into 32 bit flat protected mode
  /frameworks/support/transition/tests/src/android/support/transition/
ChangeImageTransformTest.java 17 package android.support.transition;
34 import android.support.transition.test.R;
53 Transition createTransition() {
231 .onTransitionEnd(any(Transition.class));
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/Ia32/
SecEntry.asm 51 ; Transition to non-paged flat-model protected mode from a
53 ; This is a bare bones transition to protected mode only
92 ; Transition to 16 bit protected mode
114 ; Transition to Flat 32 bit protected mode
115 ; The jump to a far pointer causes the transition to 32 bit mode
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/FspSupport/Library/SecFspPlatformSecLibVlv2/Ia32/
SecEntry.asm 50 ; Transition to non-paged flat-model protected mode from a
52 ; This is a bare bones transition to protected mode only
91 ; Transition to 16 bit protected mode
113 ; Transition to Flat 32 bit protected mode
114 ; The jump to a far pointer causes the transition to 32 bit mode
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DFA.as 3 /** A DFA implemented as a set of transition tables.
21 protected var transition:Array; // short[][]
33 eot:Array, eof:Array, min:Array, max:Array, accept:Array, special:Array, transition:Array,
45 this.transition = transition;
94 // look for a normal char transition
97 var snext:int = transition[s][c-min[s]]; // move to next state
99 // was in range but not a normal transition
103 if ( eot[s]>=0 ) { // EOT Transition to accept state?
104 if ( debug ) trace("EOT transition");
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CodeGenerator.java 678 Transition edge = (Transition) s.transition(i);
724 Transition edge,
743 Transition edge)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 46 import android.transition.Transition;
47 import android.transition.Transition.TransitionListener;
48 import android.transition.TransitionValues;
175 Transition enterTransition = new CustomTransition();
176 Transition exitTransition = new CustomTransition();
189 public static class CustomTransition extends Transition {
193 // This constructor is needed for reflection-based creation of a transition when
194 // the transition is defined in layout XML via attribute
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactPickerFragment.java 31 import android.transition.Explode;
32 import android.transition.Transition;
33 import android.transition.Transition.EpicenterCallback;
34 import android.transition.TransitionManager;
385 // individual list items (hidden initially), so that the transition
501 * Kicks off a scene transition that animates visibility changes of individual contact list
510 final Explode transition = new Explode(); local
513 transition.setDuration(UiUtils.COMPOSE_TRANSITION_DURATION)
    [all...]
  /cts/tests/tests/transition/src/android/transition/cts/
ChangeBoundsTest.java 16 package android.transition.cts;
30 import android.transition.ChangeBounds;
31 import android.transition.Transition;
32 import android.transition.TransitionValues;
62 mListener = mock(Transition.TransitionListener.class);
128 // now delay for at least a few frames before interrupting the transition
147 // now delay for at least a few frames before interrupting the transition
170 // reverse the transition back to scene1
191 // reverse the transition back to scene
    [all...]
ActivityTransitionTest.java 16 package android.transition.cts;
39 import android.transition.Fade;
40 import android.transition.Transition;
41 import android.transition.Transition.TransitionListener;
42 import android.transition.TransitionListenerAdapter;
47 import com.android.compatibility.common.util.transition.TargetTracking;
48 import com.android.compatibility.common.util.transition.TrackingTransition;
49 import com.android.compatibility.common.util.transition.TrackingVisibility
    [all...]
  /frameworks/base/core/java/android/transition/
ChangeImageTransform.java 16 package android.transition;
34 * This Transition captures an ImageView's matrix before and after the
35 * scene change and animates it during the transition.
41 public class ChangeImageTransform extends Transition {
141 * @param sceneRoot The root of the transition hierarchy.
  /frameworks/support/transition/src/android/support/transition/
ChangeImageTransform.java 17 package android.support.transition;
36 * This Transition captures an ImageView's matrix before and after the
37 * scene change and animates it during the transition.
43 public class ChangeImageTransform extends Transition {
121 * @param sceneRoot The root of the transition hierarchy.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogImpl.java 47 import android.transition.AutoTransition;
48 import android.transition.Transition;
49 import android.transition.TransitionManager;
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /frameworks/base/libs/input/
PointerController.cpp 238 void PointerController::fade(Transition transition) {
245 if (transition == TRANSITION_IMMEDIATE) {
255 void PointerController::unfade(Transition transition) {
262 if (transition == TRANSITION_IMMEDIATE) {
  /packages/apps/Car/Messenger/src/com/android/car/messenger/
MapMessageMonitor.java 55 import com.bumptech.glide.request.transition.Transition;
207 Transition<? super Bitmap> transition) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
Thunk16.S 139 # @param Transition The pointer to the transition code
162 movl 40(%esp), %eax # eax <- address of transition code
Thunk16.asm 209 ; IN OUT VOID *Transition
223 mov eax, [esp + 40] ; eax <- address of transition code
  /frameworks/base/core/java/android/app/
ActivityOptions.java 37 import android.transition.Transition;
38 import android.transition.TransitionListenerAdapter;
39 import android.transition.TransitionManager;
155 * Descriptions of app transition animations to be played during the activity launch.
607 * Create an ActivityOptions to transition between Activities using cross-Activity scene
610 * exit Transition. The position of the shared element in the launched Activity will be the
611 * epicenter of its entering Transition.
614 * enabled on the calling Activity to cause an exit transition. The same must be in
615 * the called Activity to get an entering transition.</p
1426 Transition transition = mWindow.getExitTransition(); local
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformSecLib/Ia32/
Flat32.asm 73 ; Transition to non-paged flat-model protected mode from a
75 ; This is a bare bones transition to protected mode only
112 ; Transition to 16 bit protected mode
130 ; Transition to Flat 32 bit protected mode
131 ; The jump to a far pointer causes the transition to 32 bit mode
Flat32.S 160 # Transition to non-paged flat-model protected mode from a
162 # This is a bare bones transition to protected mode only
200 # Transition to 16 bit protected mode
220 # Transition to Flat 32 bit protected mode
221 # The jump to a far pointer causes the transition to 32 bit mode
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
Thunk16.S 156 # @param Transition The pointer to the transition code
179 movl 40(%esp), %eax # eax <- address of transition code
Thunk16.asm 216 ; IN OUT VOID *Transition
230 mov eax, [esp + 40] ; eax <- address of transition code
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
Thunk16.asm 231 ; IN OUT VOID *Transition
255 mov eax, edx ; eax <- transition code address
  /prebuilts/go/darwin-x86/src/time/
zoneinfo_read.go 86 // number of transition times
106 // Transition times.
109 // Time zone indices for transition times.
159 // Now the transition time info.
181 // Build fake transition to cover all time.

Completed in 834 milliseconds

1 2 3 4 5 6 78 910