Searched defs:exception (Results 251 - 275 of 660) sorted by relevance

<<11121314151617181920>>

/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DObjectFactory.java99 * @exception ObjectFactory.ConfigurationError
126 * @exception ObjectFactory.ConfigurationError
173 * @exception ObjectFactory.ConfigurationError
201 * @exception ObjectFactory.ConfigurationError
255 * @exception ObjectFactory.ConfigurationError
337 // Ignore the exception.
363 // Ignore the exception.
480 //throw security exception if the calling thread is not allowed to access the
600 // Ignore the exception.
635 private Exception exception; field in class:ObjectFactory.ConfigurationError
[all...]
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
H A Drdata.py30 import dns.exception namespace
324 raise dns.exception.SyntaxError(r'generic rdata does not start with \#')
335 raise dns.exception.SyntaxError('generic rdata hex data has wrong length')
H A Drdataset.py22 import dns.exception namespace
31 class DifferingCovers(dns.exception.DNSException):
36 class IncompatibleTypes(dns.exception.DNSException):
H A Dtsig.py21 import dns.exception namespace
25 class BadTime(dns.exception.DNSException):
29 class BadSignature(dns.exception.DNSException):
33 class PeerError(dns.exception.DNSException):
129 raise dns.exception.FormError
147 raise dns.exception.FormError
/external/emma/core/java12/com/vladium/util/exception/
H A DExceptionCommon.java9 package com.vladium.util.exception;
45 * it possible to extend the set of exception error codes across independently
84 * @throws Error if 'namespace' does not correspond to an exception class derived
95 // bail out if the some other exception hierarchy attempts
122 // ignored intentionally: if the exception codes rb is absent,
241 * Provides support for lookup of exception error codes from {@link AbstractException}
248 * @param code the message string value that was passed into exception
293 * Provides support for lookup of exception error codes from {@link AbstractException}
300 * @param code the message string value that was passed into exception
497 // if the exception code
[all...]
/external/fdlibm/
H A Dfdlibm.h75 struct exception { struct
156 extern int ieee_matherr __P((struct exception *));
/external/google-breakpad/src/processor/
H A Dexploitability_win.cc77 MinidumpException *exception = dump_->GetException(); local
78 if (!exception) {
79 BPLOG(INFO) << "Minidump does not have exception record.";
83 const MDRawExceptionStream *raw_exception = exception->exception();
85 BPLOG(INFO) << "Could not obtain raw exception info.";
89 const MinidumpContext *context = exception->GetContext();
91 BPLOG(INFO) << "Could not obtain exception context.";
153 // These represent bugs in exception handlers.
/external/guava/guava/src/com/google/common/eventbus/
H A DEventBus.java84 * catch and log the exception. This is rarely the right solution for error
333 // If the exception handler throws, log it. There isn't much else to do!
336 "Exception %s thrown while handling exception: %s", t,
382 public void handleException(Throwable exception, argument
386 exception.getCause());
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
H A DSameThreadScheduledExecutorService.java149 private ExecutionException exception; field in class:SameThreadScheduledExecutorService.ImmediateScheduledFuture
/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DConnector.java157 public void onError(MojoException exception) { argument
159 Connector.this.onError(exception);
176 private void onError(MojoException exception) { argument
180 mErrorHandler.onConnectionError(exception);
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DLZMA2InputStream.java60 private IOException exception = null; field in class:LZMA2InputStream
180 * or an exception is thrown.
208 if (exception != null)
209 throw exception;
249 exception = e;
337 if (exception != null)
338 throw exception;
H A DLZMA2OutputStream.java36 private IOException exception = null; field in class:LZMA2OutputStream
90 if (exception != null)
91 throw exception;
107 exception = e;
183 if (exception != null)
184 throw exception;
196 exception = e;
204 if (exception != null)
205 throw exception;
220 exception
[all...]
H A DLZMAInputStream.java64 private IOException exception = null; field in class:LZMAInputStream
405 // the exception too, so skip validating dictSize here.
453 * or an exception is thrown.
480 if (exception != null)
481 throw exception;
512 // The exception makes lzma.decode() miss the last range
549 exception = e;
H A DXZOutputStream.java70 private IOException exception = null; field in class:XZOutputStream
272 if (exception != null)
273 throw exception;
284 exception = e;
315 if (exception != null)
316 throw exception;
331 exception = e;
360 if (exception != null)
361 throw exception;
380 exception
[all...]
/external/mockito/src/test/java/org/mockito/internal/verification/checkers/
H A DNumberOfInvocationsInOrderCheckerTest.java39 public ExpectedException exception = ExpectedException.none(); field in class:NumberOfInvocationsInOrderCheckerTest
71 exception.expect(VerificationInOrderFailure.class);
72 exception.expectMessage("mock.simpleMethod()");
73 exception.expectMessage("Wanted 4 times");
74 exception.expectMessage("But was 2 times");
96 exception.expect(VerificationInOrderFailure.class);
97 exception.expectMessage("mock.simpleMethod()");
98 exception.expectMessage("Wanted 100 times");
99 exception.expectMessage("But was 2 times");
109 exception
[all...]
/external/mockito/src/test/java/org/mockitousage/annotation/
H A DMockInjectionUsingConstructorTest.java47 public ExpectedException exception = ExpectedException.none(); field in class:MockInjectionUsingConstructorTest
97 assertThat(e.getMessage()).contains("failingConstructor").contains("constructor").contains("threw an exception");
141 exception.expect(MockitoException.class);
142 exception.expectMessage("Cannot instantiate @InjectMocks field named 'f'! Cause: the type 'IMethods' is an interface");
155 exception.expect(MockitoException.class);
156 exception.expectMessage("Cannot instantiate @InjectMocks field named 'f'! Cause: the type 'TimeUnit' is an enum");
168 exception.expect(MockitoException.class);
169 exception.expectMessage("Cannot instantiate @InjectMocks field named 'f'! Cause: the type 'AbstractCollection' is an abstract class");
183 exception.expect(MockitoException.class);
184 exception
[all...]
/external/objenesis/tck/src/main/java/org/objenesis/tck/
H A DTextReporter.java43 Exception exception; field in class:TextReporter.Result
49 * @param exception Exception that might have occured during the test
52 Exception exception) {
56 this.exception = exception;
125 public void exception(Exception exception) { argument
131 currentObjenesis, currentCandidate, false, exception));
196 if(result.exception != null) {
212 element.exception
51 Result(String objenesisDescription, String candidateDescription, boolean result, Exception exception) argument
[all...]
/external/objenesis/tck/src/test/java/org/objenesis/tck/
H A DTCKTest.java150 public void exception(Exception exception) { argument
151 log.append("exception()\n");
/external/v8/src/compiler/
H A Dcontrol-builders.cc191 void TryCatchBuilder::Throw(Node* exception) { argument
192 environment()->Push(exception);
/external/v8/src/
H A Disolate-inl.h75 bool Isolate::is_catchable_by_javascript(Object* exception) { argument
76 return exception != heap()->termination_exception();
79 bool Isolate::is_catchable_by_wasm(Object* exception) { argument
80 return is_catchable_by_javascript(exception) &&
81 (exception->IsNumber() || exception->IsSmi());
/external/volley/src/main/java/com/android/volley/toolbox/
H A DBasicNetwork.java198 * request's retry policy, a timeout exception is thrown.
202 VolleyError exception) throws VolleyError {
207 retryPolicy.retry(exception);
258 // This can happen if there was an exception above that left the entity in
201 attemptRetryOnException(String logPrefix, Request<?> request, VolleyError exception) argument
/external/ImageMagick/MagickCore/
H A Dattribute.c67 #include "MagickCore/exception.h"
68 #include "MagickCore/exception-private.h"
115 % ExceptionInfo *exception)
124 % o exception: return any errors or warnings in this structure.
128 ExceptionInfo *exception)
158 image_view=AcquireVirtualCacheView(image,exception);
159 r=GetCacheViewVirtualPixels(image_view,0,0,1,1,exception);
168 exception);
173 exception);
202 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
125 GetImageBoundingBox(const Image *image, ExceptionInfo *exception) argument
274 GetImageDepth(const Image *image,ExceptionInfo *exception) argument
641 IdentifyImageGray(const Image *image, ExceptionInfo *exception) argument
723 IdentifyImageMonochrome(const Image *image, ExceptionInfo *exception) argument
806 IdentifyImageType(const Image *image, ExceptionInfo *exception) argument
930 IsImageOpaque(const Image *image, ExceptionInfo *exception) argument
1002 SetImageDepth(Image *image, const size_t depth,ExceptionInfo *exception) argument
1228 SetImageType(Image *image,const ImageType type, ExceptionInfo *exception) argument
[all...]
H A Dcache-view.c56 #include "MagickCore/exception.h"
57 #include "MagickCore/exception-private.h"
101 % It always succeeds but may return a warning or informational exception.
106 % ExceptionInfo *exception)
112 % o exception: return any errors or warnings in this structure. argument
116 ExceptionInfo *exception)
121 cache_view=AcquireVirtualCacheView(image,exception);
139 % It always succeeds but may return a warning or informational exception.
144 % ExceptionInfo *exception)
150 % o exception
149 AcquireVirtualCacheView(const Image *image, ExceptionInfo *exception) argument
299 GetCacheViewAuthenticPixels(CacheView *cache_view, const ssize_t x,const ssize_t y,const size_t columns,const size_t rows, ExceptionInfo *exception) argument
651 GetCacheViewVirtualPixels( const CacheView *cache_view,const ssize_t x,const ssize_t y, const size_t columns,const size_t rows,ExceptionInfo *exception) argument
701 GetOneCacheViewAuthenticPixel( const CacheView *cache_view,const ssize_t x,const ssize_t y,Quantum *pixel, ExceptionInfo *exception) argument
773 GetOneCacheViewVirtualPixel( const CacheView *cache_view,const ssize_t x,const ssize_t y,Quantum *pixel, ExceptionInfo *exception) argument
846 GetOneCacheViewVirtualPixelInfo( const CacheView *cache_view,const ssize_t x,const ssize_t y,PixelInfo *pixel, ExceptionInfo *exception) argument
905 GetOneCacheViewVirtualMethodPixel( const CacheView *cache_view,const VirtualPixelMethod virtual_pixel_method, const ssize_t x,const ssize_t y,Quantum *pixel,ExceptionInfo *exception) argument
977 QueueCacheViewAuthenticPixels(CacheView *cache_view, const ssize_t x,const ssize_t y,const size_t columns,const size_t rows, ExceptionInfo *exception) argument
1023 SetCacheViewStorageClass(CacheView *cache_view, const ClassType storage_class,ExceptionInfo *exception) argument
1100 SyncCacheViewAuthenticPixels( CacheView *magick_restrict cache_view,ExceptionInfo *exception) argument
[all...]
H A Dchannel.c96 % ExceptionInfo *exception)
104 % o exception: return any errors or warnings in this structure.
119 const Quantum pixel,ExceptionInfo *exception)
136 source_view=AcquireVirtualCacheView(source_image,exception);
137 destination_view=AcquireAuthenticCacheView(destination_image,exception);
162 exception);
164 destination_image->columns,1,exception);
186 if (SyncCacheViewAuthenticPixels(destination_view,exception) == MagickFalse)
195 ExceptionInfo *exception)
234 assert(exception !
116 ChannelImage(Image *destination_image, const PixelChannel destination_channel,const ChannelFx channel_op, const Image *source_image,const PixelChannel source_channel, const Quantum pixel,ExceptionInfo *exception) argument
194 ChannelFxImage(const Image *image,const char *expression, ExceptionInfo *exception) argument
469 CombineImages(const Image *image, const ColorspaceType colorspace,ExceptionInfo *exception) argument
656 SeparateImage(const Image *image, const ChannelType channel_type,ExceptionInfo *exception) argument
803 SeparateImages(const Image *image,ExceptionInfo *exception) argument
928 SetImageAlphaChannel(Image *image, const AlphaChannelOption alpha_type,ExceptionInfo *exception) argument
[all...]
H A Dcoder.c50 #include "MagickCore/exception.h"
51 #include "MagickCore/exception-private.h"
300 % ExceptionInfo *exception)
306 % o exception: return any errors or warnings in this structure.
329 ExceptionInfo *exception)
356 options=GetConfigureOptions(filename,exception);
361 GetStringInfoPath(option),0,exception);
382 (void) ThrowMagickException(exception,GetMagickModule(),
395 (void) ThrowMagickException(exception,GetMagickModule(),
474 % const CoderInfo *GetCoderInfo(const char *name,ExceptionInfo *exception) argument
322 AcquireCoderCache(const char *filename, ExceptionInfo *exception) argument
536 GetCoderInfoList(const char *pattern, size_t *number_coders,ExceptionInfo *exception) argument
621 GetCoderList(const char *pattern, size_t *number_coders,ExceptionInfo *exception) argument
690 IsCoderTreeInstantiated(ExceptionInfo *exception) argument
728 ListCoderInfo(FILE *file, ExceptionInfo *exception) argument
809 LoadCoderCache(SplayTreeInfo *cache,const char *xml, const char *filename,const size_t depth,ExceptionInfo *exception) argument
[all...]

Completed in 7986 milliseconds

<<11121314151617181920>>