Searched refs:call (Results 1 - 25 of 39) sorted by relevance

12

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCallable.java41 * {@code call}.
55 * @param <V> the result type of method {@code call}
65 V call() throws Exception; method in interface:Callable
H A DExecutors.java409 public Object call() { return action.run(); }};
424 public Object call() throws Exception { return action.run(); }};
457 public T call() { method in class:Executors.RunnableAdapter
475 public T call() throws Exception { method in class:Executors.PrivilegedCallable
480 return task.call();
518 public T call() throws Exception { method in class:Executors.PrivilegedCallableUsingCurrentClassLoader
526 return task.call();
530 return task.call();
H A DFutureTask.java170 try { // in case call to interrupt throws exception
266 result = c.call();
307 c.call(); // don't set result
398 // - call nanoTime exactly once for each call to park
503 // Reduce the risk of rare disastrous classloading in first call to
/libcore/tools/upstream/
H A DAndroid.mk16 LOCAL_PATH := $(call my-dir)
23 LOCAL_SRC_FILES := $(call all-java-files-under, src/main/java)
32 LOCAL_SRC_FILES := $(call all-java-files-under, src/main/java)
H A Dupstream-diff72 subprocess.call([diff] + paths)
/libcore/metrictests/memory/apps/
H A DAndroid.mk15 LOCAL_PATH := $(call my-dir)
25 LOCAL_SRC_FILES := $(call all-java-files-under, src)
30 include $(call all-makefiles-under,$(LOCAL_PATH))
/libcore/metrictests/memory/host/
H A DAndroid.mk15 LOCAL_PATH := $(call my-dir)
19 LOCAL_SRC_FILES := $(call all-java-files-under, src)
32 include $(call all-makefiles-under,$(LOCAL_PATH))
/libcore/metrictests/
H A DAndroid.mk15 LOCAL_PATH:= $(call my-dir)
17 include $(call all-subdir-makefiles)
/libcore/metrictests/memory/
H A DAndroid.mk15 LOCAL_PATH:= $(call my-dir)
17 include $(call all-subdir-makefiles
/libcore/
H A DAndroid.mk16 LOCAL_PATH := $(call my-dir)
23 subdir_makefiles := $(call all-named-subdir-makefiles,$(subdirs))
H A DDocs.mk12 $(call find-files-in-subdirs, external/icu, \
26 ojluni_annotate_output := $(patsubst %,$(call intermediates-dir-for,JAVA_LIBRARIES,core-oj,,COMMON)/annotated/%, $(ojluni_annotate_src))
H A DJavaLibrary.mk52 test_resource_dirs := $(filter-out ojluni/%,$(call all-core-resource-dirs,test))
53 test_src_files := $(call all-test-java-files-under,dalvik dalvik/test-rules dom harmony-tests json luni xml)
54 ojtest_src_files := $(call all-test-java-files-under,ojluni)
55 ojtest_resource_dirs := $(filter ojluni/%,$(call all-core-resource-dirs,test))
59 nojcore_src_files += $(call all-java-files-under, ../external/emma/core ../external/emma/pregenerated)
87 android_icu4j_src_files := $(call all-java-files-under,$(android_icu4j_root)/src/main/java)
93 ojluni_annotate_dir := $(call intermediates-dir-for,JAVA_LIBRARIES,core-oj,,COMMON)/annotated
134 LOCAL_SRC_FILES := $(call all-java-files-under, luni/src/test/filesystems/src)
145 $(call copy-file-to-target)
149 LOCAL_SRC_FILES := $(call al
[all...]
/libcore/benchmarks/
H A DAndroid.mk16 LOCAL_PATH:= $(call my-dir)
23 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/libcore/jsr166-tests/src/test/java/jsr166/
H A DExecutorsTest.java401 public Object call() { method in class:ExecutorsTest.CheckCCL
434 .call();
455 task.call();
506 // task[0].call();
520 Executors.privilegedCallable(new CheckCCL()).call();
533 assertNull(c.call());
541 assertSame(one, c.call());
550 assertSame(one, c.call());
559 assertSame(one, c.call());
H A DJSR166TestCase.java1244 if (waitingForGodot.call())
1281 * call to {@link System#nanoTime()}.
1426 public final T call() { method in class:JSR166TestCase.CheckedCallable
1440 public final T call() { method in class:JSR166TestCase.CheckedInterruptedCallable
1459 public Object call() { return Boolean.TRUE; } method in class:JSR166TestCase.NoOpCallable
1468 public String call() { return value; } method in class:JSR166TestCase.StringTask
1550 public String call() { throw new NullPointerException(); } method in class:JSR166TestCase.NPETask
1554 public Integer call() { return one; } method in class:JSR166TestCase.CallableOne
1702 public Object call() { method in class:JSR166TestCase.TrackedCallable
/libcore/ojluni/
H A DAndroid.mk16 LOCAL_PATH := $(call my-dir)
/libcore/support/src/test/java/libcore/javax/net/ssl/
H A DTestSSLSocketPair.java81 public Void call() throws Exception {
90 public Void call() throws Exception {
/libcore/luni/src/test/java/libcore/sun/misc/
H A DUnsafeTest.java49 callable.call();
/libcore/luni/src/test/parameter_metadata/src/libcore/java/lang/reflect/parameter/
H A DParameterMetadataTestClasses.java96 public String call() throws Exception {
/libcore/luni/src/test/java/libcore/java/lang/
H A DLambdaImplementationTest.java171 assertEquals(r1.call(), deserializedR1.call());
306 assertEquals(r1.call(), r2.call());
328 assertEquals(r1.call(), r2.call());
414 assertEquals(expectedResult, r1.call());
416 Method implCallMethod = r1.getClass().getDeclaredMethod("call");
419 Method interfaceCallMethod = Callable.class.getDeclaredMethod("call");
/libcore/luni/src/test/java/tests/security/
H A DSecureRandomTest.java83 public Void call () {
/libcore/support/src/test/java/tests/support/
H A DSupport_Exec.java119 public String call() throws Exception {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DOutputStreamTesterTest.java127 public byte[] call() throws Exception {
H A DWriterTesterTest.java120 public char[] call() throws Exception {
/libcore/luni/src/test/java/libcore/java/util/zip/
H A DDeflaterOutputStreamTest.java81 public Void call() throws Exception {

Completed in 3782 milliseconds

12