OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OutOfMemoryError
(Results
1 - 25
of
60
) sorted by null
1
2
3
/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 ) {
/libcore/luni/src/test/java/libcore/java/lang/
ThreadTest.java
29
} catch (
OutOfMemoryError
expected) {
42
} catch (
OutOfMemoryError
expected) {
/dalvik/tests/061-out-of-memory/src/
Main.java
21
* Exercise the construction and throwing of
OutOfMemoryError
.
38
} catch (
OutOfMemoryError
oom) {
58
} catch (
OutOfMemoryError
oom) {
65
"
OutOfMemoryError
not thrown");
92
} catch (
OutOfMemoryError
oom) {
113
"
OutOfMemoryError
not thrown while filling heap");
/dalvik/tests/080-oom-throw/src/
Main.java
24
} catch (
OutOfMemoryError
oome) {
43
} catch (
OutOfMemoryError
e) {
/packages/apps/Mms/src/com/android/mms/ui/
BasicSlideEditorView.java
107
} catch (java.lang.
OutOfMemoryError
e) {
141
} catch (java.lang.
OutOfMemoryError
e) {
ImageAttachmentView.java
76
} catch (java.lang.
OutOfMemoryError
e) {
VideoAttachmentView.java
97
} catch (java.lang.
OutOfMemoryError
e) {
UriImage.java
256
} catch (
OutOfMemoryError
e) {
257
Log.w(TAG, "getResizedImageData: img too large to decode (
OutOfMemoryError
), " +
322
} catch (java.lang.
OutOfMemoryError
e) {
323
Log.w(TAG, "getResizedImageData - image too big (
OutOfMemoryError
), will try "
344
} catch (java.lang.
OutOfMemoryError
e) {
MmsThumbnailPresenter.java
90
} catch (java.lang.
OutOfMemoryError
e) {
SlideshowAttachmentView.java
78
} catch (java.lang.
OutOfMemoryError
e) {
SlideListItemView.java
92
} catch (java.lang.
OutOfMemoryError
e) {
/external/proguard/src/proguard/gui/
ProGuardRunnable.java
102
catch (
OutOfMemoryError
er)
ReTraceRunnable.java
108
catch (
OutOfMemoryError
er)
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmapView.java
94
} catch (
OutOfMemoryError
error) {
/frameworks/base/core/java/android/app/
WallpaperManager.java
227
} catch (
OutOfMemoryError
e) {
262
} catch (
OutOfMemoryError
e) {
290
} catch (
OutOfMemoryError
e) {
750
} catch (
OutOfMemoryError
e) {
/libcore/luni/src/test/java/tests/api/java/lang/ref/
SoftReferenceTest.java
81
@SideEffect("Causes
OutOfMemoryError
to test finalization")
113
} catch(
OutOfMemoryError
ofme) {
121
"if
OutOfMemoryError
is thrown.", r.get());
/external/javasqlite/src/main/java/SQLite/
Database.java
40
} catch (java.lang.
OutOfMemoryError
me) {
69
} catch (java.lang.
OutOfMemoryError
me) {
99
} catch (java.lang.
OutOfMemoryError
me) {
/packages/apps/Email/src/com/android/email/activity/
ContactStatusLoader.java
136
} catch (
OutOfMemoryError
e) {
/frameworks/base/tests/CoreTests/android/core/
HeapTest.java
434
} catch (
OutOfMemoryError
oom) {
441
"
OutOfMemoryError
not thrown");
463
} catch (
OutOfMemoryError
oom) {
469
"
OutOfMemoryError
not thrown while filling heap");
/packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java
207
} catch (
OutOfMemoryError
oome) {
318
} catch (
OutOfMemoryError
oome) {
/packages/apps/Mms/src/com/android/mms/model/
ImageModel.java
165
} catch (
OutOfMemoryError
ex) {
196
} catch (
OutOfMemoryError
ex) {
/frameworks/base/media/java/android/media/
ThumbnailUtils.java
126
} catch (
OutOfMemoryError
oom) {
127
Log.e(TAG, "Unable to decode file " + filePath + ".
OutOfMemoryError
.", oom);
321
} catch (
OutOfMemoryError
ex) {
/packages/apps/Gallery/src/com/android/camera/
Util.java
76
} catch (
OutOfMemoryError
ex) {
325
} catch (
OutOfMemoryError
ex) {
Completed in 1745 milliseconds
1
2
3