Home
last modified time | relevance | path

Searched refs:testException (Results 1 – 25 of 118) sorted by relevance

12345

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/jdk8/future/
DFutureExceptionsTest.kt14 testException(IOException(), { it is IOException }) in <lambda>()
19 testException(IOException(), { it is IOException }, { f -> f.thenApply { it + 1 } }) in <lambda>()
24 testException(IOException(), { it is IOException }, in <lambda>()
32 testException(CompletionException("test", IOException()), { it is IOException }) in <lambda>()
37testException(CompletionException("test", IOException()), { it is IOException }, { f -> f.thenAppl… in <lambda>()
42 testException(TestException(), { it is TestException }) in <lambda>()
47 testException(TestException(), { it is TestException }, { f -> f.thenApply { it + 1 } }) in <lambda>()
50 private fun testException( in <lambda>() method in kotlinx.coroutines.future.FutureExceptionsTest
/external/kotlinx.coroutines/integration/kotlinx-coroutines-guava/test/
DListenableFutureExceptionsTest.kt16 testException(IOException(), { it is IOException }) in <lambda>()
21 testException(IOException(), { it is IOException }, { i -> i!! + 1 }) in <lambda>()
26 testException(CompletionException("test", IOException()), { it is CompletionException }) in <lambda>()
31 testException( in <lambda>()
39 testException(TestException(), { it is TestException }) in <lambda>()
44 testException(TestException(), { it is TestException }, { i -> i!! + 1 }) in <lambda>()
47 private fun testException( in <lambda>() method in kotlinx.coroutines.guava.ListenableFutureExceptionsTest
DListenableFutureTest.kt629 val testException = TestException() in <lambda>() constant
644 val bar = async<Int> { throw testException } in <lambda>()
653 assertEquals(testException, thrown.cause) in <lambda>()
679 val testException = TestException() in <lambda>() constant
682 throw testException in <lambda>()
688 assertEquals(testException, thrown.cause) in <lambda>()
693 val testException = TestException() in <lambda>() constant
695 completeExceptionally(testException) in <lambda>()
701 assertEquals(testException, thrown.cause) in <lambda>()
/external/cronet/stable/third_party/libc++/src/test/std/utilities/expected/expected.expected/ctor/
Dctor.default.pass.cpp62 void testException() { in testException() function
79 testException(); in main()
Dctor.unexpected.copy.pass.cpp69 void testException() { in testException() function
90 testException(); in main()
Dctor.unexpected.move.pass.cpp79 void testException() { in testException() function
100 testException(); in main()
/external/cronet/tot/third_party/libc++/src/test/std/utilities/expected/expected.expected/ctor/
Dctor.default.pass.cpp62 void testException() { in testException() function
79 testException(); in main()
Dctor.unexpected.copy.pass.cpp69 void testException() { in testException() function
90 testException(); in main()
Dctor.unexpected.move.pass.cpp79 void testException() { in testException() function
100 testException(); in main()
/external/cronet/stable/third_party/libc++/src/test/std/utilities/expected/expected.void/observers/
Dvalue.pass.cpp55 void testException() { in testException() function
75 testException(); in main()
/external/cronet/tot/third_party/libc++/src/test/std/utilities/expected/expected.void/observers/
Dvalue.pass.cpp55 void testException() { in testException() function
75 testException(); in main()
/external/cronet/tot/third_party/libc++/src/test/std/utilities/expected/expected.void/ctor/
Dctor.unexpected.copy.pass.cpp69 void testException() { in testException() function
90 testException(); in main()
Dctor.copy.pass.cpp78 void testException() { in testException() function
101 testException(); in main()
Dctor.unexpected.move.pass.cpp79 void testException() { in testException() function
100 testException(); in main()
Dctor.move.pass.cpp93 void testException() { in testException() function
116 testException(); in main()
/external/cronet/stable/third_party/libc++/src/test/std/utilities/expected/expected.void/ctor/
Dctor.unexpected.copy.pass.cpp69 void testException() { in testException() function
90 testException(); in main()
Dctor.copy.pass.cpp78 void testException() { in testException() function
101 testException(); in main()
Dctor.unexpected.move.pass.cpp79 void testException() { in testException() function
100 testException(); in main()
Dctor.move.pass.cpp93 void testException() { in testException() function
116 testException(); in main()
Dctor.convert.copy.pass.cpp113 void testException() { in testException() function
135 testException(); in main()
/external/cronet/tot/third_party/libc++/src/test/std/utilities/expected/expected.expected/observers/
Dvalue.pass.cpp64 void testException() { in testException() function
110 testException(); in main()
/external/cronet/stable/third_party/libc++/src/test/std/utilities/expected/expected.expected/observers/
Dvalue.pass.cpp64 void testException() { in testException() function
110 testException(); in main()
/external/cronet/stable/third_party/libc++/src/test/std/utilities/expected/expected.unexpected/ctor/
Dctor.inplace.pass.cpp83 void testException() { in testException() function
102 testException(); in main()
Dctor.error.pass.cpp100 void testException() { in testException() function
121 testException(); in main()
/external/cronet/tot/third_party/libc++/src/test/std/utilities/expected/expected.unexpected/ctor/
Dctor.error.pass.cpp100 void testException() { in testException() function
121 testException(); in main()

12345