HomeSort by relevance Sort by last modified time
    Searched refs:exceptionClass (Results 1 - 11 of 11) sorted by null

  /dalvik/dx/src/com/android/dx/cf/code/
ByteCatchList.java 85 * @param exceptionClass {@code null-ok;} the exception class or
89 CstType exceptionClass) {
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
235 private final CstType exceptionClass;
245 * @param exceptionClass {@code null-ok;} the exception class or
249 CstType exceptionClass) {
265 this.exceptionClass = exceptionClass;
303 return (exceptionClass != null) ?
304 exceptionClass : CstType.OBJECT
    [all...]
Frame.java 393 * @param exceptionClass exception that the handler block will handle
396 public Frame makeExceptionHandlerStartFrame(CstType exceptionClass) {
400 newStack.push(exceptionClass);
Ropper.java 808 CstType exceptionClass = one.getExceptionClass();
811 catchesAny |= (exceptionClass == CstType.OBJECT);
813 Frame f = frame.makeExceptionHandlerStartFrame(exceptionClass);
831 catchTypes[targ] = exceptionClass.getClassType();
832 } else if (already != exceptionClass.getClassType()) {
    [all...]
  /dalvik/vm/
Exception.h 60 void dvmThrowChainedExceptionByClass(ClassObject* exceptionClass,
62 INLINE void dvmThrowExceptionByClass(ClassObject* exceptionClass,
65 dvmThrowChainedExceptionByClass(exceptionClass, msg, NULL);
85 void dvmThrowExceptionByClassWithClassMessage(ClassObject* exceptionClass,
Exception.c 345 void dvmThrowExceptionByClassWithClassMessage(ClassObject* exceptionClass,
350 dvmThrowExceptionByClass(exceptionClass, message);
    [all...]
  /libcore/luni/src/main/native/
java_util_regex_Pattern.cpp 39 jclass exceptionClass = JniConstants::patternSyntaxExceptionClass;
40 jobject exception = env->NewObject(exceptionClass, method, message, pattern, error.offset);
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
JSR166TestCase.java 516 final Class<?> exceptionClass;
518 <T extends Throwable> RunnableShouldThrow(Class<T> exceptionClass) {
519 this.exceptionClass = exceptionClass;
525 threadShouldThrow(exceptionClass.getSimpleName());
527 if (! exceptionClass.isInstance(t))
536 final Class<?> exceptionClass;
538 <T extends Throwable> ThreadShouldThrow(Class<T> exceptionClass) {
539 this.exceptionClass = exceptionClass;
    [all...]
  /frameworks/base/core/jni/
android_database_SQLiteDatabase.cpp 520 const char* exceptionClass;
523 exceptionClass = "android/database/sqlite/SQLiteDiskIOException";
526 exceptionClass = "android/database/sqlite/SQLiteDatabaseCorruptException";
529 exceptionClass = "android/database/sqlite/SQLiteConstraintException";
532 exceptionClass = "android/database/sqlite/SQLiteAbortException";
535 exceptionClass = "android/database/sqlite/SQLiteDoneException";
538 exceptionClass = "android/database/sqlite/SQLiteFullException";
541 exceptionClass = "android/database/sqlite/SQLiteMisuseException";
544 exceptionClass = "android/database/sqlite/SQLiteException";
554 jniThrowException(env, exceptionClass, fullMessage)
    [all...]
  /dalvik/libnativehelper/
JNIHelp.c 179 jclass exceptionClass;
195 exceptionClass = (*env)->FindClass(env, className);
196 if (exceptionClass == NULL) {
203 if ((*env)->ThrowNew(env, exceptionClass, msg) != JNI_OK) {
209 (*env)->DeleteLocalRef(env, exceptionClass);
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 257 CstType exceptionClass = one.getExceptionClass();
260 ((exceptionClass == CstType.OBJECT) ? "<any>" :
261 exceptionClass.toHuman()) + " -> " +
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 1572 milliseconds