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

1 2 3 4 5

  /libcore/luni/src/main/java/java/lang/
OutOfMemoryError.java 25 public class OutOfMemoryError extends VirtualMachineError {
30 * Constructs a new {@code OutOfMemoryError} that includes the current stack
33 public OutOfMemoryError() {
37 * Constructs a new {@code OutOfMemoryError} with the current stack trace
43 public OutOfMemoryError(String detailMessage) {
  /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 58 class OutOfMemoryError : public tcu::ResourceError
61 OutOfMemoryError (const char* message, const char* expr, const char* file, int line);
62 OutOfMemoryError (const std::string& message);
63 virtual ~OutOfMemoryError (void) throw();
  /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) {
Test.java 48 assertEquals(14, IntermediateClass.get5(new OutOfMemoryError()));
  /art/test/080-oom-throw/src/
Main.java 26 } catch (OutOfMemoryError oome) {
41 } catch (OutOfMemoryError e) {
  /art/test/104-growth-limit/src/
Main.java 33 } catch (OutOfMemoryError e) {
51 } catch (OutOfMemoryError e2) {
  /art/test/061-out-of-memory/src/
Main.java 21 * Exercise the construction and throwing of OutOfMemoryError.
38 } catch (OutOfMemoryError oom) {
53 } catch (OutOfMemoryError oom) {
60 "OutOfMemoryError not thrown");
84 } catch (OutOfMemoryError oom) {
105 "OutOfMemoryError not thrown while filling heap");
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
JavaBrowserViewRendererHelper.java 36 } catch (OutOfMemoryError e) {
  /external/droiddriver/src/com/google/android/droiddriver/helpers/
BaseDroidDriverTest.java 115 if (failure instanceof OutOfMemoryError) {
126 if (e instanceof OutOfMemoryError && !(failure instanceof OutOfMemoryError)) {
136 return e instanceof UnrecoverableException || e instanceof OutOfMemoryError
  /art/test/114-ParallelGC/src/
Main.java 75 } catch (OutOfMemoryError oom) {
127 } catch (OutOfMemoryError oome) {
  /art/test/004-NativeAllocations/src/
Main.java 37 throw new OutOfMemoryError();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
ImageReaderTest.java 149 thenThrow(new OutOfMemoryError());
153 } catch(OutOfMemoryError e) {
  /libcore/luni/src/test/java/libcore/java/lang/
ThreadTest.java 40 } catch (OutOfMemoryError expected) {
53 } catch (OutOfMemoryError expected) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterTinyPlanet.java 98 } catch (java.lang.OutOfMemoryError e) {
135 } catch (java.lang.OutOfMemoryError e) {
  /packages/apps/Mms/src/com/android/mms/ui/
BasicSlideEditorView.java 106 } catch (java.lang.OutOfMemoryError e) {
140 } catch (java.lang.OutOfMemoryError e) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
EnableCollectionDebuggee.java 73 } catch ( OutOfMemoryError outOfMem ) {
74 logWriter.println("--> Debuggee: OutOfMemoryError!!!");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DisableCollectionDebuggee.java 75 } catch ( OutOfMemoryError outOfMem ) {
76 logWriter.println("--> Debuggee: OutOfMemoryError!!!");
EnableCollectionDebuggee.java 73 } catch ( OutOfMemoryError outOfMem ) {
74 logWriter.println("--> Debuggee: OutOfMemoryError!!!");
IsCollectedDebuggee.java 67 } catch ( OutOfMemoryError outOfMem ) {
68 logWriter.println("--> Debuggee: OutOfMemoryError!!!");
  /external/proguard/src/proguard/gui/
ProGuardRunnable.java 102 catch (OutOfMemoryError er)

Completed in 309 milliseconds

1 2 3 4 5