/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
ProgressiveDownloadInformationBox.java | 56 long initialDelay; 58 public Entry(long rate, long initialDelay) { 60 this.initialDelay = initialDelay; 72 return initialDelay; 75 public void setInitialDelay(long initialDelay) { 76 this.initialDelay = initialDelay; 83 ", initialDelay=" + initialDelay [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
ScheduledExecutorService.java | 104 * {@code initialDelay}, then {@code initialDelay + period}, then 105 * {@code initialDelay + 2 * period}, and so on. 126 * @param initialDelay the time to delay first execution 128 * @param unit the time unit of the initialDelay and period parameters 140 long initialDelay, 165 * @param initialDelay the time to delay first execution 168 * @param unit the time unit of the initialDelay and delay parameters 180 long initialDelay,
|
Executors.java | 657 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { 658 return e.scheduleAtFixedRate(command, initialDelay, period, unit); 660 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { 661 return e.scheduleWithFixedDelay(command, initialDelay, delay, unit);
|
ScheduledThreadPoolExecutor.java | 560 long initialDelay, 570 triggerTime(initialDelay, unit), 585 long initialDelay, 595 triggerTime(initialDelay, unit), [all...] |
/external/guava/guava/src/com/google/common/util/concurrent/ |
WrappingScheduledExecutorService.java | 52 Runnable command, long initialDelay, long period, TimeUnit unit) { 53 return delegate.scheduleAtFixedRate(wrapTask(command), initialDelay, period, unit); 58 Runnable command, long initialDelay, long delay, TimeUnit unit) { 59 return delegate.scheduleWithFixedDelay(wrapTask(command), initialDelay, delay, unit);
|
ListeningScheduledExecutorService.java | 51 Runnable command, long initialDelay, long period, TimeUnit unit); 56 Runnable command, long initialDelay, long delay, TimeUnit unit);
|
AbstractScheduledService.java | 116 * @param initialDelay the time to delay first execution 119 * @param unit the time unit of the initialDelay and delay parameters 121 public static Scheduler newFixedDelaySchedule(final long initialDelay, final long delay, 127 return executor.scheduleWithFixedDelay(task, initialDelay, delay, unit); 136 * @param initialDelay the time to delay first execution 138 * @param unit the time unit of the initialDelay and period parameters 140 public static Scheduler newFixedRateSchedule(final long initialDelay, final long period, 146 return executor.scheduleAtFixedRate(task, initialDelay, period, unit);
|
MoreExecutors.java | 583 Runnable command, long initialDelay, long period, TimeUnit unit) { 587 delegate.scheduleAtFixedRate(task, initialDelay, period, unit); 593 Runnable command, long initialDelay, long delay, TimeUnit unit) { 597 delegate.scheduleWithFixedDelay(task, initialDelay, delay, unit); [all...] |
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
AbstractScheduledServiceTest.java | 53 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, 55 return future = super.scheduleWithFixedDelay(command, initialDelay, delay, unit); 282 private static final int initialDelay = 10; 290 private void assertSingleCallWithCorrectParameters(Runnable command, long initialDelay, 294 assertEquals(SchedulerTest.initialDelay, initialDelay); 301 Scheduler schedule = Scheduler.newFixedRateSchedule(initialDelay, delay, unit); 304 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, 306 assertSingleCallWithCorrectParameters(command, initialDelay, delay, unit); 314 Scheduler schedule = Scheduler.newFixedDelaySchedule(initialDelay, delay, unit) [all...] |
WrappingScheduledExecutorServiceTest.java | 118 void assertLastMethodCalled(String method, long initialDelay, long delay, TimeUnit unit) { 120 assertEquals(initialDelay, lastInitialDelay); 143 Runnable command, long initialDelay, long period, TimeUnit unit) { 146 lastInitialDelay = initialDelay; 153 Runnable command, long initialDelay, long delay, TimeUnit unit) { 156 lastInitialDelay = initialDelay;
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/ |
ProgressBarManager.java | 112 * @param initialDelay millisecond representing the initial delay. 114 public void setInitialDelay(long initialDelay) { 115 this.mInitialDelay = initialDelay;
|
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/ |
TestingExecutors.java | 141 Runnable command, long initialDelay, long period, TimeUnit unit) { 146 Runnable command, long initialDelay, long delay, TimeUnit unit) {
|
SameThreadScheduledExecutorService.java | 186 long initialDelay, long period, TimeUnit unit) { 193 long initialDelay, long delay, TimeUnit unit) {
|
/cts/tests/leanbackjank/app/src/android/leanbackjank/app/ui/ |
MainFragment.java | 105 int initialDelay = intent.getExtras().getInt(IntentKeys.SCROLL_DELAY); 109 startAutoScrollTimer(initialDelay, scrollInterval, scrollCount); 216 private void startAutoScrollTimer(int initialDelay, int interval, int count) { 222 mAutoScrollTimer.schedule(new UpdateAutoScrollTask(), initialDelay, interval);
|
/external/replicaisland/src/com/replica/replicaisland/ |
FadeDrawableComponent.java | 134 public void setupFade(float startOpacity, float endOpacity, float duration, int loopType, int function, float initialDelay) { 140 mInitialDelay = initialDelay;
|
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/ |
TestScheduledExecutorService.java | 128 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, 134 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay,
|
/packages/apps/TV/src/com/android/tv/guide/ |
ProgramGuide.java | 672 private void startCurrentTimeIndicator(long initialDelay) { 673 mHandler.postDelayed(mUpdateTimeIndicator, initialDelay); [all...] |
/prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.0.CR3/ |
netty-common-4.1.0.CR3.jar | |
/prebuilts/misc/common/ub-uiautomator/ |
ub-uiautomator.jar | |
/prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/ |
backport-util-concurrent-3.1.jar | |
/external/guice/lib/build/ |
guava-testlib-16.0.1.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.2/ |
kotlin-stdlib-1.0.2.jar | |
/prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit/2.14/ |
htmlunit-2.14.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/0.12.613/ |
kotlin-stdlib-0.12.613.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/0.13.1513/ |
kotlin-stdlib-0.13.1513.jar | |