Searched defs:getDelay (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DDelayed.java15 * its {@code getDelay} method.
30 long getDelay(TimeUnit unit); method in interface:Delayed
H A DScheduledThreadPoolExecutor.java211 public long getDelay(TimeUnit unit) { method in class:ScheduledThreadPoolExecutor.ScheduledFutureTask
230 long diff = getDelay(NANOSECONDS) - other.getDelay(NANOSECONDS);
513 long headDelay = head.getDelay(NANOSECONDS);
1076 return (first == null || first.getDelay(NANOSECONDS) > 0)
1093 long delay = first.getDelay(NANOSECONDS);
1132 long delay = first.getDelay(NANOSECONDS);
1184 return (first == null || first.getDelay(NANOSECONDS) > 0) ?
/libcore/jsr166-tests/src/test/java/jsr166/
H A DDelayQueueTest.java83 public long getDelay(TimeUnit ignore) { method in class:DelayQueueTest.PDelay
121 public long getDelay(TimeUnit unit) { method in class:DelayQueueTest.NanoDelay
H A DScheduledExecutorSubclassTest.java61 public long getDelay(TimeUnit unit) { return task.getDelay(unit); } method in class:ScheduledExecutorSubclassTest.CustomTask

Completed in 433 milliseconds