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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
code-factory.h 18 class Callable final BASE_EMBEDDED {
20 Callable(Handle<Code> code, CallInterfaceDescriptor descriptor)
35 static Callable LoadIC(Isolate* isolate, TypeofMode typeof_mode,
37 static Callable LoadICInOptimizedCode(Isolate* isolate,
41 static Callable KeyedLoadIC(Isolate* isolate, LanguageMode language_mode);
42 static Callable KeyedLoadICInOptimizedCode(
45 static Callable CallIC(Isolate* isolate, int argc,
47 static Callable CallICInOptimizedCode(
50 static Callable StoreIC(Isolate* isolate, LanguageMode mode);
51 static Callable StoreICInOptimizedCode(Isolate* isolate, LanguageMode mode
    [all...]
code-factory.cc 15 Callable CodeFactory::LoadIC(Isolate* isolate, TypeofMode typeof_mode,
17 return Callable(
25 Callable CodeFactory::LoadICInOptimizedCode(
31 return Callable(code, LoadWithVectorDescriptor(isolate));
36 Callable CodeFactory::KeyedLoadIC(Isolate* isolate,
40 return Callable(KeyedLoadIC::initialize_stub(isolate, state),
46 Callable CodeFactory::KeyedLoadICInOptimizedCode(
54 return Callable(code, LoadWithVectorDescriptor(isolate));
56 return Callable(code, LoadDescriptor(isolate));
61 Callable CodeFactory::CallIC(Isolate* isolate, int argc
    [all...]
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
Callable.java 20 * Emulation of Callable.
24 public interface Callable<V> {
  /libcore/luni/src/main/java/java/util/concurrent/
Callable.java 14 * <p>The {@code Callable} interface is similar to {@link
21 * convert from other common forms to {@code Callable} classes.
29 public interface Callable<V> {
ExecutorService.java 104 * submission of a {@code Runnable} or {@code Callable} task to an
188 * {@link Callable} form so they can be submitted.
197 <T> Future<T> submit(Callable<T> task);
248 <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
279 <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks,
302 <T> T invokeAny(Collection<? extends Callable<T>> tasks)
328 <T> T invokeAny(Collection<? extends Callable<T>> tasks,
Executors.java 27 * ThreadFactory}, and {@link Callable} classes defined in this
40 * <li>Methods that create and return a {@link Callable}
42 * in execution methods requiring {@code Callable}.
339 * Returns a {@link Callable} object that, when
342 * {@code Callable} to an otherwise resultless action.
346 * @return a callable object
349 public static <T> Callable<T> callable(Runnable task, T result) { method in class:Executors
356 * Returns a {@link Callable} object that, when
359 * @return a callable objec
362 public static Callable<Object> callable(Runnable task) { method in class:Executors
375 public static Callable<Object> callable(final PrivilegedAction<?> action) { method in class:Executors
    [all...]
CompletionService.java 44 Future<V> submit(Callable<V> task);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/compat/
CallableCompat.java 20 import android.provider.ContactsContract.CommonDataKinds.Callable;
28 Uri.withAppendedPath(Callable.CONTENT_URI, "filter_enterprise");
34 return Callable.CONTENT_FILTER_URI;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/targets/
Target02.java 14 import java.util.concurrent.Callable;
19 public class Target02 implements Callable<Void> {
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
TransferRequestIntegrationTest.java 29 import java.util.concurrent.Callable;
42 private final Callable<Boolean> FALSE_CALLABLE = new Callable<Boolean>() {
73 Callable<Callable<Boolean>> callable = new Callable<Callable<Boolean>>() { local
74 @Override public Callable<Boolean> call() {
76 return ServletScopes.transferRequest(new Callable<Boolean>()
93 Callable<Boolean> callable = new Callable<Boolean>() { local
114 Callable<Boolean> callable = new Callable<Boolean>() { local
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ListeningExecutorService.java 21 import java.util.concurrent.Callable;
41 <T> ListenableFuture<T> submit(Callable<T> task);
74 <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
96 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
Callables.java 23 import java.util.concurrent.Callable;
28 * Static utility methods pertaining to the {@link Callable} interface.
37 * Creates a {@code Callable} which immediately returns a preset value each
40 public static <T> Callable<T> returning(final @Nullable T value) {
41 return new Callable<T>() {
49 * Wraps the given callable such that for the duration of {@link Callable#call} the thread that is
53 * @param callable The callable to wrap
55 * for each invocation of the wrapped callable
    [all...]
WrappingExecutorService.java 26 import java.util.concurrent.Callable;
36 * {@linkplain #wrapTask(Callable) wrap} tasks before they are submitted
54 * Wraps a {@code Callable} for submission to the underlying executor. This
58 protected abstract <T> Callable<T> wrapTask(Callable<T> callable);
62 * default implementation delegates to {@link #wrapTask(Callable)}.
65 final Callable<Object> wrapped = wrapTask(
66 Executors.callable(command, null));
83 private final <T> ImmutableList<Callable<T>> wrapTasks
    [all...]
ListenableFutureTask.java 19 import java.util.concurrent.Callable;
47 * given {@code Callable}.
49 * @param callable the callable task
52 public static <V> ListenableFutureTask<V> create(Callable<V> callable) {
53 return new ListenableFutureTask<V>(callable);
73 ListenableFutureTask(Callable<V> callable) {
74 super(callable);
    [all...]
ForwardingListeningExecutorService.java 19 import java.util.concurrent.Callable;
39 public <T> ListenableFuture<T> submit(Callable<T> task) {
TimeLimiter.java 21 import java.util.concurrent.Callable;
82 * Invokes a specified Callable, timing out after the specified time limit.
91 * @param callable the Callable to execute
98 * @return the result returned by the Callable
104 <T> T callWithTimeout(Callable<T> callable, long timeoutDuration,
  /external/compiler-rt/lib/lsan/
lsan_allocator.h 30 template<typename Callable>
31 void ForEachChunk(const Callable &callback);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
ExecuteInstrumentedCodeScenario.java 14 import java.util.concurrent.Callable;
29 private final Class<? extends Callable<Void>> target;
32 Class<? extends Callable<Void>> target) {
39 protected Callable<Void> getInstrumentedCallable() throws Exception {
47 return (Callable<Void>) loader.add(target, instrumentedBuffer)
52 protected Callable<Void> getReferenceCallable() throws Exception {
TimedScenario.java 14 import java.util.concurrent.Callable;
31 final Callable<Void> refRunnable = getReferenceCallable();
49 private long getMinimumTime(final Callable<Void> subject) throws Exception {
58 private long getTime(final Callable<Void> subject) throws Exception {
64 protected abstract Callable<Void> getInstrumentedCallable()
67 protected Callable<Void> getReferenceCallable() throws Exception {
InstrumentationTimeScenario.java 14 import java.util.concurrent.Callable;
36 protected Callable<Void> getInstrumentedCallable() throws Exception {
39 return new Callable<Void>() {
  /external/v8/src/interpreter/
interpreter.h 21 class Callable;
70 void DoLoadGlobal(Callable ic, compiler::InterpreterAssembler* assembler);
73 void DoStoreGlobal(Callable ic, compiler::InterpreterAssembler* assembler);
76 void DoLoadIC(Callable ic, compiler::InterpreterAssembler* assembler);
79 void DoKeyedLoadIC(Callable ic, compiler::InterpreterAssembler* assembler);
82 void DoStoreIC(Callable ic, compiler::InterpreterAssembler* assembler);
85 void DoKeyedStoreIC(Callable ic, compiler::InterpreterAssembler* assembler);
  /external/guava/guava-bootstrap/src/java/util/concurrent/
ExecutorService.java 28 <T> Future<T> submit(Callable<T> task);
34 <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
38 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
41 <T> T invokeAny(Collection<? extends Callable<T>> tasks)
45 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ScheduledTrial.java 17 import java.util.concurrent.Callable;
45 Callable<TrialResult> trialTask() {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
CallablesTest.java 25 import java.util.concurrent.Callable;
38 Callable<Object> callable = Callables.returning(value); local
39 assertSame(value, callable.call());
41 assertSame(value, callable.call());
47 Callable<Void> callable = new Callable<Void>() { local
53 Callables.threadRenaming(callable, newName).call();
61 Callable<Void> callable = new Callable<Void>() local
86 Callable<Void> callable = new Callable<Void>() { local
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/
ExceptionLoggingFutureTask.java 21 import java.util.concurrent.Callable;
32 public ExceptionLoggingFutureTask(Callable<V> callable, String tag) {
33 super(callable);

Completed in 354 milliseconds

1 2 3 4 5 6 7 8 91011>>