Searched refs:PostedRunnable (Results 1 – 1 of 1) sorted by relevance
9 private List<PostedRunnable> postedRunnables = new ArrayList<PostedRunnable>();32 postedRunnables.add(new PostedRunnable(runnable, currentTime + delayMillis)); in postDelayed()45 postedRunnables.add(0, new PostedRunnable(runnable, currentTime)); in postAtFrontOfQueue()52 ListIterator<PostedRunnable> iterator = postedRunnables.listIterator(); in remove()54 PostedRunnable next = iterator.next(); in remove()102 PostedRunnable postedRunnable = postedRunnables.remove(0); in runOneTask()114 PostedRunnable postedRunnable = postedRunnables.remove(0); in runTasks()139 class PostedRunnable implements Comparable<PostedRunnable> { class in Scheduler143 PostedRunnable(Runnable runnable, long scheduledTime) { in PostedRunnable() method in Scheduler.PostedRunnable149 public int compareTo(PostedRunnable postedRunnable) { in compareTo()