HomeSort by relevance Sort by last modified time
    Searched full:outofmemoryerror (Results 1 - 25 of 322) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/061-out-of-memory/
info.txt 1 Tests the various ways that an OutOfMemoryError can be constructed and thrown.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
OutOfMemoryErrorTest.java 23 * java.lang.OutOfMemoryError#OutOfMemoryError()
26 // Test for method java.lang.OutOfMemoryError()
27 Error e = new OutOfMemoryError();
33 * java.lang.OutOfMemoryError#OutOfMemoryError(java.lang.String)
36 // Test for method java.lang.OutOfMemoryError(java.lang.String)
37 Error e = new OutOfMemoryError(null);
41 e = new OutOfMemoryError("msg");
  /libcore/ojluni/src/main/java/java/lang/
OutOfMemoryError.java 33 * {@code OutOfMemoryError} objects may be constructed by the virtual
41 public class OutOfMemoryError extends VirtualMachineError {
45 * Constructs an {@code OutOfMemoryError} with no detail message.
47 public OutOfMemoryError() {
52 * Constructs an {@code OutOfMemoryError} with the specified
57 public OutOfMemoryError(String s) {
  /external/testng/src/test/java/test/testng109/
SkippedTestWithExpectedExceptionTest.java 22 @Test(expectedExceptions={OutOfMemoryError.class})
  /art/test/061-out-of-memory/src/
Main.java 21 * Exercise the construction and throwing of OutOfMemoryError.
39 } catch (OutOfMemoryError oom) {
54 } catch (OutOfMemoryError oom) {
61 "OutOfMemoryError not thrown");
85 } catch (OutOfMemoryError oom) {
106 "OutOfMemoryError not thrown while filling heap");
117 } catch (OutOfMemoryError oom) {}
122 } catch (OutOfMemoryError oom) {
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetProgramPipelineInfoLog.cpp 12 jniThrowException(_env, "java/lang/OutOfMemoryError", "out of memory");
glCreateShaderProgramv.cpp 25 _exceptionType = "java/lang/OutOfMemoryError";
33 _exceptionType = "java/lang/OutOfMemoryError";
  /art/test/080-oom-throw/src/
Main.java 29 } catch (OutOfMemoryError oome) {
45 } catch (OutOfMemoryError e) {
95 } catch (OutOfMemoryError oome) {
113 } catch (OutOfMemoryError e) {
117 if (!(e.getCause() instanceof OutOfMemoryError)) {
  /external/deqp/external/vulkancts/framework/vulkan/
vkDefs.cpp 59 OutOfMemoryError::OutOfMemoryError (VkResult error, const char* message, const char* expr, const char* file, int line)
66 OutOfMemoryError::OutOfMemoryError (VkResult error, const std::string& message)
73 OutOfMemoryError::~OutOfMemoryError (void) throw()
88 throw OutOfMemoryError(result, msgStr.str().c_str(), DE_NULL, file, line);
vkDefs.hpp 213 class OutOfMemoryError : public tcu::ResourceError
216 OutOfMemoryError (VkResult error, const char* message, const char* expr, const char* file, int line);
217 OutOfMemoryError (VkResult error, const std::string& message);
218 virtual ~OutOfMemoryError (void) throw();
  /external/deqp/framework/opengl/
gluDefs.cpp 51 OutOfMemoryError::OutOfMemoryError (const char* message, const char* expr, const char* file, int line)
56 OutOfMemoryError::OutOfMemoryError (const std::string& message)
61 OutOfMemoryError::~OutOfMemoryError (void) throw()
81 throw OutOfMemoryError(msgStr.str().c_str(), DE_NULL, file, line);
gluDefs.hpp 61 class OutOfMemoryError : public tcu::ResourceError
64 OutOfMemoryError (const char* message, const char* expr, const char* file, int line);
65 OutOfMemoryError (const std::string& message);
66 virtual ~OutOfMemoryError (void) throw();
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/
IntermediateClass.java 42 } catch (OutOfMemoryError e) {
65 } catch (OutOfMemoryError e) {
94 } catch (OutOfMemoryError e) {
ClassInSecondaryDex.java 55 } catch (OutOfMemoryError e) {
73 } catch (OutOfMemoryError e) {
TestApplication.java 36 } catch (OutOfMemoryError e) {
  /art/test/617-clinit-oome/src/
Main.java 29 } catch (OutOfMemoryError e) {
38 } catch (OutOfMemoryError e) {
  /libcore/luni/src/main/native/
JniException.cpp 28 jniThrowException(env, "java/lang/OutOfMemoryError", message);
  /art/test/080-oom-throw-with-finalizer/src/
Main.java 30 } catch (OutOfMemoryError oome) {
52 } catch (OutOfMemoryError e) {
  /art/test/104-growth-limit/src/
Main.java 39 } catch (OutOfMemoryError e) {
52 } catch (OutOfMemoryError e2) {
  /cts/tests/dram/jni/
MemoryNativeJni.cpp 37 env->ThrowNew(env->FindClass("java/lang/OutOfMemoryError"), "No memory");
59 env->ThrowNew(env->FindClass("java/lang/OutOfMemoryError"), "No memory");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ClassUnloadDebuggee.java 107 logWriter.println("--> Debuggee: createMemoryStress: NO OutOfMemoryError!!!");
108 } catch ( OutOfMemoryError outOfMem ) {
110 logWriter.println("--> Debuggee: createMemoryStress: OutOfMemoryError!!!");
138 } catch (OutOfMemoryError outOfMem) {
152 ("--> Debuggee: createMemoryStress: OutOfMemoryError occured: " + countOOM);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
SoftReferenceTest.java 80 // SideEffect: Causes OutOfMemoryError to test finalization
112 } catch(OutOfMemoryError ofme) {
120 "if OutOfMemoryError is thrown.", r.get());
  /art/test/134-reg-promotion/src/
Main.java 28 } catch (OutOfMemoryError oome) {
  /art/test/202-thread-oome/src/
Main.java 22 } catch (OutOfMemoryError expected) {
  /art/test/605-new-string-from-bytes/src/
Main.java 35 if (e.getCause() instanceof OutOfMemoryError) {

Completed in 478 milliseconds

1 2 3 4 5 6 7 8 91011>>