Home
last modified time | relevance | path

Searched refs:OutOfMemoryError (Results 1 – 25 of 91) sorted by relevance

1234

/external/deqp/framework/opengl/
DgluDefs.cpp51 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()
DgluDefs.hpp66 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/
DvkDefs.cpp75 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()
DvkDefs.hpp318 class OutOfMemoryError : public tcu::ResourceError class
321OutOfMemoryError (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/
DFunctionsTest.java276 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 …]
DStreamsTest.java109 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/
DFailableFunctionsTest.java279 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/
DAsFutureTest.kt60 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/
DStreamsTest.java95 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/
DShadowArscApkAssets9.java296 } 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/
DTestFailureRecovery.java89 } catch (OutOfMemoryError e) { in testFailureRecovery()
97 } catch (OutOfMemoryError e) { in testFailureRecovery()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
DTestFailureRecovery.java86 } catch (OutOfMemoryError e) { in testFailureRecovery()
94 } catch (OutOfMemoryError e) { in testFailureRecovery()
/external/dexmaker/dexmaker-mockito-tests/src/main/java/com/android/dx/mockito/tests/
DGeneralMocking.java49 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/
DInvocationNotifierHandlerTest.java38 private static final OutOfMemoryError SOME_ERROR = new OutOfMemoryError();
/external/testng/src/test/java/test/testng109/
DSkippedTestWithExpectedExceptionTest.java22 @Test(expectedExceptions={OutOfMemoryError.class})
/external/perfetto/test/cts/test_apps/src/android/perfetto/cts/app/
DJavaOomActivity.java29 } catch (OutOfMemoryError e) { in onCreate()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowArscApkAssets9.java274 } catch (OutOfMemoryError e) { in nativeLoad()
275 OutOfMemoryError outOfMemoryError = new OutOfMemoryError("Failed to load " + path); in nativeLoad()
/external/javasqlite/src/main/java/SQLite/
DDatabase.java40 } 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/
DJsonStreamParser.java94 } catch (OutOfMemoryError e) { in next()
DJsonParser.java105 } catch (OutOfMemoryError e) { in parseReader()
/external/proguard/src/proguard/gui/
DProGuardRunnable.java102 catch (OutOfMemoryError er) in run()
DReTraceRunnable.java108 catch (OutOfMemoryError er) in run()
/external/kotlinx.coroutines/integration/kotlinx-coroutines-guava/test/
DListenableFutureTest.kt171 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/
DDisableCollectionDebuggee.java76 } catch ( OutOfMemoryError outOfMem ) { in run()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
DEnableCollectionDebuggee.java88 } catch ( OutOfMemoryError outOfMem ) { in run()

1234