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

  /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/animation/
Animator.java 33 * Starts this animation. If the animation has a nonzero startDelay, the animation will start
83 * @param startDelay The amount of the delay, in milliseconds
85 public abstract void setStartDelay(long startDelay);
122 * initial startDelay period and not yet ended).
131 * {@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 113 * Tracks whether a startDelay'd animation has begun playing through the startDelay.
118 * Tracks the time at which the animation began playing through its startDelay. This is
120 * active (which is when the startDelay expired and the animation was added to the active
145 * not there is a nonzero startDelay.
152 * startDelay and whether start() was called before end().
445 * frame of an animation. If there is a nonzero <code>startDelay</code>, the
587 // If the animation has a startDelay, place it on the delayed list
671 * @param startDelay The amount of the delay, in milliseconds
673 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...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherViewPropertyAnimator.java 173 public void setStartDelay(long startDelay) {
175 mStartDelay = startDelay;
Launcher.java     [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.
276 * Returns the current startDelay of property animations. If the startDelay was set on thi
    [all...]
View.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 222 float toY, int startDelay, int duration) {
227 translateAnimator.setStartDelay(startDelay);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsPanelView.java 575 final int startDelay = Math.max(0, Math.min(
585 .alpha(1f).setStartDelay(startDelay)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java     [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/sdk/17/
android.jar 

Completed in 339 milliseconds