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

1 2 3 4

  /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) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
OutOfMemoryErrorTest.java 23 * @tests java.lang.OutOfMemoryError#OutOfMemoryError()
26 // Test for method java.lang.OutOfMemoryError()
27 Error e = new OutOfMemoryError();
33 * @tests 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");
RuntimeTest.java 111 } catch (OutOfMemoryError oome ) {
  /art/test/202-thread-oome/src/
Main.java 22 } catch (OutOfMemoryError expected) {
  /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) {
  /dalvik/tests/080-oom-throw/src/
Main.java 26 } catch (OutOfMemoryError oome) {
41 } catch (OutOfMemoryError e) {
  /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");
  /dalvik/tests/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");
  /libcore/luni/src/test/java/libcore/java/lang/
ThreadTest.java 40 } catch (OutOfMemoryError expected) {
53 } catch (OutOfMemoryError expected) {
  /art/test/NativeAllocations/
NativeAllocations.java 36 throw new OutOfMemoryError();
  /dalvik/tests/098-native-allocations/src/
Main.java 36 throw new OutOfMemoryError();
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationListCopy.java 74 } catch (OutOfMemoryError e) {
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
ImageReaderTest.java 149 thenThrow(new OutOfMemoryError());
153 } catch(OutOfMemoryError e) {
  /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 105 } catch (java.lang.OutOfMemoryError e) {
139 } catch (java.lang.OutOfMemoryError e) {
ImageAttachmentView.java 76 } catch (java.lang.OutOfMemoryError e) {
SlideListItemView.java 92 } catch (java.lang.OutOfMemoryError e) {
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
JavaBrowserViewRendererHelper.java 46 } catch (OutOfMemoryError e) {
  /external/proguard/src/proguard/gui/
ProGuardRunnable.java 102 catch (OutOfMemoryError er)
ReTraceRunnable.java 108 catch (OutOfMemoryError er)
  /frameworks/base/services/java/com/android/server/net/
NetworkStatsRecorder.java 138 } catch (OutOfMemoryError e) {
232 } catch (OutOfMemoryError e) {
250 } catch (OutOfMemoryError e) {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmapView.java 94 } catch (OutOfMemoryError error) {
  /frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
FakeBackgroundService.java 55 } catch (OutOfMemoryError e) {
  /libcore/luni/src/test/java/tests/api/java/lang/ref/
SoftReferenceTest.java 82 @SideEffect("Causes OutOfMemoryError to test finalization")
114 } catch(OutOfMemoryError ofme) {
122 "if OutOfMemoryError is thrown.", r.get());

Completed in 682 milliseconds

1 2 3 4