/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 | 154 long startDelay = a.getInt(R.styleable.lbSlide_android_startDelay, -1); 155 if (startDelay > 0) { 156 setStartDelay(startDelay);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
AnimationProps.java | 84 * Creates an animation with a default {@param startDelay}, {@param duration} and 87 public AnimationProps(int startDelay, int duration, Interpolator interpolator) { 88 this(startDelay, duration, interpolator, null); 92 * Creates an animation with a default {@param startDelay}, {@param duration} and 95 public AnimationProps(int startDelay, int duration, Interpolator interpolator, 97 setStartDelay(ALL, startDelay); 130 public AnimationProps setStartDelay(@PropType int propertyType, int startDelay) { 134 mPropStartDelay.append(propertyType, startDelay); 143 long startDelay = mPropStartDelay.get(propertyType, -1); 144 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/support/v17/leanback/src/android/support/v17/leanback/transition/ |
TransitionHelper.java | 119 void setChangeBoundsStartDelay(Object changeBounds, View view, int startDelay); 121 void setChangeBoundsStartDelay(Object changeBounds, int viewId, int startDelay); 124 int startDelay); 126 void setChangeBoundsDefaultStartDelay(Object changeBounds, int startDelay); 150 void setStartDelay(Object transition, long startDelay); 302 public void setChangeBoundsStartDelay(Object changeBounds, View view, int startDelay) { 306 public void setChangeBoundsStartDelay(Object changeBounds, int viewId, int startDelay) { 311 int startDelay) { 315 public void setChangeBoundsDefaultStartDelay(Object changeBounds, int startDelay) { 352 public void setStartDelay(Object transition, long startDelay) { [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/ |
ExpandedAlarmViewHolder.java | 382 long startDelay = 0L; 385 deleteAnimation.setStartDelay(startDelay); 387 startDelay += delayIncrement; 388 dismissAnimation.setStartDelay(startDelay); 390 hairLineAnimation.setStartDelay(startDelay); 391 startDelay += delayIncrement; 392 editLabelAnimation.setStartDelay(startDelay); 393 startDelay += delayIncrement; 394 vibrateAnimation.setStartDelay(startDelay); 395 ringtoneAnimation.setStartDelay(startDelay); [all...] |
/frameworks/base/libs/hwui/ |
PropertyValuesAnimatorSet.cpp | 26 Interpolator* interpolator, nsecs_t startDelay, nsecs_t duration, int repeatCount, 30 interpolator, startDelay, duration, repeatCount, repeatMode); 131 nsecs_t startDelay, nsecs_t duration, int repeatCount, 133 : mPropertyValuesHolder(holder), mInterpolator(interpolator), mStartDelay(startDelay),
|
PropertyValuesAnimatorSet.h | 28 PropertyAnimator(PropertyValuesHolder* holder, Interpolator* interpolator, nsecs_t startDelay,
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
BackgroundDeviceAction.java | 59 * @param startDelay the delay to wait after the device becomes online 62 IShellOutputReceiver receiver, int startDelay) { 68 mLogStartDelay = startDelay;
|
/cts/tests/tests/animation/src/android/animation/cts/ |
AnimatorTest.java | 76 long startDelay = 1000; 77 mAnimator.setStartDelay(startDelay); 78 assertEquals(startDelay, mAnimator.getStartDelay()); 108 long startDelay = 10000; 109 mAnimator.setStartDelay(startDelay);
|
/frameworks/base/core/java/android/view/ |
RenderNodeAnimator.java | 102 // set this to false so that the renderthread handles the startdelay instead 308 public void setStartDelay(long startDelay) { 310 if (startDelay < 0) { 311 throw new IllegalArgumentException("startDelay must be positive; " + startDelay); 313 mUnscaledStartDelay = startDelay; 314 mStartDelay = (long) (ValueAnimator.getDurationScale() * startDelay); 512 private static native void nSetStartDelay(long nativePtr, long startDelay);
|
ViewPropertyAnimatorRT.java | 69 long startDelay = parent.getStartDelay(); 85 animator.setStartDelay(startDelay);
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
PasswordTextView.java | 286 long startDelay = delayIndex * delayPerElement; 287 startDelay = Math.min(startDelay, RESET_MAX_DELAY); 290 charState.startRemoveAnimation(startDelay, maxDelay); 465 void startRemoveAnimation(long startDelay, long widthDelay) { 473 startDotDisappearAnimation(startDelay); 476 startTextDisappearAnimation(startDelay); 547 private void startTextDisappearAnimation(long startDelay) { 554 textAnimator.setStartDelay(startDelay); 559 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);
|
/frameworks/support/transition/src/android/support/transition/ |
TransitionSet.java | 206 public TransitionSet setStartDelay(long startDelay) { 207 return (TransitionSet) super.setStartDelay(startDelay); 411 long startDelay = getStartDelay(); 417 if (startDelay > 0 && (mPlayTogether || i == 0)) { 420 childTransition.setStartDelay(startDelay + childStartDelay); 422 childTransition.setStartDelay(startDelay);
|
Styleable.java | 73 android.R.attr.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 | 205 long startDelay) { 210 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 | 87 jlong interpolatorPtr, jlong startDelay, jlong duration, jint repeatCount, 93 set->addPropertyAnimator(holder, interpolator, startDelay, duration, repeatCount, mode);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/ |
AnimatedVectorDrawable_Delegate.java | 66 long nativeInterpolator, long startDelay, long duration, int repeatCount, 77 animator.setStartDelay(startDelay);
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
EditorAnimator.java | 204 float toY, int startDelay, int duration) { 209 translateAnimator.setStartDelay(startDelay);
|
/packages/apps/Dialer/java/com/android/dialer/animation/ |
AnimUtils.java | 188 int startDelay, 207 animator.setStartDelay(startDelay);
|