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

1 2

  /frameworks/base/core/jni/
android_database_SQLiteCommon.cpp 63 const char* exceptionClass;
66 exceptionClass = "android/database/sqlite/SQLiteDiskIOException";
70 exceptionClass = "android/database/sqlite/SQLiteDatabaseCorruptException";
73 exceptionClass = "android/database/sqlite/SQLiteConstraintException";
76 exceptionClass = "android/database/sqlite/SQLiteAbortException";
79 exceptionClass = "android/database/sqlite/SQLiteDoneException";
83 exceptionClass = "android/database/sqlite/SQLiteFullException";
86 exceptionClass = "android/database/sqlite/SQLiteMisuseException";
89 exceptionClass = "android/database/sqlite/SQLiteAccessPermException";
92 exceptionClass = "android/database/sqlite/SQLiteDatabaseLockedException"
    [all...]
  /libcore/luni/src/main/native/
IcuUtilities.cpp 57 const char* exceptionClass = "java/lang/RuntimeException";
59 exceptionClass = "java/lang/IllegalArgumentException";
61 exceptionClass = "java/lang/ArrayIndexOutOfBoundsException";
63 exceptionClass = "java/lang/UnsupportedOperationException";
65 exceptionClass = "java/lang/ArithmeticException";
67 jniThrowExceptionFmt(env, exceptionClass, "%s failed: %s", function, u_errorName(error));
java_util_regex_Pattern.cpp 69 jclass exceptionClass = JniConstants::patternSyntaxExceptionClass;
70 jobject exception = env->NewObject(exceptionClass, method, message, pattern, error.offset);
  /dalvik/dexgen/src/com/android/dexgen/rop/
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...]
  /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);
  /libnativehelper/
JNIHelp.cpp 102 scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail
104 (*env)->GetObjectClass(e, exceptionClass.get())); // java.lang.Class, can't fail
108 (jstring) (*env)->CallObjectMethod(e, exceptionClass.get(), classGetNameMethod));
125 (*env)->GetMethodID(e, exceptionClass.get(), "getMessage", "()Ljava/lang/String;");
181 scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail
183 (*env)->GetMethodID(e, exceptionClass.get(), "printStackTrace", "(Ljava/io/PrintWriter;)V");
222 scoped_local_ref<jclass> exceptionClass(env, findClass(env, className));
223 if (exceptionClass.get() == NULL) {
229 if ((*env)->ThrowNew(e, exceptionClass.get(), msg) != JNI_OK) {
  /external/conscrypt/src/compat/native/
JNIHelp.cpp 94 jclass exceptionClass = env->FindClass(className);
96 if (exceptionClass == NULL) {
102 if (env->ThrowNew(exceptionClass, msg) != JNI_OK) {
108 env->DeleteLocalRef(exceptionClass);
  /ndk/sources/cxx-stl/gabi++/src/
helper_func_internal.h 99 uint64_t exceptionClass = unwind_exception->exception_class; \
130 __gxx_personality_v0(int version, _Unwind_Action actions, uint64_t exceptionClass, \
personality.cc 61 bool native_exception = exceptionClass == __gxx_exception_class;
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
JSR166TestCase.java 813 final Class<?> exceptionClass;
815 <T extends Throwable> RunnableShouldThrow(Class<T> exceptionClass) {
816 this.exceptionClass = exceptionClass;
822 threadShouldThrow(exceptionClass.getSimpleName());
824 if (! exceptionClass.isInstance(t))
833 final Class<?> exceptionClass;
835 <T extends Throwable> ThreadShouldThrow(Class<T> exceptionClass) {
836 this.exceptionClass = exceptionClass;
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
JSR166TestCase.java 686 final Class<?> exceptionClass;
688 <T extends Throwable> RunnableShouldThrow(Class<T> exceptionClass) {
689 this.exceptionClass = exceptionClass;
695 threadShouldThrow(exceptionClass.getSimpleName());
697 if (! exceptionClass.isInstance(t))
706 final Class<?> exceptionClass;
708 <T extends Throwable> ThreadShouldThrow(Class<T> exceptionClass) {
709 this.exceptionClass = exceptionClass;
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Futures.java     [all...]
  /ndk/sources/cxx-stl/gabi++/include/
unwind-itanium.h 63 uint64_t exceptionClass,
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
unwind-itanium.h 63 uint64_t exceptionClass,
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
unwind-itanium.h 63 uint64_t exceptionClass,
  /external/compiler-rt/lib/builtins/
gcc_personality_v0.c 187 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject,
192 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject,
  /frameworks/base/packages/PrintSpooler/jni/
com_android_printspooler_util_BitmapSerializeUtils.cpp 68 jclass exceptionClass = env->FindClass(className);
69 env->ThrowNew(exceptionClass, message);
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 258 CstType exceptionClass = one.getExceptionClass();
261 ((exceptionClass == CstType.OBJECT) ? "<any>" :
262 exceptionClass.toHuman()) + " -> " +
  /external/libcxxabi/include/
unwind.h 140 uint64_t exceptionClass,
148 uint64_t exceptionClass,
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/
unwind.h 136 uint64_t exceptionClass,
143 uint64_t exceptionClass,
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 544 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
553 uint64_t exceptionClass,
559 (exceptionClass != ourBaseExceptionClass))
638 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
646 uint64_t exceptionClass,
712 if (exceptionClass != ourBaseExceptionClass) {
751 exceptionClass,
822 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
829 uint64_t exceptionClass,
857 exceptionClass,
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractIteratorTester.java 119 PermittedMetaException(Class<? extends RuntimeException> exceptionClass) {
120 this(Collections.singleton(exceptionClass));
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubyrun.swg 131 VALUE exceptionClass = getExceptionClass();
132 if (rb_obj_is_kind_of(obj, exceptionClass)) {
  /art/runtime/jdwp/
jdwp_event.cc 113 ModBasket() : pLoc(nullptr), thread(nullptr), locationClass(nullptr), exceptionClass(nullptr),
120 mirror::Class* exceptionClass; /* ExceptionOnly */
507 !Dbg::MatchType(basket.exceptionClass, pMod->exceptionOnly.refTypeId)) {
    [all...]

Completed in 1800 milliseconds

1 2