| /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/ |
| D | RetryManagerTest.java | 156 long delay = rm.getDelayForNextApn(false); in testRetryManagerEmpty() local 184 long delay = rm.getDelayForNextApn(false); in testRetryManagerOneApnNoRetry() local 206 long delay = rm.getDelayForNextApn(false); in testRetryManagerOneApnTwoRetries() local 261 long delay = rm.getDelayForNextApn(false); in testRetryManagerTwoApnsOneRetry() local 299 long delay = rm.getDelayForNextApn(false); in testRetryManagerTwoApnsTwoRetries() local 347 long delay = rm.getDelayForNextApn(false); in testRetryManagerTwoMmsApnsTwoRetries() local 395 long delay = rm.getDelayForNextApn(false); in testRetryManagerApnPermanentFailed() local 430 long delay = rm.getDelayForNextApn(false); in testRetryManagerApnPermanentFailedWithTwoApns() local 489 long delay = rm.getDelayForNextApn(false); in testRetryManagerApnPermanentFailedWithThreeApns() local 546 long delay = rm.getDelayForNextApn(false); in testRetryManagerApnPermanentFailedAll() local [all …]
|
| /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
| D | ExponentialBackoffTest.java | 74 long delay = mBackoffUnderTest.getCurrentDelay(); in testStartBackoff() local 96 long delay = mBackoffUnderTest.getCurrentDelay(); in testDelayIncreasedExponentially() local 111 long delay = mBackoffUnderTest.getCurrentDelay(); in testDelayShouldNotExceededTheMaximumLimit() local
|
| D | TestExecutorService.java | 183 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule() 196 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule() 208 long delay, TimeUnit unit) { in scheduleWithFixedDelay() 218 private long getNextExecutionTime(long delay, TimeUnit unit) { in getNextExecutionTime()
|
| /frameworks/base/core/tests/coretests/src/android/animation/ |
| D | ValueAnimatorTests.java | 82 final long delay = 200; in testStartDelay() local 84 assertEquals(a.getStartDelay(), delay); in testStartDelay() local 171 long delay = Math.max(a1.getTotalDuration(), a2.getTotalDuration()) + TOLERANCE; in testListenerCallbacks() local 233 long delay = Math.max(a1.getTotalDuration(), a2.getTotalDuration()) * 2; in testIsStarted() local
|
| /frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/ |
| D | AppearAnimationUtils.java | 89 long delay = columns[0]; in startAnimations() local 117 long delay = columns[col]; in startAnimations() local 136 long delay = calculateDelay(row, 0); in getDelays() local 156 long delay = calculateDelay(row, col); in getDelays() local 181 public void createAnimation(final View view, long delay, long duration, float translationY, in createAnimation() 225 public static void startTranslationYAnimation(View view, long delay, long duration, in startTranslationYAnimation() 233 public static void startTranslationYAnimation(View view, long delay, long duration, in startTranslationYAnimation()
|
| D | AppearAnimationCreator.java | 26 void createAnimation(T animatedObject, long delay, long duration, in createAnimation()
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
| D | NotificationDozeHelper.java | 37 public void fadeGrayscale(final ImageView target, final boolean dark, long delay) { in fadeGrayscale() 68 boolean dark, long delay, Animator.AnimatorListener listener) { in startIntensityAnimation() 83 boolean animate, long delay, View view) { in setDozing()
|
| D | NotificationIconDozeHelper.java | 47 public void setImageDark(ImageView target, boolean dark, boolean fade, long delay, in setImageDark() 66 private void fadeImageColorFilter(final ImageView target, boolean dark, long delay) { in fadeImageColorFilter() 72 private void fadeImageAlpha(final ImageView target, boolean dark, long delay) { in fadeImageAlpha()
|
| /frameworks/base/services/tests/servicestests/src/com/android/server/people/data/ |
| D | MockScheduledExecutorService.java | 84 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule() 92 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule() 104 long delay, TimeUnit unit) { in scheduleWithFixedDelay() 195 MockScheduledFuture(Runnable runnable, long delay, TimeUnit timeUnit) { in MockScheduledFuture() 199 MockScheduledFuture(Callable<V> callable, long delay, TimeUnit timeUnit) { in MockScheduledFuture() 203 private MockScheduledFuture(Runnable runnable, Callable<V> callable, long delay) { in MockScheduledFuture()
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
| D | MediaHeaderView.java | 35 public long performRemoveAnimation(long duration, long delay, float translationDirection, in performRemoveAnimation() 42 public void performAddAnimation(long delay, long duration, boolean isHeadsUpAppear) { in performAddAnimation()
|
| D | AnimationProperties.java | 33 public long delay; field in AnimationProperties
|
| /frameworks/base/core/java/android/view/animation/ |
| D | LayoutAnimationController.java | 144 public LayoutAnimationController(Animation animation, float delay) { in LayoutAnimationController() 283 public void setDelay(float delay) { in setDelay() 323 final long delay = getDelayForView(view) + mAnimation.getStartOffset(); in getAnimationForView() local 378 final float delay = mDelay * mAnimation.getDuration(); in getDelayForView() local
|
| /frameworks/base/core/java/android/animation/ |
| D | AnimationHandler.java | 93 public void addAnimationFrameCallback(final AnimationFrameCallback callback, long delay) { in addAnimationFrameCallback() 197 public static void setFrameDelay(long delay) { in setFrameDelay() 267 public void setFrameDelay(long delay) { in setFrameDelay() 315 void setFrameDelay(long delay); in setFrameDelay()
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/util/concurrency/ |
| D | RepeatableExecutorImpl.java | 38 public Runnable executeRepeatedly(Runnable r, long initDelay, long delay, TimeUnit unit) { in executeRepeatedly() 51 ExecutionToken(Runnable r, long delay, TimeUnit unit) { in ExecutionToken()
|
| D | RepeatableExecutor.java | 53 Runnable executeRepeatedly(Runnable r, long initialDelay, long delay, TimeUnit unit); in executeRepeatedly()
|
| /frameworks/base/core/java/android/view/ |
| D | HandlerActionQueue.java | 113 final long delay; field in HandlerActionQueue.HandlerAction 115 public HandlerAction(Runnable action, long delay) { in HandlerAction()
|
| /frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
| D | AutoclickController.java | 209 int delay = Settings.Secure.getIntForUser( in onChange() local 258 public ClickScheduler(Handler handler, int delay) { in ClickScheduler() 321 public void updateDelay(int delay) { in updateDelay() 330 private void rescheduleClick(int delay) { in rescheduleClick()
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/charging/ |
| D | WirelessChargingAnimation.java | 81 public void show(long delay) { in show() 162 public void show(long delay) { in show() 164 mHandler.sendMessageDelayed(Message.obtain(mHandler, SHOW), delay); in show() local
|
| /frameworks/native/services/vibratorservice/include/vibratorservice/ |
| D | VibratorCallbackScheduler.h | 35 DelayedCallback(std::function<void()> callback, std::chrono::milliseconds delay) in DelayedCallback()
|
| /frameworks/base/services/tests/servicestests/src/com/android/server/apphibernation/ |
| D | HibernationStateDiskStoreTest.java | 143 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule() 149 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule() 161 long delay, TimeUnit unit) { in scheduleWithFixedDelay()
|
| /frameworks/base/services/robotests/src/com/android/server/testing/shadows/ |
| D | ShadowKeyValueBackupJob.java | 37 protected static void schedule(int userId, Context ctx, long delay, in schedule()
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
| D | CrossFadeHelper.java | 39 public static void fadeOut(final View view, long duration, int delay, in fadeOut() 116 public static void fadeIn(final View view, long duration, int delay) { in fadeIn()
|
| /frameworks/native/libs/renderengine/skia/debug/ |
| D | CaptureTimer.cpp | 31 void CaptureTimer::setTimeout(TimeoutCallback function, std::chrono::milliseconds delay) { in setTimeout()
|
| /frameworks/av/media/libeffects/lvm/lib/Common/src/ |
| D | DelayMix_16x16.cpp | 25 LVM_FLOAT* delay, /* Delay buffer */ in DelayMix_Float()
|
| /frameworks/base/core/java/com/android/internal/graphics/ |
| D | SfVsyncFrameCallbackProvider.java | 60 public void setFrameDelay(long delay) { in setFrameDelay()
|