HomeSort by relevance Sort by last modified time
    Searched defs:exceptionClass (Results 1 - 25 of 38) 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 56 const char* exceptionClass = "java/lang/RuntimeException";
58 exceptionClass = "java/lang/IllegalArgumentException";
60 exceptionClass = "java/lang/ArrayIndexOutOfBoundsException";
62 exceptionClass = "java/lang/UnsupportedOperationException";
64 exceptionClass = "java/lang/ArithmeticException";
66 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);
  /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);
  /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...]
Ropper.java 911 CstType exceptionClass = one.getExceptionClass();
914 catchesAny |= (exceptionClass == CstType.OBJECT);
916 Frame f = frame.makeExceptionHandlerStartFrame(exceptionClass);
935 ExceptionHandlerSetup handler = handlers.getSetup(exceptionClass.getClassType());
    [all...]
  /frameworks/base/packages/PrintSpooler/jni/
com_android_printspooler_util_BitmapSerializeUtils.cpp 68 jclass exceptionClass = env->FindClass(className);
69 env->ThrowNew(exceptionClass, message);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
JSR166TestCase.java 815 final Class<?> exceptionClass;
817 <T extends Throwable> RunnableShouldThrow(Class<T> exceptionClass) {
818 this.exceptionClass = exceptionClass;
824 threadShouldThrow(exceptionClass.getSimpleName());
826 if (! exceptionClass.isInstance(t))
835 final Class<?> exceptionClass;
837 <T extends Throwable> ThreadShouldThrow(Class<T> exceptionClass) {
838 this.exceptionClass = exceptionClass;
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
JSR166TestCase.java 744 final Class<?> exceptionClass;
746 <T extends Throwable> RunnableShouldThrow(Class<T> exceptionClass) {
747 this.exceptionClass = exceptionClass;
753 threadShouldThrow(exceptionClass.getSimpleName());
755 if (! exceptionClass.isInstance(t))
764 final Class<?> exceptionClass;
766 <T extends Throwable> ThreadShouldThrow(Class<T> exceptionClass) {
767 this.exceptionClass = exceptionClass;
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 258 CstType exceptionClass = one.getExceptionClass();
261 ((exceptionClass == CstType.OBJECT) ? "<any>" :
262 exceptionClass.toHuman()) + " -> " +
  /art/runtime/jdwp/
jdwp_event.cc 117 exceptionClass(hs.NewHandle<mirror::Class>(nullptr)),
127 MutableHandle<mirror::Class> exceptionClass; /* ExceptionOnly */
492 !Dbg::MatchType(basket.exceptionClass.Get(), pMod->exceptionOnly.refTypeId)) {
    [all...]
  /external/doclava/src/com/google/doclava/
MethodInfo.java 697 ClassInfo exceptionClass = new ClassInfo(exec);
699 mThrownExceptions.add(exceptionClass);
  /frameworks/base/services/core/jni/
com_android_server_location_FlpHardwareProvider.cpp 77 jclass exceptionClass = env->FindClass("java/lang/RuntimeException");
78 env->ThrowNew(exceptionClass, methodName);
  /prebuilts/sdk/tools/lib/
dx.jar 
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
guava-17.0.jar 

Completed in 3073 milliseconds

1 2