/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/ |
H A 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 …]
|
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
H A D | TimerHandler.java | 87 final int delay) { in startKeyRepeatTimerOf() 93 obtainMessage(MSG_REPEAT_KEY, key.getCode(), repeatCount, tracker), delay); in startKeyRepeatTimerOf() local 110 public void startLongPressTimerOf(@Nonnull final PointerTracker tracker, final int delay) { in startLongPressTimerOf() 119 sendMessageDelayed(obtainMessage(messageId, tracker), delay); in startLongPressTimerOf() local 220 public void postDismissKeyPreview(@Nonnull final Key key, final long delay) { in postDismissKeyPreview() 221 sendMessageDelayed(obtainMessage(MSG_DISMISS_KEY_PREVIEW, key), delay); in postDismissKeyPreview() local 224 public void postDismissGestureFloatingPreviewText(final long delay) { in postDismissGestureFloatingPreviewText() 225 sendMessageDelayed(obtainMessage(MSG_DISMISS_GESTURE_FLOATING_PREVIEW_TEXT), delay); in postDismissGestureFloatingPreviewText() local
|
H A D | TimerProxy.java | 43 public void startKeyRepeatTimerOf(@Nonnull PointerTracker tracker, int repeatCount, int delay); in startKeyRepeatTimerOf() 52 public void startLongPressTimerOf(@Nonnull PointerTracker tracker, int delay); in startLongPressTimerOf() 111 int delay) {} in startKeyRepeatTimerOf() 113 public void startLongPressTimerOf(@Nonnull PointerTracker tracker, int delay) {} in startLongPressTimerOf()
|
/aosp12/frameworks/base/core/tests/coretests/src/android/animation/ |
H A 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
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
H A 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
|
H A 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()
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/util/concurrent/ |
H A D | ContactsExecutors.java | 111 public ScheduledFuture<?> schedule(final Runnable command, long delay, TimeUnit unit) { in schedule() 120 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule() 136 long delay, TimeUnit unit) { in scheduleWithFixedDelay() 180 private HandlerFuture(Handler handler, long delay, TimeUnit timeUnit, Callable<T> task) { in HandlerFuture() 231 public static HandlerFuture<Void> fromRunnable(Handler handler, long delay, TimeUnit unit, in fromRunnable()
|
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/ |
H A 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()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/ |
H A 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()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A 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()
|
H A 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()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | AnimationProperties.java | 33 public long delay; field in AnimationProperties
|
H A 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()
|
/aosp12/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/ |
H A D | TestScheduledExecutorService.java | 120 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule() 127 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule() 139 long delay, TimeUnit unit) { in scheduleWithFixedDelay() 185 final long delay; field in TestScheduledExecutorService.TestFuture 188 public TestFuture(Runnable runnable, long delay, TimeUnit unit) { in TestFuture()
|
H A D | TestTimer.java | 99 public void schedule(TimerTask task, long delay) { in schedule() 105 public void schedule(TimerTask task, long delay, long period) { in schedule() 115 public void scheduleAtFixedRate(TimerTask task, long delay, long period) { in scheduleAtFixedRate()
|
/aosp12/frameworks/base/core/java/android/view/animation/ |
H A 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
|
/aosp12/frameworks/base/core/java/android/animation/ |
H A 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()
|
/aosp12/system/bt/common/ |
H A D | time_util_unittest.cc | 70 struct timespec delay = {}; in TEST() local 91 struct timespec delay = {}; in TEST() local 132 struct timespec delay = {}; in TEST() local
|
/aosp12/art/test/1941-dispose-stress/src/art/ |
H A D | Test1941.java | 46 public static void LoopAllocFreeEnv(Semaphore sem, Semaphore delay) { in LoopAllocFreeEnv() 68 final Semaphore delay = new Semaphore(0); in run() local
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/util/concurrency/ |
H A 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()
|
/aosp12/system/bpf/libbpf_android/include/ |
H A D | libbpf_android.h | 38 for (int delay = 5;; delay *= 2) { in waitForProgsLoaded() local
|
/aosp12/art/test/1995-final-virtual-structural-multithread/src/art/ |
H A D | Test1995.java | 109 public MyThread(CountDownLatch delay, int id) { in MyThread() 143 public CountDownLatch delay; field in Test1995.MyThread
|
/aosp12/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
H A D | AutoclickController.java | 220 int delay = Settings.Secure.getIntForUser( in onChange() local 269 public ClickScheduler(Handler handler, int delay) { in ClickScheduler() 332 public void updateDelay(int delay) { in updateDelay() 341 private void rescheduleClick(int delay) { in rescheduleClick()
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | HandlerActionQueue.java | 113 final long delay; field in HandlerActionQueue.HandlerAction 115 public HandlerAction(Runnable action, long delay) { in HandlerAction()
|
/aosp12/art/test/2001-virtual-structural-multithread/src-art/art/ |
H A D | Test2001.java | 169 public MyThread(CountDownLatch delay, int id) { in MyThread() 205 public CountDownLatch delay; field in Test2001.MyThread
|