Home
last modified time | relevance | path

Searched defs:delay (Results 1 – 25 of 181) sorted by relevance

12345678

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
DRetryManagerTest.java156 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/
DExponentialBackoffTest.java74 long delay = mBackoffUnderTest.getCurrentDelay(); in testStartBackoff() local
96 long delay = mBackoffUnderTest.getCurrentDelay(); in testDelayIncreasedExponentially() local
111 long delay = mBackoffUnderTest.getCurrentDelay(); in testDelayShouldNotExceededTheMaximumLimit() local
DTestExecutorService.java183 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/
DValueAnimatorTests.java82 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/
DAppearAnimationUtils.java89 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()
DAppearAnimationCreator.java26 void createAnimation(T animatedObject, long delay, long duration, in createAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationDozeHelper.java37 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()
DNotificationIconDozeHelper.java47 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/
DMockScheduledExecutorService.java84 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/
DMediaHeaderView.java35 public long performRemoveAnimation(long duration, long delay, float translationDirection, in performRemoveAnimation()
42 public void performAddAnimation(long delay, long duration, boolean isHeadsUpAppear) { in performAddAnimation()
DAnimationProperties.java33 public long delay; field in AnimationProperties
/frameworks/base/core/java/android/view/animation/
DLayoutAnimationController.java144 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/
DAnimationHandler.java93 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/
DRepeatableExecutorImpl.java38 public Runnable executeRepeatedly(Runnable r, long initDelay, long delay, TimeUnit unit) { in executeRepeatedly()
51 ExecutionToken(Runnable r, long delay, TimeUnit unit) { in ExecutionToken()
DRepeatableExecutor.java53 Runnable executeRepeatedly(Runnable r, long initialDelay, long delay, TimeUnit unit); in executeRepeatedly()
/frameworks/base/core/java/android/view/
DHandlerActionQueue.java113 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/
DAutoclickController.java209 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/
DWirelessChargingAnimation.java81 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/
DVibratorCallbackScheduler.h35 DelayedCallback(std::function<void()> callback, std::chrono::milliseconds delay) in DelayedCallback()
/frameworks/base/services/tests/servicestests/src/com/android/server/apphibernation/
DHibernationStateDiskStoreTest.java143 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/
DShadowKeyValueBackupJob.java37 protected static void schedule(int userId, Context ctx, long delay, in schedule()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DCrossFadeHelper.java39 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/
DCaptureTimer.cpp31 void CaptureTimer::setTimeout(TimeoutCallback function, std::chrono::milliseconds delay) { in setTimeout()
/frameworks/av/media/libeffects/lvm/lib/Common/src/
DDelayMix_16x16.cpp25 LVM_FLOAT* delay, /* Delay buffer */ in DelayMix_Float()
/frameworks/base/core/java/com/android/internal/graphics/
DSfVsyncFrameCallbackProvider.java60 public void setFrameDelay(long delay) { in setFrameDelay()

12345678