Home
last modified time | relevance | path

Searched refs:exceptionClass (Results 1 – 9 of 9) sorted by relevance

/external/guava/guava/src/com/google/common/util/concurrent/
DFutures.java1037 Future<V> future, Class<X> exceptionClass) throws X {
1039 checkArgument(!RuntimeException.class.isAssignableFrom(exceptionClass),
1041 exceptionClass);
1046 throw newWithCause(exceptionClass, e);
1048 wrapAndThrowExceptionOrError(e.getCause(), exceptionClass);
1103 Future<V> future, long timeout, TimeUnit unit, Class<X> exceptionClass)
1107 checkArgument(!RuntimeException.class.isAssignableFrom(exceptionClass),
1109 exceptionClass);
1114 throw newWithCause(exceptionClass, e);
1116 throw newWithCause(exceptionClass, e);
[all …]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DJSR166TestCase.java813 final Class<?> exceptionClass; field in JSR166TestCase.RunnableShouldThrow
815 <T extends Throwable> RunnableShouldThrow(Class<T> exceptionClass) { in RunnableShouldThrow() argument
816 this.exceptionClass = exceptionClass; in RunnableShouldThrow()
822 threadShouldThrow(exceptionClass.getSimpleName()); in run()
824 if (! exceptionClass.isInstance(t)) in run()
833 final Class<?> exceptionClass; field in JSR166TestCase.ThreadShouldThrow
835 <T extends Throwable> ThreadShouldThrow(Class<T> exceptionClass) { in ThreadShouldThrow() argument
836 this.exceptionClass = exceptionClass; in ThreadShouldThrow()
842 threadShouldThrow(exceptionClass.getSimpleName()); in run()
844 if (! exceptionClass.isInstance(t)) in run()
/external/compiler-rt/lib/
Dgcc_personality_v0.c186 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject, in __gcc_personality_sj0() argument
190 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject, in __gcc_personality_sj0()
/external/clang/test/SemaObjC/
Dbuiltin_objc_lib_functions.m26 int f6(Class exceptionClass, id exception) {
27 …return objc_exception_match(exceptionClass, exception); // expected-warning {{implicitly declaring…
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp553 uint64_t exceptionClass, in handleActionValue() argument
559 (exceptionClass != ourBaseExceptionClass)) in handleActionValue()
646 uint64_t exceptionClass, in handleLsda() argument
712 if (exceptionClass != ourBaseExceptionClass) { in handleLsda()
751 exceptionClass, in handleLsda()
829 uint64_t exceptionClass, in ourPersonality() argument
857 exceptionClass, in ourPersonality()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DAbstractIteratorTester.java119 PermittedMetaException(Class<? extends RuntimeException> exceptionClass) { in PermittedMetaException() argument
120 this(Collections.singleton(exceptionClass)); in PermittedMetaException()
/external/doclava/src/com/google/doclava/
DMethodInfo.java653 ClassInfo exceptionClass = new ClassInfo(exec); in addException() local
655 mThrownExceptions.add(exceptionClass); in addException()
/external/compiler-rt/
DREADME.txt217 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject,
/external/clang/include/clang/Basic/
DBuiltins.def800 // int objc_exception_match(Class exceptionClass, id exception)