Searched defs:initialDelay (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSTimingData.h30 static double initialDelay() { return 0; } function in class:blink::CSSTimingData
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DProgressiveDownloadInformationBox.java56 long initialDelay; field in class:ProgressiveDownloadInformationBox.Entry
58 public Entry(long rate, long initialDelay) { argument
60 this.initialDelay = initialDelay;
72 return initialDelay;
75 public void setInitialDelay(long initialDelay) { argument
76 this.initialDelay = initialDelay;
83 ", initialDelay=" + initialDelay
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DMoreExecutors.java467 Runnable command, long initialDelay, long period, TimeUnit unit) {
468 return delegate.scheduleAtFixedRate(command, initialDelay, period, unit);
473 Runnable command, long initialDelay, long delay, TimeUnit unit) {
475 command, initialDelay, delay, unit);
466 scheduleAtFixedRate( Runnable command, long initialDelay, long period, TimeUnit unit) argument
472 scheduleWithFixedDelay( Runnable command, long initialDelay, long delay, TimeUnit unit) argument
H A DAbstractScheduledService.java111 * @param initialDelay the time to delay first execution
114 * @param unit the time unit of the initialDelay and delay parameters
116 public static Scheduler newFixedDelaySchedule(final long initialDelay, final long delay, argument
122 return executor.scheduleWithFixedDelay(task, initialDelay, delay, unit);
131 * @param initialDelay the time to delay first execution
133 * @param unit the time unit of the initialDelay and period parameters
135 public static Scheduler newFixedRateSchedule(final long initialDelay, final long period, argument
141 return executor.scheduleAtFixedRate(task, initialDelay, period, unit);
/external/replicaisland/src/com/replica/replicaisland/
H A DFadeDrawableComponent.java134 public void setupFade(float startOpacity, float endOpacity, float duration, int loopType, int function, float initialDelay) { argument
140 mInitialDelay = initialDelay;
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAbstractScheduledServiceTest.java53 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay,
55 return future = super.scheduleWithFixedDelay(command, initialDelay, delay, unit);
234 private static final int initialDelay = 10; field in class:AbstractScheduledServiceTest.SchedulerTest
242 private void assertSingleCallWithCorrectParameters(Runnable command, long initialDelay, argument
246 assertEquals(SchedulerTest.initialDelay, initialDelay);
253 Scheduler schedule = Scheduler.newFixedRateSchedule(initialDelay, delay, unit);
256 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay,
258 assertSingleCallWithCorrectParameters(command, initialDelay, delay, unit);
266 Scheduler schedule = Scheduler.newFixedDelaySchedule(initialDelay, dela
[all...]
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 360 milliseconds