Home
last modified time | relevance | path

Searched defs:exception (Results 1 – 25 of 1012) sorted by relevance

12345678910>>...41

/external/ow2-asm/asm-util/src/test/java/org/objectweb/asm/util/
DCheckMethodAdapterTest.java69 Exception exception = assertThrows(IllegalArgumentException.class, visitTypeAnnotation); in testVisitTypeAnnotation_illegalTypeRef() local
80 Exception exception = assertThrows(IllegalArgumentException.class, visitParameterAnnotation); in testVisitParameterAnnotation_invisibleAnnotation_illegalParameterIndex() local
91 Exception exception = assertThrows(IllegalArgumentException.class, visitParameterAnnotation); in testVisitParameterAnnotation_visibleAnnotation_illegalParameterIndex() local
100 Exception exception = assertThrows(IllegalArgumentException.class, visitParameterAnnotation); in testVisitParameterAnnotation_illegalDescriptor() local
110 Exception exception = assertThrows(IllegalStateException.class, visitAttribute); in testVisitAttribute_afterEnd() local
118 Exception exception = assertThrows(IllegalArgumentException.class, visitAttribute); in testVisitAttribute_nullAttribute() local
129 Exception exception = assertThrows(UnsupportedOperationException.class, visitCode); in testVisitCode_abstractMethod() local
139 Exception exception = assertThrows(IllegalArgumentException.class, visitFrame); in testVisitFrame_illegalFrameType() local
150 Exception exception = assertThrows(IllegalArgumentException.class, visitFrame); in testVisitFrame_illegalLocalCount() local
161 Exception exception = assertThrows(IllegalArgumentException.class, visitFrame); in testVisitFrame_illegalStackCount() local
[all …]
DCheckClassAdapterTest.java78 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_illegalClassAccessFlag() local
88 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_illegalClassName() local
99 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_nonJavaIdentifierClassNamePre15() local
123 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_illegalSuperClass() local
136 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_moduleInfoSuperClass() local
147 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_illegalInterfaceSuperClass() local
159 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_illegalSignature() local
172 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_illegalAccessFlagSet() local
184 Exception exception = assertThrows(IllegalStateException.class, visit); in testVisit_illegalMultipleCalls() local
195 Exception exception = assertThrows(IllegalArgumentException.class, visitModule); in testVisitModule_illegalModuleName() local
[all …]
DCheckModuleAdapterTest.java60 Exception exception = assertThrows(IllegalArgumentException.class, visitRequire); in testVisitRequire_javaBaseTransitive() local
74 Exception exception = assertThrows(IllegalArgumentException.class, visitRequire); in testVisitRequire_javaBaseStaticPhase() local
90 Exception exception = assertThrows(IllegalArgumentException.class, visitRequire); in testVisitRequire_javaBaseTransitiveAndStaticPhase() local
133 Exception exception = assertThrows(UnsupportedOperationException.class, visitOpen); in testVisitOpen_openModule() local
144 Exception exception = assertThrows(IllegalArgumentException.class, visitUse); in testVisitUse_nameAlreadyDeclared() local
155 Exception exception = assertThrows(IllegalStateException.class, visitUse); in testVisitUse_afterEnd() local
166 Exception exception = assertThrows(IllegalArgumentException.class, visitProvide); in testVisitProvide_nullProviderList() local
176 Exception exception = assertThrows(IllegalArgumentException.class, visitProvide); in testVisitProvide_emptyProviderList() local
DCheckAnnotationAdapterTest.java51 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_illegalAnnotationName() local
61 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_illegalAnnotationValue1() local
71 Exception exception = assertThrows(IllegalArgumentException.class, visit); in testVisit_illegalAnnotationValue2() local
82 Exception exception = assertThrows(IllegalStateException.class, visit); in testVisit_afterEnd() local
93 Exception exception = assertThrows(IllegalArgumentException.class, visitEnum); in testVisitEnum_illegalAnnotationEnumValue() local
DPrinterTest.java55 Exception exception = assertThrows(UnsupportedOperationException.class, visitModule); in testVisitModule_unsupportedByDefault() local
65 Exception exception = assertThrows(UnsupportedOperationException.class, visitNestHost); in testVisitNestHost_unsupportedByDefault() local
76 Exception exception = in testVisitClassTypeAnnotation_unsupportedByDefault() local
87 Exception exception = assertThrows(UnsupportedOperationException.class, visitNestMember); in testVisitNestMember_unsupportedByDefault() local
97 Exception exception = assertThrows(UnsupportedOperationException.class, visitPermittedSubclass); in testVisitPermittedSubclass_unsupportedByDefault() local
107 Exception exception = assertThrows(UnsupportedOperationException.class, visitMainClass); in testVisitMainClass_unsupportedByDefault() local
117 Exception exception = assertThrows(UnsupportedOperationException.class, visitPackage); in testVisitPackage_unsupportedByDefault() local
127 Exception exception = assertThrows(UnsupportedOperationException.class, visitRequire); in testVisitRequire_unsupportedByDefault() local
137 Exception exception = assertThrows(UnsupportedOperationException.class, visitExport); in testVisitExport_unsupportedByDefault() local
147 Exception exception = assertThrows(UnsupportedOperationException.class, visitOpen); in testVisitOpen_unsupportedByDefault() local
[all …]
/external/apache-xml/src/main/java/org/apache/xml/utils/
DDefaultErrorHandler.java117 public void warning(SAXParseException exception) throws SAXException in warning()
146 public void error(SAXParseException exception) throws SAXException in error()
173 public void fatalError(SAXParseException exception) throws SAXException in fatalError()
198 public void warning(TransformerException exception) throws TransformerException in warning()
228 public void error(TransformerException exception) throws TransformerException in error()
263 public void fatalError(TransformerException exception) throws TransformerException in fatalError()
278 public static void ensureLocationSet(TransformerException exception) in ensureLocationSet()
310 public static void printLocation(PrintStream pw, TransformerException exception) in printLocation()
315 public static void printLocation(java.io.PrintStream pw, org.xml.sax.SAXParseException exception) in printLocation()
320 public static void printLocation(PrintWriter pw, Throwable exception) in printLocation()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/test/java/com/google/android/exoplayer2/upstream/
DDefaultLoadErrorHandlingPolicyTest.java57 InvalidResponseCodeException exception = buildInvalidResponseCodeException(403, "Forbidden"); in getFallbackSelectionFor_responseCode403() local
85 InvalidResponseCodeException exception = buildInvalidResponseCodeException(404, "Not found"); in getFallbackSelectionFor_responseCode404() local
114 InvalidResponseCodeException exception = buildInvalidResponseCodeException(410, "Gone"); in getFallbackSelectionFor_responseCode410() local
143 InvalidResponseCodeException exception = in getFallbackSelectionFor_responseCode500() local
173 InvalidResponseCodeException exception = in getFallbackSelectionFor_responseCode503() local
203 InvalidResponseCodeException exception = buildInvalidResponseCodeException(418, "I'm a teapot"); in getFallbackSelectionFor_dontExcludeUnexpectedHttpCodes() local
228 IOException exception = new IOException(); in getFallbackSelectionFor_dontExcludeUnexpectedExceptions() local
269 IOException exception, in getDefaultPolicyFallbackSelection()
287 private static long getDefaultPolicyRetryDelayOutputFor(IOException exception, int errorCount) { in getDefaultPolicyRetryDelayOutputFor()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/test/java/com/google/android/exoplayer2/upstream/
DDefaultLoadErrorHandlingPolicyTest.java57 InvalidResponseCodeException exception = buildInvalidResponseCodeException(403, "Forbidden"); in getFallbackSelectionFor_responseCode403() local
85 InvalidResponseCodeException exception = buildInvalidResponseCodeException(404, "Not found"); in getFallbackSelectionFor_responseCode404() local
114 InvalidResponseCodeException exception = buildInvalidResponseCodeException(410, "Gone"); in getFallbackSelectionFor_responseCode410() local
143 InvalidResponseCodeException exception = in getFallbackSelectionFor_responseCode500() local
173 InvalidResponseCodeException exception = in getFallbackSelectionFor_responseCode503() local
203 InvalidResponseCodeException exception = buildInvalidResponseCodeException(418, "I'm a teapot"); in getFallbackSelectionFor_dontExcludeUnexpectedHttpCodes() local
228 IOException exception = new IOException(); in getFallbackSelectionFor_dontExcludeUnexpectedExceptions() local
269 IOException exception, in getDefaultPolicyFallbackSelection()
287 private static long getDefaultPolicyRetryDelayOutputFor(IOException exception, int errorCount) { in getDefaultPolicyRetryDelayOutputFor()
/external/cronet/buildtools/third_party/libc++abi/trunk/test/
Dexception_object_alignment.2.pass.cpp19 struct exception { struct
20 exception() : x(0) { } in exception() argument
21 virtual ~exception() { } in ~exception() argument
25 struct foo : exception { }; argument
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/error/
DMarkedYAMLExceptionTest.java24 MarkedYAMLException exception = new MarkedYAMLException(null, null, "Error happened", mark); in testToString1() local
32 MarkedYAMLException exception = new MarkedYAMLException("See http://www.google.com", mark, in testToString2() local
40 MarkedYAMLException exception = new MarkedYAMLException("See http://www.google.com", null, in testToString3() local
47 MarkedYAMLException exception = new MarkedYAMLException("See http://www.google.com", mark, in testToString4() local
54 MarkedYAMLException exception = new MarkedYAMLException("See http://www.google.com", mark, in testGetters() local
/external/slf4j/osgi-over-slf4j/src/main/java/org/slf4j/osgi/logservice/impl/
DLogServiceImpl.java100 public void log(int level, String message, Throwable exception) { in log()
179 public void log(ServiceReference sr, int level, String message, Throwable exception) { in log()
184 delegate.debug(createMessage(sr, message), exception); in log() local
189 delegate.error(createMessage(sr, message), exception); in log() local
194 delegate.info(createMessage(sr, message), exception); in log() local
199 delegate.warn(createMessage(sr, message), exception); in log() local
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/
DJobNestedExceptionsTest.kt16 val exception = captureExceptionsRun { in testExceptionUnwrapping() constant
40 val exception = captureExceptionsRun { in testExceptionUnwrappingWithSuspensions() constant
69 val exception = captureExceptionsRun { in testNestedAtomicThrow() constant
112 val exception = exceptions[0] in testChildThrowsDuringCompletion() constant
DJobExceptionHandlingTest.kt23 val exception = captureExceptionsRun { in <lambda>() constant
84 val exception = captureExceptionsRun { in <lambda>() constant
108 val exception = captureExceptionsRun { in <lambda>() constant
144 val exception = captureExceptionsRun { in <lambda>() constant
172 val exception = captureExceptionsRun { in <lambda>() constant
208 val exception = captureExceptionsRun { in <lambda>() constant
250 val exception = captureExceptionsRun { in <lambda>() constant
/external/ImageMagick/MagickCore/
Dlayer.c102 ExceptionInfo *exception) in ClearBounds()
167 const Image *image2,RectangleInfo *bounds,ExceptionInfo *exception) in IsBoundsCleared()
230 MagickExport Image *CoalesceImages(const Image *image,ExceptionInfo *exception) in CoalesceImages()
397 MagickExport Image *DisposeImages(const Image *images,ExceptionInfo *exception) in DisposeImages()
614 const Image *image2,const LayerMethod method,ExceptionInfo *exception) in CompareImagesBounds()
767 const LayerMethod method,ExceptionInfo *exception) in CompareImagesLayers()
940 ExceptionInfo *exception) in OptimizeLayerFrames()
1420 ExceptionInfo *exception) in OptimizeImageLayers()
1453 ExceptionInfo *exception) in OptimizePlusImageLayers()
1490 ExceptionInfo *exception) in OptimizeImageTransparency()
[all …]
Dexception.c118 *exception; in AcquireExceptionInfo() local
150 static void *DestroyExceptionElement(void *exception) in DestroyExceptionElement()
164 MagickExport void ClearMagickException(ExceptionInfo *exception) in ClearMagickException()
203 MagickExport void CatchException(ExceptionInfo *exception) in CatchException()
258 MagickExport ExceptionInfo *CloneExceptionInfo(ExceptionInfo *exception) in CloneExceptionInfo()
418 MagickExport ExceptionInfo *DestroyExceptionInfo(ExceptionInfo *exception) in DestroyExceptionInfo()
528 exception[MagickPathExtent]; in GetExceptionMessage() local
687 MagickExport void InheritException(ExceptionInfo *exception, in InheritException()
735 MagickPrivate void InitializeExceptionInfo(ExceptionInfo *exception) in InitializeExceptionInfo()
992 MagickExport MagickBooleanType ThrowException(ExceptionInfo *exception, in ThrowException()
[all …]
Dimage.c135 ExceptionInfo *exception) in AcquireImage()
369 ExceptionInfo *exception) in AcquireNextImage()
426 const MagickBooleanType stack,ExceptionInfo *exception) in AppendImages()
628 *exception; in CatchImageException() local
677 MagickExport MagickBooleanType ClipImage(Image *image,ExceptionInfo *exception) in ClipImage()
683 const MagickBooleanType inside,ExceptionInfo *exception) in ClipImagePath()
780 const size_t rows,const MagickBooleanType detach,ExceptionInfo *exception) in CloneImage()
1038 const OffsetInfo *offset,ExceptionInfo *exception) in CopyImagePixels()
1338 *exception; in GetImageInfo() local
1425 ExceptionInfo *exception) in GetImageMask()
[all …]
Dmodule.c215 MagickExport ModuleInfo *GetModuleInfo(const char *tag,ExceptionInfo *exception) in GetModuleInfo()
289 size_t *number_modules,ExceptionInfo *exception) in GetModuleInfoList()
386 const MagickModuleType type,size_t *number_modules,ExceptionInfo *exception) in GetModuleList()
528 MagickModuleType module_type,char *path,ExceptionInfo *exception) in GetMagickModulePath()
851 *exception; in DestroyModuleNode() local
938 Image **images,const int argc,const char **argv,ExceptionInfo *exception) in InvokeDynamicImageFilter()
1068 ExceptionInfo *exception) in ListModuleInfo()
1222 ExceptionInfo *exception) in OpenModule()
1359 MagickPrivate MagickBooleanType OpenModules(ExceptionInfo *exception) in OpenModules()
1422 ExceptionInfo *exception) in RegisterModule()
[all …]
Dstream.c99 *exception; member
160 ExceptionInfo *exception) in AcquireStreamInfo()
367 ExceptionInfo *exception) in GetAuthenticPixelsStream()
449 const ssize_t x,const ssize_t y,Quantum *pixel,ExceptionInfo *exception) in GetOneAuthenticPixelFromStream()
513 Quantum *pixel,ExceptionInfo *exception) in GetOneVirtualPixelFromStream()
686 ExceptionInfo *exception) in AcquireStreamPixels()
740 ExceptionInfo *exception) in GetVirtualPixelStream()
842 StreamInfo *stream_info,const char *filename,ExceptionInfo *exception) in OpenStream()
917 ExceptionInfo *exception) in QueueAuthenticPixelsStream()
1041 ExceptionInfo *exception) in ReadStream()
[all …]
/external/pigweed/pw_rpc/java/test/dev/pigweed/pw_rpc/
DFutureCallTest.java77 ExecutionException exception = assertThrows(ExecutionException.class, call::get); in unaryFuture_serverError_setsException() local
93 ExecutionException exception = assertThrows(ExecutionException.class, call::get); in unaryFuture_cancelOnCall_cancelsTheCallAndFuture() local
109 ExecutionException exception = assertThrows(ExecutionException.class, call::get); in unaryFuture_cancelOnFuture_cancelsTheCallAndFuture() local
128 ExecutionException exception = assertThrows(ExecutionException.class, call::get); in unaryFuture_cancelOnFutureSendFails_cancelsTheCallAndFuture() local
147 ExecutionException exception = assertThrows(ExecutionException.class, call::get); in unaryFuture_multipleResponses_setsException() local
174 ExecutionException exception = assertThrows(ExecutionException.class, call::get); in unaryFuture_exceptionDuringStart() local
209 ExecutionException exception = assertThrows(ExecutionException.class, call::get); in bidirectionalStreamingFuture_serverError_setsException() local
/external/fdlibm/
Dfdlibm.h75 struct exception { struct
76 int type;
77 char *name;
78 double arg1;
79 double arg2;
80 double retval;
/external/junit/src/main/java/org/junit/internal/
DThrowables.java60 public static String getStacktrace(Throwable exception) { in getStacktrace()
73 public static String getTrimmedStackTrace(Throwable exception) { in getTrimmedStackTrace()
85 private static List<String> getTrimmedStackTraceLines(Throwable exception) { in getTrimmedStackTraceLines()
118 private static boolean hasSuppressed(Throwable exception) { in hasSuppressed()
130 private static List<String> getCauseStackTraceLines(Throwable exception) { in getCauseStackTraceLines()
156 private static String getFullStackTrace(Throwable exception) { in getFullStackTrace()
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DFakeTimeLimiterTest.java53 Exception exception = new SampleCheckedException(); in testCallWithTimeout_wrapsCheckedException() local
63 Exception exception = new RuntimeException("test"); in testCallWithTimeout_wrapsUncheckedException() local
85 RuntimeException exception = new RuntimeException("test"); in testRunWithTimeout_wrapsUncheckedException() local
95 RuntimeException exception = new RuntimeException("test"); in testRunUninterruptiblyWithTimeout_wrapsUncheckedException() local
105 public static <T> Callable<T> callableThrowing(final Exception exception) { in callableThrowing()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DFakeTimeLimiterTest.java53 Exception exception = new SampleCheckedException(); in testCallWithTimeout_wrapsCheckedException() local
63 Exception exception = new RuntimeException("test"); in testCallWithTimeout_wrapsUncheckedException() local
85 RuntimeException exception = new RuntimeException("test"); in testRunWithTimeout_wrapsUncheckedException() local
95 RuntimeException exception = new RuntimeException("test"); in testRunUninterruptiblyWithTimeout_wrapsUncheckedException() local
105 public static <T> Callable<T> callableThrowing(final Exception exception) { in callableThrowing()
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DInvocationException.java38 ObjectReference exception; field in InvocationException
40 public InvocationException(ObjectReference exception) { in InvocationException()
45 public ObjectReference exception() { in exception() method in InvocationException
/external/dagger2/javatests/dagger/hilt/android/testing/
DHiltAndroidRuleTest.java36 IllegalStateException exception = in testMissingHiltAndroidTest_fails() local
51 IllegalStateException exception = in testNonHiltTestApplication_fails() local
68 IllegalStateException exception = in testHiltAndroidApplication_fails() local

12345678910>>...41