HomeSort by relevance Sort by last modified time
    Searched refs:startDelay (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/animation/
Timing.h 56 : startDelay(0)
70 ASSERT(std::isfinite(startDelay));
78 double startDelay;
TimedItem.cpp 79 const double newLocalTime = localTime < m_specified.startDelay ? m_specified.startDelay - 1 : activeDuration + m_specified.startDelay;
TimedItemCalculations.h 46 if (localTime < specified.startDelay)
48 if (localTime >= specified.startDelay + activeDuration)
80 return localTime - specified.startDelay;
TimedItemCalculationsTest.cpp 47 timing.startDelay = 10;
58 timing.startDelay = 10;
74 timing.startDelay = 10;
TimedItemTest.cpp 197 TEST(TimedItem, StartDelay)
202 timing.startDelay = 0.5;
414 timing.startDelay = 0.5;
433 timing.startDelay = 0.3;
  /packages/apps/Contacts/src/com/android/contacts/detail/
CarouselTab.java 71 public void fadeInLabelViewAnimator(int startDelay, boolean fadeBackground) {
75 labelAnimator.setStartDelay(startDelay);
82 backgroundAnimator.setStartDelay(startDelay);
  /frameworks/base/core/tests/coretests/src/android/animation/
AutoCancelTest.java 42 ObjectAnimator setupAnimator(long startDelay, String... properties) {
54 returnVal.setStartDelay(startDelay);
59 private void setupAnimators(long startDelay, boolean startLater, final FutureWaiter future)
62 final ObjectAnimator animX1 = setupAnimator(startDelay, "x");
63 final ObjectAnimator animY1 = setupAnimator(startDelay, "y");
64 final ObjectAnimator animXY1 = setupAnimator(startDelay, "x", "y");
65 final ObjectAnimator animXZ1 = setupAnimator(startDelay, "x", "z");
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorTest.java 53 long startDelay = 1000;
54 mAnimator.setStartDelay(startDelay);
55 assertEquals(startDelay, mAnimator.getStartDelay());
80 long startDelay = 10000;
81 mAnimator.setStartDelay(startDelay);
ValueAnimatorTest.java 58 long startDelay = 10000;
59 mValueAnimator.setStartDelay(startDelay);
80 long startDelay = 1000;
81 mValueAnimator.setStartDelay(startDelay);
82 assertEquals(startDelay, mValueAnimator.getStartDelay());
  /frameworks/base/core/java/android/transition/
TransitionInflater.java 236 long startDelay = a.getInt(com.android.internal.R.styleable.Transition_startDelay, -1);
237 if (startDelay > 0) {
238 transition.setStartDelay(startDelay);
TransitionSet.java 159 public TransitionSet setStartDelay(long startDelay) {
160 return (TransitionSet) super.setStartDelay(startDelay);
Transition.java 187 * Sets the startDelay of this transition. By default, there is no delay
189 * the transition will have its own specified startDelay. If the delay of a
192 * @param startDelay The length of the delay, in milliseconds.
196 public Transition setStartDelay(long startDelay) {
197 mStartDelay = startDelay;
202 * Returns the startDelay set on this transition. If no startDelay has been set,
206 * @return The startDelay set on this transition, in milliseconds, if one has
295 * transition mechanism will apply any applicable duration, startDelay,
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentView.java 575 public boolean awakenScrollBars(int startDelay, boolean invalidate) {
576 return mContentViewCore.awakenScrollBars(startDelay, invalidate);
762 public boolean super_awakenScrollBars(int startDelay, boolean invalidate) {
763 return super.awakenScrollBars(startDelay, invalidate);
  /external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
AwTestContainerView.java 242 public boolean super_awakenScrollBars(int startDelay, boolean invalidate) {
243 return AwTestContainerView.super.awakenScrollBars(startDelay, invalidate);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherViewPropertyAnimator.java 172 public void setStartDelay(long startDelay) {
174 mStartDelay = startDelay;
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherViewPropertyAnimator.java 173 public void setStartDelay(long startDelay) {
175 mStartDelay = startDelay;
  /frameworks/base/core/java/android/animation/
Animator.java 44 * Starts this animation. If the animation has a nonzero startDelay, the animation will start
154 * @param startDelay The amount of the delay, in milliseconds
156 public abstract void setStartDelay(long startDelay);
193 * initial startDelay period and not yet ended).
202 * {@link #getStartDelay() startDelay} will return true for {@link #isStarted()} during the
AnimatorInflater.java 190 long startDelay = a.getInt(com.android.internal.R.styleable.Animator_startOffset, 0);
289 anim.setStartDelay(startDelay);
LayoutTransition.java 92 * and CHANGE_DISAPPEARING animations to null, and setting the startDelay of the
    [all...]
ValueAnimator.java 127 * Tracks whether a startDelay'd animation has begun playing through the startDelay.
132 * Tracks the time at which the animation began playing through its startDelay. This is
134 * active (which is when the startDelay expired and the animation was added to the active
159 * not there is a nonzero startDelay.
166 * startDelay and whether start() was called before end().
459 * frame of an animation. If there is a nonzero <code>startDelay</code>, the
601 // If the animation has a startDelay, place it on the delayed list
685 * @param startDelay The amount of the delay, in milliseconds
687 public void setStartDelay(long startDelay) {
    [all...]
AnimatorSet.java 107 * not there is a nonzero startDelay.
114 // Animator used for a nonzero startDelay
132 * an Animator with a {@link Animator#setStartDelay(long) startDelay} will not actually
134 * supplied to this constructor has a startDelay, none of the other animators will start
135 * until that first animator's startDelay has elapsed.
315 // If we're currently in the startDelay period, just cancel that animator and
406 * @param startDelay The amount of the delay, in milliseconds
409 public void setStartDelay(long startDelay) {
410 mStartDelay = startDelay;
    [all...]
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 70 * The startDelay of the underlying Animator object. By default, we don't set the startDelay
71 * on the Animator and just use its default startDelay. If the startDelay is ever set on this
72 * Animator, then we use the startDelay that it was set to.
77 * A flag indicating whether the startDelay has been set on this object. If not, we don't set
78 * the startDelay on the underlying Animator, but instead just use its default startDelay.
290 * Returns the current startDelay of property animations. If the startDelay was set on thi
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 222 float toY, int startDelay, int duration) {
227 translateAnimator.setStartDelay(startDelay);
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp 50 timing.startDelay = animationData->delay();
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
StaggeredGridView.java     [all...]

Completed in 1588 milliseconds

1 2