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

1 2 3

  /frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
TransitionHelperKitkat.java 117 public void setStartDelay(View view, int startDelay) {
118 mViewStartDelays.put(view, startDelay);
121 public void setStartDelay(int viewId, int startDelay) {
122 mIdStartDelays.put(viewId, startDelay);
125 public void setStartDelay(String className, int startDelay) {
126 mClassStartDelays.put(className, startDelay);
129 public void setDefaultStartDelay(int startDelay) {
130 mDefaultStartDelay = startDelay;
140 static void setChangeBoundsStartDelay(Object changeBounds, int viewId, int startDelay) {
141 ((CustomChangeBounds) changeBounds).setStartDelay(viewId, startDelay);
    [all...]
SlideKitkat.java 152 long startDelay = a.getInt(R.styleable.lbSlide_android_startDelay, -1);
153 if (startDelay > 0) {
154 setStartDelay(startDelay);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
AnimationProps.java 85 * Creates an animation with a default {@param startDelay}, {@param duration} and
88 public AnimationProps(int startDelay, int duration, Interpolator interpolator) {
89 this(startDelay, duration, interpolator, null);
93 * Creates an animation with a default {@param startDelay}, {@param duration} and
96 public AnimationProps(int startDelay, int duration, Interpolator interpolator,
98 setStartDelay(ALL, startDelay);
135 public AnimationProps setStartDelay(@PropType int propertyType, int startDelay) {
139 mPropStartDelay.append(propertyType, startDelay);
159 long startDelay = mPropStartDelay.get(propertyType, -1);
160 if (startDelay != -1)
    [all...]
  /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");
  /frameworks/base/libs/hwui/
PropertyValuesAnimatorSet.cpp 26 Interpolator* interpolator, nsecs_t startDelay,
30 interpolator, startDelay, duration, repeatCount);
110 nsecs_t startDelay, nsecs_t duration, int repeatCount)
111 : mPropertyValuesHolder(holder), mInterpolator(interpolator), mStartDelay(startDelay),
PropertyValuesAnimatorSet.h 28 PropertyAnimator(PropertyValuesHolder* holder, Interpolator* interpolator, nsecs_t startDelay,
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
TransitionHelper.java 110 public void setChangeBoundsStartDelay(Object changeBounds, View view, int startDelay);
112 public void setChangeBoundsStartDelay(Object changeBounds, int viewId, int startDelay);
115 int startDelay);
117 public void setChangeBoundsDefaultStartDelay(Object changeBounds, int startDelay);
141 public void setStartDelay(Object transition, long startDelay);
267 public void setChangeBoundsStartDelay(Object changeBounds, View view, int startDelay) {
271 public void setChangeBoundsStartDelay(Object changeBounds, int viewId, int startDelay) {
276 int startDelay) {
280 public void setChangeBoundsDefaultStartDelay(Object changeBounds, int startDelay) {
317 public void setStartDelay(Object transition, long startDelay) {
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorTest.java 54 long startDelay = 1000;
55 mAnimator.setStartDelay(startDelay);
56 assertEquals(startDelay, mAnimator.getStartDelay());
82 long startDelay = 10000;
83 mAnimator.setStartDelay(startDelay);
ValueAnimatorTest.java 64 long startDelay = 10000;
65 mValueAnimator.setStartDelay(startDelay);
86 long startDelay = 1000;
87 mValueAnimator.setStartDelay(startDelay);
88 assertEquals(startDelay, mValueAnimator.getStartDelay());
  /frameworks/base/core/java/android/view/
RenderNodeAnimator.java 102 // set this to false so that the renderthread handles the startdelay instead
309 public void setStartDelay(long startDelay) {
311 if (startDelay < 0) {
312 throw new IllegalArgumentException("startDelay must be positive; " + startDelay);
314 mUnscaledStartDelay = startDelay;
315 mStartDelay = (long) (ValueAnimator.getDurationScale() * startDelay);
513 private static native void nSetStartDelay(long nativePtr, long startDelay);
ViewPropertyAnimatorRT.java 69 long startDelay = parent.getStartDelay();
85 animator.setStartDelay(startDelay);
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PasswordTextView.java 287 long startDelay = delayIndex * delayPerElement;
288 startDelay = Math.min(startDelay, RESET_MAX_DELAY);
291 charState.startRemoveAnimation(startDelay, maxDelay);
495 void startRemoveAnimation(long startDelay, long widthDelay) {
503 startDotDisappearAnimation(startDelay);
506 startTextDisappearAnimation(startDelay);
577 private void startTextDisappearAnimation(long startDelay) {
584 textAnimator.setStartDelay(startDelay);
589 private void startDotDisappearAnimation(long startDelay) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
AssistOrbView.java 152 long startDelay, Interpolator interpolator) {
164 mCircleAnimator.setStartDelay(startDelay);
185 * @param startDelay The desired start delay if animated.
191 private void animateOffset(float offset, long duration, long startDelay,
206 mOffsetAnimator.setStartDelay(startDelay);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
TouchAnimator.java 45 float startDelay, float endDelay, Interpolator interpolator, Listener listener) {
48 mStartDelay = startDelay;
175 public Builder setStartDelay(float startDelay) {
176 mStartDelay = startDelay;
  /frameworks/base/core/java/android/transition/
TransitionSet.java 198 public TransitionSet setStartDelay(long startDelay) {
199 return (TransitionSet) super.setStartDelay(startDelay);
382 long startDelay = getStartDelay();
388 if (startDelay > 0 && (mPlayTogether || i == 0)) {
391 childTransition.setStartDelay(startDelay + childStartDelay);
393 childTransition.setStartDelay(startDelay);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShadowCardStack.java 38 public AnimatorSet createSet(ArrayList<Animator> items, long startDelay) {
41 set.setStartDelay(startDelay);
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
SetupAnimationHelper.java 202 long startDelay) {
207 animator.setStartDelay(startDelay);
  /frameworks/base/core/jni/
android_view_RenderNodeAnimator.cpp 158 static void setStartDelay(JNIEnv* env, jobject clazz, jlong animatorPtr, jlong startDelay) {
159 LOG_ALWAYS_FATAL_IF(startDelay < 0, "Start delay cannot be negative");
161 animator->setStartDelay(startDelay);
android_graphics_drawable_AnimatedVectorDrawable.cpp 86 jlong interpolatorPtr, jlong startDelay, jlong duration, jint repeatCount) {
90 set->addPropertyAnimator(holder, interpolator, startDelay, duration, repeatCount);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
AnimatedVectorDrawable_Delegate.java 62 long nativeInterpolator, long startDelay, long duration, int repeatCount) {
72 animator.setStartDelay(startDelay);
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 203 float toY, int startDelay, int duration) {
208 translateAnimator.setStartDelay(startDelay);
  /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;
  /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.

Completed in 519 milliseconds

1 2 3