HomeSort by relevance Sort by last modified time
    Searched refs:startDelay (Results 26 - 50 of 92) sorted by null

12 3 4

  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherViewPropertyAnimator.java 172 public void setStartDelay(long startDelay) {
174 mStartDelay = startDelay;
  /packages/apps/PhoneCommon/src/com/android/phone/common/animation/
AnimUtils.java 171 int durationMs, int startDelay, AnimatorListenerAdapter listener,
188 animator.setStartDelay(startDelay);
  /frameworks/base/core/java/android/animation/
Animator.java 64 * Starts this animation. If the animation has a nonzero startDelay, the animation will start
174 * @param startDelay The amount of the delay, in milliseconds
176 public abstract void setStartDelay(long startDelay);
230 * initial startDelay period and not yet ended).
242 * nonzero {@link #getStartDelay() startDelay} will return true for {@link #isStarted()} during
451 // cases, like we don't support sequential, neither startDelay.
ValueAnimator.java 176 * not there is a nonzero startDelay.
183 * startDelay and whether start() was called before end().
544 * frame of an animation. If there is a nonzero <code>startDelay</code>, the
758 * @param startDelay The amount of the delay, in milliseconds
761 public void setStartDelay(long startDelay) {
763 if (startDelay < 0) {
765 startDelay = 0;
767 mStartDelay = startDelay;
    [all...]
LayoutTransition.java 97 * and CHANGE_DISAPPEARING animations to null, and setting the startDelay of the
    [all...]
AnimatorSet.java 104 * not there is a nonzero startDelay.
111 // Animator used for a nonzero startDelay
224 * an Animator with a {@link Animator#setStartDelay(long) startDelay} will not actually
226 * supplied to this constructor has a startDelay, none of the other animators will start
227 * until that first animator's startDelay has elapsed.
555 * @param startDelay The amount of the delay, in milliseconds
558 public void setStartDelay(long startDelay) {
560 if (startDelay < 0) {
562 startDelay = 0;
564 long delta = startDelay - mStartDelay
    [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.
297 * Returns the current startDelay of property animations. If the startDelay was set on thi
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
ValueAnimatorTest.java 109 long startDelay = 10000;
110 mValueAnimator.setStartDelay(startDelay);
134 long startDelay = 1000;
135 mValueAnimator.setStartDelay(startDelay);
136 assertEquals(startDelay, mValueAnimator.getStartDelay());
  /frameworks/base/core/tests/coretests/src/android/animation/
ValueAnimatorTests.java 184 final long startDelay = 150;
185 a1.setStartDelay(startDelay);
199 while (delayMs < startDelay) {
205 if (SystemClock.uptimeMillis() - startTime[0] < startDelay) {
212 Thread.sleep(startDelay);
    [all...]
AnimatorSetActivityTest.java 435 final long startDelay = 500;
438 s.setStartDelay(startDelay);
  /frameworks/support/transition/tests/src/android/support/transition/
TransitionTest.java 97 long startDelay = 12345;
98 assertThat(transition.setStartDelay(startDelay), is(sameInstance(transition)));
99 assertThat(transition.getStartDelay(), is(startDelay));
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
OnboardingFragment.java     [all...]
OnboardingSupportFragment.java     [all...]
  /frameworks/base/libs/hwui/
Animator.cpp 80 void BaseRenderNodeAnimator::setStartDelay(nsecs_t startDelay) {
82 mStartDelay = startDelay;
Animator.h 61 ANDROID_API nsecs_t startDelay() { return mStartDelay; }
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedVectorDrawable.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackAnimationHelper.java 666 int startDelay = taskIndexFromFront * DOUBLE_FRAME_OFFSET_MS;
672 AnimationProps taskAnimation = new AnimationProps(startDelay,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DividerView.java 407 stopDragging(position, target, duration, 0 /* startDelay*/, 0 /* endDelay */, interpolator);
412 stopDragging(position, target, duration, 0 /* startDelay*/, endDelay, interpolator);
415 public void stopDragging(int position, SnapTarget target, long duration, long startDelay,
418 flingTo(position, target, duration, startDelay, endDelay, interpolator);
563 private void flingTo(int position, SnapTarget target, long duration, long startDelay,
567 anim.setStartDelay(startDelay);
    [all...]
  /prebuilts/tools/common/m2/repository/com/nineoldandroids/library/2.4.0/
library-2.4.0.jar 
  /frameworks/base/core/java/android/transition/
Transition.java 275 long startDelay = a.getInt(R.styleable.Transition_startDelay, -1);
276 if (startDelay > 0) {
277 setStartDelay(startDelay);
347 * Sets the startDelay of this transition. By default, there is no delay
349 * the transition will have its own specified startDelay. If the delay of a
352 * @param startDelay The length of the delay, in milliseconds.
356 public Transition setStartDelay(long startDelay) {
357 mStartDelay = startDelay;
362 * Returns the startDelay set on this transition. If no startDelay has been set
    [all...]
  /frameworks/support/transition/src/android/support/transition/
Transition.java 280 long startDelay = TypedArrayUtils.getNamedInt(a, parser, "startDelay",
282 if (startDelay > 0) {
283 setStartDelay(startDelay);
356 * Sets the startDelay of this transition. By default, there is no delay
358 * the transition will have its own specified startDelay. If the delay of a
361 * @param startDelay The length of the delay, in milliseconds.
365 public Transition setStartDelay(long startDelay) {
366 mStartDelay = startDelay;
371 * Returns the startDelay set on this transition. If no startDelay has been set
    [all...]
  /frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
AnimatorInflaterCompat.java 346 long startDelay = TypedArrayUtils.getNamedInt(arrayAnimator, parser, "startOffset",
367 anim.setStartDelay(startDelay);
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/
AnswerFragment.java 827 float startDelay = .25f;
828 // Header progress is zero over positiveAdjustedProgress = [0, startDelay],
829 // linearly increases over (startDelay, 1] until reaching 1 when positiveAdjustedProgress = 1
830 float headerProgress = Math.max(0, (Math.abs(answerProgress) - 1) / (1 - startDelay) + 1);
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
DotsPageIndicator.java 634 private ValueAnimator createJoiningAnimator(final int leftJoiningDot, final long startDelay) {
644 joining.setStartDelay(startDelay);
    [all...]
  /prebuilts/sdk/current/support/graphics/drawable/
android-support-animatedvectordrawable.jar 

Completed in 9555 milliseconds

12 3 4