Searched defs:cause (Results 1 - 9 of 9) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DMutabilityException.java28 public MutabilityException(Throwable cause) { argument
29 super(cause);
32 public MutabilityException(String message, Throwable cause) { argument
33 super(message, cause);
H A DExceptionWithContext.java65 * @param cause {@code null-ok;} exception that caused this one
67 public ExceptionWithContext(Throwable cause) { argument
68 this(null, cause);
75 * @param cause {@code null-ok;} exception that caused this one
77 public ExceptionWithContext(String message, Throwable cause) { argument
79 (cause != null) ? cause.getMessage() : null,
80 cause);
82 if (cause instanceof ExceptionWithContext) {
83 String ctx = ((ExceptionWithContext) cause)
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DMutabilityException.java30 public MutabilityException(Throwable cause) { argument
31 super(cause);
34 public MutabilityException(String message, Throwable cause) { argument
35 super(message, cause);
/dalvik/dx/src/com/android/dx/cf/code/
H A DSimException.java30 public SimException(Throwable cause) { argument
31 super(cause);
34 public SimException(String message, Throwable cause) { argument
35 super(message, cause);
/dalvik/dx/src/com/android/dx/cf/iface/
H A DParseException.java30 public ParseException(Throwable cause) { argument
31 super(cause);
34 public ParseException(String message, Throwable cause) { argument
35 super(message, cause);
/dalvik/tests/086-null-super/src/
H A DMain.java29 public TestFailed(Throwable cause) { argument
30 super(cause);
125 * its cause.
156 Throwable cause = ite.getCause();
157 if (cause instanceof NullPointerException) {
/dalvik/tests/087-gc-after-link/src/
H A DMain.java29 public TestFailed(Throwable cause) { argument
30 super(cause);
134 * its cause.
165 Throwable cause = ite.getCause();
166 if (cause instanceof NullPointerException) {
/dalvik/vm/analysis/
H A DOptimize.cpp465 Object* cause = dvmGetExceptionCause(excep); local
466 if (cause == NULL)
468 excep = cause;
927 * instantiation will cause us to call a method that does nothing.
/dalvik/vm/
H A DException.cpp46 location before handling any opcode that could cause the VM to throw
84 This is a risk for anything that could cause <clinit> to execute, e.g.
86 a field that doesn't exist in a class that does exist might cause this.
99 static bool initException(Object* exception, const char* msg, Object* cause,
112 Object* cause)
134 "failed to init original exception class", cause);
164 if (!initException(exception, msg, cause, self)) {
189 Object* cause)
193 dvmThrowChainedException(exceptionClass, message, cause);
240 * Either or both of "msg" and "cause" ma
111 dvmThrowChainedException(ClassObject* excepClass, const char* msg, Object* cause) argument
187 dvmThrowChainedExceptionWithClassMessage( ClassObject* exceptionClass, const char* messageDescriptor, Object* cause) argument
247 initException(Object* exception, const char* msg, Object* cause, Thread* self) argument
546 Object* cause = local
1165 Object* cause; local
1261 dvmThrowChainedClassNotFoundException(const char* name, Object* cause) argument
1379 dvmThrowChainedNoClassDefFoundError(const char* descriptor, Object* cause) argument
[all...]

Completed in 136 milliseconds