HomeSort by relevance Sort by last modified time
    Searched full:transition (Results 1 - 25 of 1158) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/i18n/
ztrans.h 12 * \brief C API: Time zone transition classes
32 * Constructs a time zone transition with the time and the rules before/after
33 * the transition.
35 * @param time The time of transition in milliseconds since the base time.
36 * @param from The time zone rule used before the transition.
37 * @param to The time zone rule used after the transition.
80 * Returns the time of transition in milliseconds.
81 * param trans, the transition to use
82 * @return The time of the transition in milliseconds since the 1970 Jan 1 epoch time.
89 * Sets the time of transition in milliseconds
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
TransitionCrossfade.java 22 * This class allows to render a crossfade (dissolve) effect transition between
26 public class TransitionCrossfade extends Transition {
39 * @param transitionId The transition id
40 * @param afterMediaItem The transition is applied to the end of this
42 * @param beforeMediaItem The transition is applied to the beginning of
44 * @param durationMs duration of the transition in milliseconds
45 * @param behavior behavior is one of the behavior defined in Transition
TransitionFadeBlack.java 22 * This class is used to render a fade to black and fade from black transition
26 public class TransitionFadeBlack extends Transition {
39 * @param transitionId The transition id
40 * @param afterMediaItem The transition is applied to the end of this
42 * @param beforeMediaItem The transition is applied to the beginning of
44 * @param durationMs duration of the transition
45 * @param behavior behavior is one of the behavior defined in Transition
Transition.java 38 * Adding a transition between MediaItems makes the
39 * duration of the storyboard shorter by the duration of the Transition itself.
40 * As a result, if the duration of the transition is larger than the smaller
41 * duration of the two MediaItems associated with the Transition, an exception
44 * During a transition, the audio track are cross-fading
47 public abstract class Transition {
49 * The transition behavior
53 /** The transition starts slowly and speed up */
55 /** The transition start fast and speed down */
57 /** The transition speed is constant *
    [all...]
TransitionSliding.java 23 public class TransitionSliding extends Transition {
49 * @param transitionId The transition id
50 * @param afterMediaItem The transition is applied to the end of this
52 * @param beforeMediaItem The transition is applied to the beginning of
54 * @param durationMs duration of the transition in milliseconds
55 * @param behavior behavior is one of the behavior defined in Transition
  /external/webkit/Source/JavaScriptCore/runtime/
Structure.cpp 71 Structure* transition = singleTransition(); local
72 return transition && transition->m_nameInPrevious == rep && transition->m_attributesInPrevious == attributes;
80 Structure* transition = singleTransition(); local
81 return (transition && transition->m_nameInPrevious == rep && transition->m_attributesInPrevious == attributes) ? transition : 0;
89 // If more than one transition had been added, then we wouldn't be i
337 Structure* transition = toCacheableDictionaryTransition(globalData, structure); local
347 Structure* transition = create(globalData, structure); local
383 Structure* transition = toUncacheableDictionaryTransition(globalData, structure); local
394 Structure* transition = create(globalData, structure); local
411 Structure* transition = create(globalData, structure); local
434 Structure* transition = create(globalData, structure); local
450 Structure* transition = create(globalData, structure); local
474 Structure* transition = preventExtensionsTransition(globalData, structure); local
488 Structure* transition = preventExtensionsTransition(globalData, structure); local
502 Structure* transition = create(globalData, structure); local
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieTransition.java 23 import android.media.videoeditor.Transition;
34 * This class represents a transition in the user interface
37 // The unique id of the transition
54 * @param transition The transition
56 MovieTransition(Transition transition) {
57 mTypeClass = transition.getClass();
58 mUniqueId = transition.getId();
59 mAppDurationMs = mDurationMs = transition.getDuration()
    [all...]
MovieTheme.java 22 import android.media.videoeditor.Transition;
50 Transition.BEHAVIOR_SPEED_UP),
52 Transition.BEHAVIOR_LINEAR),
54 Transition.BEHAVIOR_SPEED_DOWN),
63 Transition.BEHAVIOR_SPEED_UP),
65 Transition.BEHAVIOR_LINEAR, R.raw.mask_diagonal, 50, false),
67 Transition.BEHAVIOR_SPEED_DOWN),
77 Transition.BEHAVIOR_SPEED_UP),
79 Transition.BEHAVIOR_LINEAR),
81 Transition.BEHAVIOR_SPEED_DOWN)
    [all...]
  /external/icu4c/i18n/unicode/
tztrans.h 12 * \brief C++ API: Time zone transition
27 * <code>TimeZoneTransition</code> is a class representing a time zone transition.
28 * An instance has a time of transition and rules for both before and after the transition.
35 * the transition.
37 * @param time The time of transition in milliseconds since the base time.
38 * @param from The time zone rule used before the transition.
39 * @param to The time zone rule used after the transition.
97 * Returns the time of transition in milliseconds.
98 * @return The time of the transition in milliseconds since the 1970 Jan 1 epoch time
    [all...]
  /external/webkit/Source/WebCore/manual-tests/
transition-delay.html 7 <title>Transition Delay</title>
27 -webkit-transition-property: -webkit-transform;
28 -webkit-transition-duration: 2s;
32 -webkit-transition-delay: 200ms;
36 -webkit-transition-delay: 2s;
40 -webkit-transition-delay: 4s;
transition-timing-functions.html 19 -webkit-transition-property: left;
20 -webkit-transition-duration: 5s;
36 -webkit-transition-timing-function: ease;
40 -webkit-transition-timing-function: linear;
44 -webkit-transition-timing-function: ease-in;
48 -webkit-transition-timing-function: ease-out;
52 -webkit-transition-timing-function: ease-in-out;
56 -webkit-transition-timing-function: cubic-bezier(.42, .0, .58, 1.0)
60 -webkit-transition-timing-function: bananas;
80 <p>On hover, the elements below should transition using th
    [all...]
transition-left.html 7 <title>Transition of left property</title>
15 -webkit-transition-property: left;
16 -webkit-transition-duration: 1s;
37 <h1>Transition of 'left' property</h1>
42 This element should transition.
transitions.html 11 -webkit-transition-property: background-color;
12 -webkit-transition-duration: 5s;
18 -webkit-transition-property: height;
19 -webkit-transition-duration: 2s;
25 <button style="display: block;" onclick="transition()">Change</button>
43 function transition()
transitions2.html 11 -webkit-transition-property: height;
12 -webkit-transition-duration: 2s;
18 -webkit-transition-property: width, height;
19 -webkit-transition-duration: 5s;
25 <button style="display: block;" onclick="transition()">Change</button>
41 function transition()
animation-with-transition.html 13 -webkit-transition: left 5s, top 5s;
49 <p>Testing setting an animation while a transition is running, in the
52 Start the transition, then start the animation.</p>
56 <button onclick="doTransition();">Transition</button>
transition-events.html 7 <title>Transition Events</title>
16 -webkit-transition-property: left;
17 -webkit-transition-duration: 2s;
28 -webkit-transition-property: left;
29 -webkit-transition-duration: 2s;
76 <h2>Transition Events</h2>
77 <p>Click to start transitions. Once started, transition end events should keep
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_hover_state_unittest.mm 32 // Test transition from closed to opening.
37 // Test transition from opening to closed (aka cancel open).
42 // Test transition from closed to opening.
47 // Test transition from opening to opened.
56 // Test transition from opening to opened.
60 // Test transition from closing to open (aka cancel close).
65 // Test transition from closing to closed.
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arc.h 45 Label ilabel; // Transition input label
46 Label olabel; // Transition output label
47 Weight weight; // Transition weight
48 StateId nextstate; // Transition destination state
69 Label ilabel; // Transition input label
70 Label olabel; // Transition output label
71 Weight weight; // Transition weight
72 StateId nextstate; // Transition destination state
98 Label ilabel; // Transition input label
99 Label olabel; // Transition output labe
    [all...]
  /external/sonivox/jet_tools/JetCreator_content/
JetCreator_demo_2.zip 
  /frameworks/base/graphics/java/android/graphics/drawable/
TransitionDrawable.java 25 * the first and second layer. To start the transition, call {@link #startTransition(int)}. To
28 * It can be defined in an XML file with the <code>&lt;transition></code> element.
29 * Each Drawable in the transition is defined in a nested <code>&lt;item></code>. For more
44 * A transition is about to start.
49 * The transition has started and the animation is in progress
54 * No transition will be applied
59 * The current state of the transition. One of {@link #TRANSITION_STARTING},
74 * Create a new transition drawable with the specified list of layers. At least
82 * Create a new transition drawable with no layer. To work correctly, at least 2
107 * @param durationMillis The length of the transition in millisecond
    [all...]
  /external/webkit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/
transition-property-names.js 2 'This test checks that CSS property names work round trip in the transition property.'
  /external/webkit/LayoutTests/fast/dom/CSSStyleDeclaration/
transition-property-names-expected.txt 1 This test checks that CSS property names work round trip in the transition property.
  /cts/tools/dasm/src/java_cup/
lalr_transition.java 3 /** This class represents a transition in an LALR viable prefix recognition
21 * @param to_st state we transition to.
22 * @param nxt next transition in linked list.
29 throw new internal_error("Attempt to create transition on null symbol");
31 throw new internal_error("Attempt to create transition to null state");
43 * @param to_st state we transition to.
54 /** The symbol we make the transition on. */
57 /** The symbol we make the transition on. */
62 /** The state we transition to. */
65 /** The state we transition to. *
    [all...]
  /cts/tests/res/drawable/
transition_test.xml 20 <transition xmlns:android="http://schemas.android.com/apk/res/android" >
28 </transition>
  /frameworks/base/core/res/res/drawable/
list_selector_background_transition.xml 17 <transition xmlns:android="http://schemas.android.com/apk/res/android">
20 </transition>

Completed in 1364 milliseconds

1 2 3 4 5 6 7 8 91011>>