Searched defs:timeUnit (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/one/v2/autofocus/
H A DAETriggerResult.java107 public boolean get(long timeout, TimeUnit timeUnit) throws InterruptedException, argument
110 return mFutureResult.get(timeout, timeUnit);
H A DAFTriggerResult.java104 public boolean get(long timeout, TimeUnit timeUnit) throws InterruptedException, argument
107 return mFutureResult.get(timeout, timeUnit);
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DLooperExecutor.java78 public boolean awaitTermination(long l, TimeUnit timeUnit) throws InterruptedException { argument
/packages/apps/TV/src/com/android/tv/util/
H A DMainThreadExecutor.java83 public boolean awaitTermination(long l, TimeUnit timeUnit) throws InterruptedException { argument
H A DUtils.java727 * Floors time to the given {@code timeUnit}. For example, if time is 5:32:11 and timeUnit is
730 public static long floorTime(long timeMs, long timeUnit) { argument
731 return timeMs - (timeMs % timeUnit);
735 * Ceils time to the given {@code timeUnit}. For example, if time is 5:32:11 and timeUnit is
738 public static long ceilTime(long timeMs, long timeUnit) { argument
739 return timeMs + timeUnit - (timeMs % timeUnit);
/packages/apps/Contacts/src/com/android/contacts/util/concurrent/
H A DContactsExecutors.java180 private HandlerFuture(Handler handler, long delay, TimeUnit timeUnit, Callable<T> task) { argument
182 mDelayMillis = timeUnit.toMillis(delay);
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 319 milliseconds