HomeSort by relevance Sort by last modified time
    Searched refs:OutOfMemoryError (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /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) {
  /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");
  /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();
  /external/testng/src/test/java/test/testng109/
SkippedTestWithExpectedExceptionTest.java 22 @Test(expectedExceptions={OutOfMemoryError.class})
  /art/test/605-new-string-from-bytes/src/
Main.java 35 if (e.getCause() instanceof OutOfMemoryError) {
40 } catch (OutOfMemoryError e) {
  /art/test/617-clinit-oome/src/
Main.java 29 } catch (OutOfMemoryError e) {
38 } catch (OutOfMemoryError e) {
  /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 227 class OutOfMemoryError : public tcu::ResourceError
230 OutOfMemoryError (VkResult error, const char* message, const char* expr, const char* file, int line);
231 OutOfMemoryError (VkResult error, const std::string& message);
232 virtual ~OutOfMemoryError (void) throw();
  /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) {
  /art/test/080-oom-throw/src/
Main.java 29 } catch (OutOfMemoryError oome) {
45 } catch (OutOfMemoryError e) {
62 } catch (OutOfMemoryError oome) {
72 } catch (OutOfMemoryError oome) {
122 } catch (OutOfMemoryError oome) {
140 } catch (OutOfMemoryError e) {
144 if (!(e.getCause() instanceof OutOfMemoryError)) {
161 } catch (OutOfMemoryError e) {
  /art/test/080-oom-fragmentation/src/
Main.java 27 } catch (OutOfMemoryError e) {}
  /art/test/163-app-image-methods/src/
Main.java 40 } catch (OutOfMemoryError e) {
48 } catch (OutOfMemoryError e) {
71 } catch (OutOfMemoryError oome) {
81 } catch (OutOfMemoryError oome) {
  /art/test/202-thread-oome/src/
Main.java 22 } catch (OutOfMemoryError expected) {
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/
TestApplication.java 36 } catch (OutOfMemoryError e) {
ClassInSecondaryDex.java 55 } catch (OutOfMemoryError e) {
73 } catch (OutOfMemoryError e) {
IntermediateClass.java 42 } catch (OutOfMemoryError e) {
65 } catch (OutOfMemoryError e) {
94 } catch (OutOfMemoryError e) {
  /art/test/064-field-access/src/
OOMEOnNullAccess.java 33 * induced low-memory situation, will throw itself an OutOfMemoryError.
49 } catch (OutOfMemoryError e) {
58 } catch (OutOfMemoryError oome) {
  /art/test/080-oom-throw-with-finalizer/src/
Main.java 30 } catch (OutOfMemoryError oome) {
52 } catch (OutOfMemoryError e) {
  /cts/tests/tests/security/src/android/security/cts/
BitmapTest.java 35 @Test(expected=OutOfMemoryError.class)
BitmapFactorySecurityTests.java 65 } catch (OutOfMemoryError e) {
80 } catch (OutOfMemoryError e) {
  /art/test/134-reg-promotion/src/
Main.java 28 } catch (OutOfMemoryError oome) {
  /art/test/044-proxy/src/
OOMEOnDispatch.java 44 } catch (OutOfMemoryError e) {
53 } catch (OutOfMemoryError oome) {
  /art/test/104-growth-limit/src/
Main.java 59 } catch (OutOfMemoryError e) {
  /external/droiddriver/src/io/appium/droiddriver/helpers/
BaseDroidDriverTest.java 127 if (failure instanceof OutOfMemoryError) {
138 if (e instanceof OutOfMemoryError && !(failure instanceof OutOfMemoryError)) {
151 return e instanceof UnrecoverableException || e instanceof OutOfMemoryError

Completed in 1960 milliseconds

1 2 3 4 5 6 7