/external/deqp/framework/opengl/ |
D | gluDefs.cpp | 51 OutOfMemoryError::OutOfMemoryError (const char* message, const char* expr, const char* file, int li… in OutOfMemoryError() function in glu::OutOfMemoryError 56 OutOfMemoryError::OutOfMemoryError (const std::string& message) in OutOfMemoryError() function in glu::OutOfMemoryError 61 OutOfMemoryError::~OutOfMemoryError (void) throw() in ~OutOfMemoryError() 81 throw OutOfMemoryError(msgStr.str().c_str(), DE_NULL, file, line); in checkError()
|
D | gluDefs.hpp | 66 class OutOfMemoryError : public tcu::ResourceError class 69 OutOfMemoryError (const char* message, const char* expr, const char* file, int line); 70 OutOfMemoryError (const std::string& message); 71 virtual ~OutOfMemoryError (void) throw();
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkDefs.cpp | 75 OutOfMemoryError::OutOfMemoryError (VkResult error, const char* message, const char* expr, const ch… in OutOfMemoryError() function in vk::OutOfMemoryError 82 OutOfMemoryError::OutOfMemoryError (VkResult error, const std::string& message) in OutOfMemoryError() function in vk::OutOfMemoryError 89 OutOfMemoryError::~OutOfMemoryError (void) throw() in ~OutOfMemoryError() 105 throw OutOfMemoryError(result, msgStr.str().c_str(), DE_NULL, file, line); in checkResult()
|
D | vkDefs.hpp | 318 class OutOfMemoryError : public tcu::ResourceError class 321 …OutOfMemoryError (VkResult error, const char* message, const char* expr, const char* file, int lin… 322 OutOfMemoryError (VkResult error, const std::string& message); 323 virtual ~OutOfMemoryError (void) throw();
|
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/ |
D | FunctionsTest.java | 276 final Error error = new OutOfMemoryError(); in testAcceptBiConsumer() 277 … e = assertThrows(OutOfMemoryError.class, () -> Functions.accept(Testable::test, testable, error)); in testAcceptBiConsumer() 298 final Error error = new OutOfMemoryError(); in testAcceptConsumer() 300 e = assertThrows(OutOfMemoryError.class, () -> Functions.accept(Testable::test, testable)); in testAcceptConsumer() 322 final Error error = new OutOfMemoryError(); in testAcceptDoubleConsumer() 324 e = assertThrows(OutOfMemoryError.class, () -> Functions.accept(testable::testDouble, 1d)); in testAcceptDoubleConsumer() 349 final Error error = new OutOfMemoryError(); in testAcceptIntConsumer() 351 e = assertThrows(OutOfMemoryError.class, () -> Functions.accept(testable::testInt, 1)); in testAcceptIntConsumer() 376 final Error error = new OutOfMemoryError(); in testAcceptLongConsumer() 378 e = assertThrows(OutOfMemoryError.class, () -> Functions.accept(testable::testLong, 1L)); in testAcceptLongConsumer() [all …]
|
D | StreamsTest.java | 109 final OutOfMemoryError oome = new OutOfMemoryError(); in simpleStreamForEachFailing() 112 … final OutOfMemoryError oomeThrown = assertThrows(OutOfMemoryError.class, oomeTestMethod); in simpleStreamForEachFailing() 177 final OutOfMemoryError oome = new OutOfMemoryError(); 182 … final OutOfMemoryError thrown = assertThrows(OutOfMemoryError.class, testMethod);
|
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/function/ |
D | FailableFunctionsTest.java | 279 private static final OutOfMemoryError ERROR = new OutOfMemoryError(); 290 … e = assertThrows(OutOfMemoryError.class, () -> Failable.accept(Testable::test, testable, ERROR)); in testAcceptBiConsumer() 311 e = assertThrows(OutOfMemoryError.class, () -> Failable.accept(Testable::test, testable)); in testAcceptConsumer() 333 e = assertThrows(OutOfMemoryError.class, () -> Failable.accept(testable::testDouble, 1d)); in testAcceptDoubleConsumer() 358 e = assertThrows(OutOfMemoryError.class, () -> Failable.accept(testable::testInt, 1)); in testAcceptIntConsumer() 383 e = assertThrows(OutOfMemoryError.class, () -> Failable.accept(testable::testLong, 1L)); in testAcceptLongConsumer() 410 … e = assertThrows(OutOfMemoryError.class, () -> Failable.accept(testable::testObjDouble, "X", 1d)); in testAcceptObjDoubleConsumer() 439 … e = assertThrows(OutOfMemoryError.class, () -> Failable.accept(testable::testObjInt, "X", 1)); in testAcceptObjIntConsumer() 468 … e = assertThrows(OutOfMemoryError.class, () -> Failable.accept(testable::testObjLong, "X", 1L)); in testAcceptObjLongConsumer() 495 …e = assertThrows(OutOfMemoryError.class, () -> Failable.apply(Testable::testAsInteger, testable, E… in testApplyBiFunction() [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/jdk8/future/ |
D | AsFutureTest.kt | 60 val deferred = GlobalScope.async<Unit> { throw OutOfMemoryError() } in testAsCompletableFutureThrowable() 68 assertTrue(e.cause is OutOfMemoryError) in testAsCompletableFutureThrowable() 76 CompletableDeferred<Unit>(parent = job).apply { completeExceptionally(OutOfMemoryError()) } in testJobAsCompletableFutureThrowable() 84 assertTrue(e.cause is OutOfMemoryError) in testJobAsCompletableFutureThrowable()
|
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/stream/ |
D | StreamsTest.java | 95 final OutOfMemoryError oome = new OutOfMemoryError(); 97 final OutOfMemoryError thrown = assertThrows(OutOfMemoryError.class, testMethod); 123 final OutOfMemoryError oome = new OutOfMemoryError(); 125 … final OutOfMemoryError oomeThrown = assertThrows(OutOfMemoryError.class, oomeTestMethod);
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowArscApkAssets9.java | 296 } catch (OutOfMemoryError e) { in nativeLoad() 297 OutOfMemoryError outOfMemoryError = new OutOfMemoryError("Failed to load " + path); in nativeLoad() 335 } catch (OutOfMemoryError e) { in nativeLoad() 336 OutOfMemoryError outOfMemoryError = new OutOfMemoryError("Failed to load " + path); in nativeLoad()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/ |
D | TestFailureRecovery.java | 89 } catch (OutOfMemoryError e) { in testFailureRecovery() 97 } catch (OutOfMemoryError e) { in testFailureRecovery()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
D | TestFailureRecovery.java | 86 } catch (OutOfMemoryError e) { in testFailureRecovery() 94 } catch (OutOfMemoryError e) { in testFailureRecovery()
|
/external/dexmaker/dexmaker-mockito-tests/src/main/java/com/android/dx/mockito/tests/ |
D | GeneralMocking.java | 49 public String throwOutOfMemoryError() throws OutOfMemoryError { in throwOutOfMemoryError() 50 throw new OutOfMemoryError(); in throwOutOfMemoryError() 157 } catch (OutOfMemoryError e) { in spyErrorMethod()
|
/external/mockito/src/test/java/org/mockito/internal/handler/ |
D | InvocationNotifierHandlerTest.java | 38 private static final OutOfMemoryError SOME_ERROR = new OutOfMemoryError();
|
/external/testng/src/test/java/test/testng109/ |
D | SkippedTestWithExpectedExceptionTest.java | 22 @Test(expectedExceptions={OutOfMemoryError.class})
|
/external/perfetto/test/cts/test_apps/src/android/perfetto/cts/app/ |
D | JavaOomActivity.java | 29 } catch (OutOfMemoryError e) { in onCreate()
|
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowArscApkAssets9.java | 274 } catch (OutOfMemoryError e) { in nativeLoad() 275 OutOfMemoryError outOfMemoryError = new OutOfMemoryError("Failed to load " + path); in nativeLoad()
|
/external/javasqlite/src/main/java/SQLite/ |
D | Database.java | 40 } catch (java.lang.OutOfMemoryError me) { in open() 69 } catch (java.lang.OutOfMemoryError me) { in open() 99 } catch (java.lang.OutOfMemoryError me) { in open()
|
/external/gson/gson/src/main/java/com/google/gson/ |
D | JsonStreamParser.java | 94 } catch (OutOfMemoryError e) { in next()
|
D | JsonParser.java | 105 } catch (OutOfMemoryError e) { in parseReader()
|
/external/proguard/src/proguard/gui/ |
D | ProGuardRunnable.java | 102 catch (OutOfMemoryError er) in run()
|
D | ReTraceRunnable.java | 108 catch (OutOfMemoryError er) in run()
|
/external/kotlinx.coroutines/integration/kotlinx-coroutines-guava/test/ |
D | ListenableFutureTest.kt | 171 throw OutOfMemoryError() in testAsListenableFutureThrowable() 179 assertTrue(e.cause is OutOfMemoryError) in testAsListenableFutureThrowable() 354 inputCancellationException.initCause(OutOfMemoryError("Foobaz")) in <lambda>() 363 assertTrue(cause.cause is OutOfMemoryError) in <lambda>()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
D | DisableCollectionDebuggee.java | 76 } catch ( OutOfMemoryError outOfMem ) { in run()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/ |
D | EnableCollectionDebuggee.java | 88 } catch ( OutOfMemoryError outOfMem ) { in run()
|