Home
last modified time | relevance | path

Searched refs:call (Results 1 – 25 of 32) sorted by relevance

12

/libcore/
DCleanSpec.mk48 $(call add-clean-step, rm -rf $(OUT_DIR)/system/framework/conscrypt-nojarjar.jar)
49 $(call add-clean-step, rm -rf $(OUT_DIR)/system/framework/conscrypt-nojarjar.jar)
50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core*)
51 $(call add-clean-step, rm -rf $(OUT_DIR)/host/common/obj/JAVA_LIBRARIES/core*)
52 $(call add-clean-step, rm -rf $(OUT_DIR)/system/etc/security/cacerts/*)
53 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core*)
54 $(call add-clean-step, rm -rf $(OUT_DIR)/host/common/obj/JAVA_LIBRARIES/core*)
55 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core*)
56 $(call add-clean-step, rm -rf $(OUT_DIR)/host/common/obj/JAVA_LIBRARIES/core*)
59 $(call add-clean-step, rm -rf $(OUT_DIR)/host/linux-x86/framework/*core-simple*)
[all …]
DAndroid.mk16 LOCAL_PATH := $(call my-dir)
23 subdir_makefiles := $(call all-named-subdir-makefiles,$(subdirs))
/libcore/benchmarks/
DAndroid.mk16 LOCAL_PATH:= $(call my-dir)
23 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/libcore/ojluni/src/main/java/java/util/concurrent/
DExecutors.java411 public Object call() { return action.run(); }}; in callable()
426 public Object call() throws Exception { return action.run(); }};
461 public T call() {
479 public T call() throws Exception {
484 return task.call();
523 public T call() throws Exception {
531 return task.call();
535 return task.call();
DCallable.java65 V call() throws Exception; in call() method
DFutureTask.java266 result = c.call(); in run()
307 c.call(); // don't set result in runAndReset()
/libcore/jsr166-tests/src/test/java/jsr166/
DExecutorsTest.java401 public Object call() { in call() method in ExecutorsTest.CheckCCL
434 .call(); in testPrivilegedCallableUsingCCLWithPrivs()
455 task.call(); in testPrivilegedCallableWithNoPrivs()
520 Executors.privilegedCallable(new CheckCCL()).call(); in testPrivilegedCallableWithPrivs()
533 assertNull(c.call()); in testCallable1()
541 assertSame(one, c.call()); in testCallable2()
550 assertSame(one, c.call()); in testCallable3()
559 assertSame(one, c.call()); in testCallable4()
DJSR166TestCase.java1244 if (waitingForGodot.call())
1426 public final T call() {
1440 public final T call() {
1459 public Object call() { return Boolean.TRUE; }
1468 public String call() { return value; }
1550 public String call() { throw new NullPointerException(); }
1554 public Integer call() { return one; }
1702 public Object call() {
DFutureTaskTest.java202 public Object call() throws Exception { in PublicFutureTask()
204 return callable.call(); in PublicFutureTask()
682 public Object call() { in testGet_ExecutionException()
706 public Object call() { in testTimedGet_ExecutionException2()
DAbstractExecutorServiceTest.java233 public Object call() { throw new ArithmeticException(); }}; in testSubmitEE()
277 public Long call() { throw new ArithmeticException(); }}); in testInvokeAny3()
442 public Long call() { throw new ArithmeticException(); }}); in testTimedInvokeAny3()
DCompletableFutureTest.java1671 assertTrue(complete1.call()); in testThenCombine_exceptionalCompletion()
1675 assertTrue(complete2.call()); in testThenCombine_exceptionalCompletion()
1714 assertTrue(complete1.call()); in testThenCombine_sourceCancelled()
1718 assertTrue(complete2.call()); in testThenCombine_sourceCancelled()
1835 assertTrue(complete1.call()); in testThenAcceptBoth_exceptionalCompletion()
1839 assertTrue(complete2.call()); in testThenAcceptBoth_exceptionalCompletion()
1878 assertTrue(complete1.call()); in testThenAcceptBoth_sourceCancelled()
1882 assertTrue(complete2.call()); in testThenAcceptBoth_sourceCancelled()
1999 assertTrue(complete1.call()); in testRunAfterBoth_exceptionalCompletion()
2003 assertTrue(complete2.call()); in testRunAfterBoth_exceptionalCompletion()
[all …]
/libcore/luni/src/test/java/libcore/java/lang/
DLambdaImplementationTest.java171 assertEquals(r1.call(), deserializedR1.call()); in testSerializableLambda_withState()
306 assertEquals(r1.call(), r2.call()); in assertMultipleDefinitionCharacteristics()
328 assertEquals(r1.call(), r2.call()); in assertMultipleInstanceCharacteristics()
414 assertEquals(expectedResult, r1.call()); in assertCallableBehavior()
/libcore/ojluni/
DAndroid.mk16 LOCAL_PATH := $(call my-dir)
/libcore/support/src/test/java/libcore/javax/net/ssl/
DTestSSLSocketPair.java80 public Void call() throws Exception { in connect()
89 public Void call() throws Exception { in connect()
/libcore/luni/src/test/java/libcore/sun/misc/
DUnsafeTest.java49 callable.call(); in test_getUnsafeForbiddenWithSystemCaller()
/libcore/tools/upstream/
Dupstream-diff78 subprocess.call([diff] + paths)
/libcore/luni/src/test/parameter_metadata/src/libcore/java/lang/reflect/parameter/
DParameterMetadataTestClasses.java96 public String call() throws Exception { in getAnonymousClassWith1ParameterConstructor()
/libcore/luni/src/test/java/tests/security/
DSecureRandomTest.java83 public Void call () { in testSecureRandomThreadSafety()
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/
DExecutors.java332 public T call() throws java.lang.Exception { in call() method in Executors.PrivilegedCallable
357 public T call() throws java.lang.Exception { in call() method in Executors.PrivilegedCallableUsingCurrentClassLoader
412 public T call() { in call() method in Executors.RunnableAdapter
/libcore/luni/src/test/java/libcore/java/security/
DMessageDigestTest.java46 public Void call() throws Exception { in testMessageDigest_MultipleThreads_Misuse()
/libcore/support/src/test/java/tests/support/
DSupport_Exec.java119 public String call() throws Exception { in streamToStringCallable()
/libcore/luni/src/test/java/libcore/java/util/zip/
DDeflaterOutputStreamTest.java81 public Void call() throws Exception { in createInflaterStream()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DOutputStreamTesterTest.java127 public byte[] call() throws Exception { in create()
DWriterTesterTest.java120 public char[] call() throws Exception { in create()
/libcore/luni/src/test/java/libcore/java/lang/reflect/
DClassLoaderReflectionTest.java156 public A call() throws Exception { in call() method in ClassLoaderReflectionTest.E

12