Home
last modified time | relevance | path

Searched defs:exceptionType (Results 1 – 25 of 43) sorted by relevance

12

/external/guava/guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/
DGwtFuturesCatchingSpecialization.java38 Class<Throwable> exceptionType, in catching()
45 Class<Throwable> exceptionType, in catching()
55 Class<Throwable> exceptionType, in catchingAsync()
62 Class<Throwable> exceptionType, in catchingAsync()
DGwtFluentFutureCatchingSpecialization.java33 Class<Throwable> exceptionType, in catching()
40 Class<Throwable> exceptionType, in catchingAsync()
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
DExceptionRecorder.java24 private Class<?> exceptionType; field in ExceptionRecorder
45 public void assertException(final Class<? extends Throwable> exceptionType, in assertException()
51 public void assertException(final Class<? extends Throwable> exceptionType, in assertException()
/external/guava/android/guava/src/com/google/common/util/concurrent/
DAbstractCatchingFuture.java35 Class<X> exceptionType, in create()
45 Class<X> exceptionType, in create()
58 @NullableDecl Class<X> exceptionType; field in AbstractCatchingFuture
62 ListenableFuture<? extends V> inputFuture, Class<X> exceptionType, F fallback) { in AbstractCatchingFuture()
168 Class<X> exceptionType, in AsyncCatchingFuture()
199 Class<X> exceptionType, in CatchingFuture()
DFluentFuture.java168 Class<X> exceptionType, Function<? super X, ? extends V> fallback, Executor executor) { in catching()
232 Class<X> exceptionType, AsyncFunction<? super X, ? extends V> fallback, Executor executor) { in catchingAsync()
DFutures.java329 Class<X> exceptionType, in catching()
398 Class<X> exceptionType, in catchingAsync()
/external/guava/guava/src/com/google/common/util/concurrent/
DAbstractCatchingFuture.java35 Class<X> exceptionType, in create()
45 Class<X> exceptionType, in create()
58 @Nullable Class<X> exceptionType; field in AbstractCatchingFuture
62 ListenableFuture<? extends V> inputFuture, Class<X> exceptionType, F fallback) { in AbstractCatchingFuture()
167 Class<X> exceptionType, in AsyncCatchingFuture()
198 Class<X> exceptionType, in CatchingFuture()
DFluentFuture.java168 Class<X> exceptionType, Function<? super X, ? extends V> fallback, Executor executor) { in catching()
232 Class<X> exceptionType, AsyncFunction<? super X, ? extends V> fallback, Executor executor) { in catchingAsync()
DFutures.java329 Class<X> exceptionType, in catching()
398 Class<X> exceptionType, in catchingAsync()
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DFuturesGetCheckedBenchmark.java79 final Class<? extends Exception> exceptionType; field in FuturesGetCheckedBenchmark.ExceptionType
81 ExceptionType(Class<? extends Exception> exceptionType) { in ExceptionType()
103 @Param ExceptionType exceptionType; field in FuturesGetCheckedBenchmark
119 Class<? extends Exception> exceptionType = this.exceptionType.exceptionType; in addOtherEntries() local
144 Class<? extends Exception> exceptionType = this.exceptionType.exceptionType; in benchmarkGetChecked() local
/external/guava/android/guava-tests/benchmark/com/google/common/util/concurrent/
DFuturesGetCheckedBenchmark.java79 final Class<? extends Exception> exceptionType; field in FuturesGetCheckedBenchmark.ExceptionType
81 ExceptionType(Class<? extends Exception> exceptionType) { in ExceptionType()
103 @Param ExceptionType exceptionType; field in FuturesGetCheckedBenchmark
119 Class<? extends Exception> exceptionType = this.exceptionType.exceptionType; in addOtherEntries() local
144 Class<? extends Exception> exceptionType = this.exceptionType.exceptionType; in benchmarkGetChecked() local
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
DBuilderExceptionHandler.java39 @Nullable final BuilderTypeReference exceptionType; field in BuilderExceptionHandler
42 BuilderExceptionHandler(@Nullable BuilderTypeReference exceptionType, int handlerCodeAddress) { in BuilderExceptionHandler()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
DImmutableExceptionHandler.java43 @Nullable protected final String exceptionType; field in ImmutableExceptionHandler
46 public ImmutableExceptionHandler(@Nullable String exceptionType, in ImmutableExceptionHandler()
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DCatchMethodItem.java39 private final String exceptionType; field in CatchMethodItem
46 … int codeAddress, @Nullable String exceptionType, int startAddress, int endAddress, in CatchMethodItem()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DBuilderTryBlock.java50 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable String exceptionType, in BuilderTryBlock()
57 …ic BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable TypeReference exceptionType, in BuilderTryBlock()
DBuilderExceptionHandler.java52 static BuilderExceptionHandler newExceptionHandler(@Nullable final TypeReference exceptionType, in newExceptionHandler()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
DBaseExceptionHandler.java46 final String exceptionType = getExceptionType(); in getExceptionTypeReference() local
/external/catch2/include/
Dcatch.hpp107 #define CATCH_REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CATCH_REQUIRE_THR… argument
110 #define CATCH_REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES(… argument
121 #define CATCH_CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CATCH_CHECK_THROWS_… argument
124 #define CATCH_CHECK_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "… argument
189 #define REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "REQUIRE_THROWS_AS", exc… argument
192 #define REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "REQU… argument
203 #define CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CHECK_THROWS_AS", excepti… argument
206 #define CHECK_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "CHECK_… argument
281 #define CATCH_REQUIRE_THROWS_AS( expr, exceptionType ) (void)(0) argument
284 #define CATCH_REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) (void)(0) argument
[all …]
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
DSmalideaExceptionHandler.java51 SmaliClassTypeElement exceptionType = catchStatement.getExceptionType(); in getExceptionType() local
/external/mockito/src/test/java/org/mockitoutil/
DThrowableAssert.java26 public ThrowableAssert throwsException(Class<? extends Throwable> exceptionType) { in throwsException()
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DRobolectricGeneratorAdapter.java82 public TryCatch tryStart(Type exceptionType) { in tryStart()
/external/catch2/include/internal/
Dcatch_capture.hpp68 #define INTERNAL_CATCH_THROWS_AS( macroName, exceptionType, resultDisposition, expr ) argument
104 #define INTERNAL_CATCH_THROWS_AS( macroName, exceptionType, resultDisposition, expr ) \ argument
Dcatch_capture_matchers.h68 #define INTERNAL_CATCH_THROWS_MATCHES( macroName, exceptionType, resultDisposition, matcher, ... ) \ argument
/external/libcxxabi/src/
Dcxa_exception.hpp41 std::type_info *exceptionType; member
78 std::type_info *exceptionType; member
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
DProviderChecker.java70 Type exceptionType = genericThrowingProvider.getActualTypeArguments()[1]; in checkInterface() local

12