HomeSort by relevance Sort by last modified time
    Searched refs:Delayed (Results 1 - 25 of 53) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/java/util/concurrent/
Delayed.java 49 public interface Delayed extends Comparable<Delayed> {
ScheduledFuture.java 39 * A delayed result-bearing action that can be cancelled.
47 public interface ScheduledFuture<V> extends Delayed, Future<V> {
ScheduledThreadPoolExecutor.java 63 * <p>Delayed tasks execute no sooner than they are enabled, but
244 public int compareTo(Delayed other) {
313 * @param periodic true if this task periodic, false if delayed
322 * Main execution method for delayed or periodic tasks. If pool
518 * Returns the nanoTime-based trigger time of a delayed action.
525 * Returns the nanoTime-based trigger time of a delayed action.
540 Delayed head = (Delayed) super.getQueue().peek();
638 * {@code shutdownNow} will access the zero-delayed
716 * Sets the policy on whether to execute existing delayed
    [all...]
DelayQueue.java 54 * {@code Delayed} elements, in which an element can only be taken
56 * {@code Delayed} element whose delay expired furthest in the
76 public class DelayQueue<E extends Delayed> extends AbstractQueue<E>
114 * given collection of {@link Delayed} instances.
457 * allocated array of {@code Delayed}:
459 * <pre> {@code Delayed[] a = q.toArray(new Delayed[0]);}</pre>
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
TestingExecutors.java 30 import java.util.concurrent.Delayed;
161 @Override public int compareTo(Delayed other) {
SameThreadScheduledExecutorService.java 32 import java.util.concurrent.Delayed;
169 public int compareTo(Delayed other) {
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 40 import java.util.concurrent.Delayed;
51 protected static class OperationInfo implements Delayed{
91 public int compareTo(Delayed another) {
172 * Gets the last delayed operation. It is typically used for canceling.
  /packages/apps/Contacts/src/com/android/contacts/util/concurrent/
ContactsExecutors.java 18 import java.util.concurrent.Delayed;
202 public int compareTo(Delayed o) {
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestScheduledExecutorService.java 32 import java.util.concurrent.Delayed;
200 public int compareTo(Delayed arg0) {
  /libcore/jsr166-tests/src/test/java/jsr166/
DelayQueueTest.java 20 import java.util.concurrent.Delayed;
62 * A delayed implementation for testing.
66 static class PDelay implements Delayed {
74 public int compareTo(Delayed y) {
92 * Delayed implementation that actually delays
94 static class NanoDelay implements Delayed {
107 public int compareTo(Delayed y) {
694 * Delayed actions do not occur until their delay elapses
ScheduledExecutorSubclassTest.java 20 import java.util.concurrent.Delayed;
62 public int compareTo(Delayed t) {
121 * delayed schedule of callable successfully executes after delay
141 * delayed schedule of runnable successfully executes after delay
789 * By default, delayed tasks keep running after shutdown.
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 541 bool Delayed = false;
548 Delayed = true;
556 // All candidates are delayed due to live physical reg dependencies.
559 if (Delayed && !CurSU) {
  /external/guava/guava/src/com/google/common/util/concurrent/
MoreExecutors.java 37 import java.util.concurrent.Delayed;
632 public int compareTo(Delayed other) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 552 bool Delayed = false;
559 Delayed = true;
567 // All candidates are delayed due to live physical reg dependencies.
570 if (Delayed && !CurSU) {
  /prebuilts/go/darwin-x86/src/encoding/json/
stream.go 98 // scanEnd is delayed one byte.
113 // Delayed until now to allow buffer scan.
  /prebuilts/go/linux-x86/src/encoding/json/
stream.go 98 // scanEnd is delayed one byte.
113 // Delayed until now to allow buffer scan.
  /external/clang/lib/Parse/
ParseDecl.cpp     [all...]
ParseDeclCXX.cpp     [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]

Completed in 913 milliseconds

1 2 3