| /prebuilts/misc/common/swig/include/2.0.11/ocaml/ |
| swig.ml | 30 exception BadArgs of string 31 exception BadMethodName of string * string 32 exception NotObject of c_obj 33 exception NotEnumType of c_obj 34 exception LabelNotFromThisEnum of c_obj 35 exception InvalidDirectorCall of c_obj 36 exception NoSuchClass of string
|
| /external/ImageMagick/MagickCore/ |
| distort.c | 52 #include "MagickCore/exception.h" 53 #include "MagickCore/exception-private.h" 276 % AffineMatrix *affine_matrix,ExceptionInfo *exception) 284 % o exception: return any errors or warnings in this structure. 288 const AffineMatrix *affine_matrix,ExceptionInfo *exception) 303 assert(exception != (ExceptionInfo *) NULL); 304 assert(exception->signature == MagickCoreSignature); 312 MagickTrue,exception); 337 % size_t number_values, ExceptionInfo *exception) 357 % o exception: return any errors or warnings in this structur [all...] |
| vision.c | 53 #include "MagickCore/exception.h" 54 #include "MagickCore/exception-private.h" 108 % ExceptionInfo *exception) 118 % o exception: return any errors or warnings in this structure. 134 const size_t connectivity,CCObjectInfo **objects,ExceptionInfo *exception) 186 assert(exception != (ExceptionInfo *) NULL); 187 assert(exception->signature == MagickCoreSignature); 191 exception); 195 if (AcquireImageColormap(component_image,MaxColormapSize,exception) == MagickFalse) 209 equivalences=AcquireMatrixInfo(size,1,sizeof(ssize_t),exception); [all...] |
| color.c | 53 #include "MagickCore/exception.h" 54 #include "MagickCore/exception-private.h" [all...] |
| magick.c | 57 #include "MagickCore/exception.h" 58 #include "MagickCore/exception-private.h" 290 *exception; 300 exception=AcquireExceptionInfo(); 301 p=GetMagickInfo("*",exception); 302 exception=DestroyExceptionInfo(exception); 536 % const MagickInfo *GetMagickInfo(const char *name,Exception *exception) 542 % o exception: return any errors or warnings in this structure 281 *exception; local [all...] |
| /external/ImageMagick/www/api/ |
| image.php | 64 Image *AcquireImage(const ImageInfo *image_info,ExceptionInfo *exception) 78 <dt>exception</dt> 101 ExceptionInfo *exception) 119 <dt>exception</dt> 134 ExceptionInfo *exception) 152 <dt>exception</dt> 159 <p>CatchImageException() returns if no exceptions are found in the image sequence, otherwise it determines the most severe exception and reports it as a warning or error depending on the severity.</p> 187 const MagickBooleanType inside,ExceptionInfo *exception) 209 <dt>exception</dt> 218 <p>If the specified columns and rows is 0, an exact copy of the image is returned, otherwise the pixel data is undefined and must be initialized with the QueueAuthenticPixels() and SyncAuthenticPixels() methods. On failure, a NULL image is returned and exception describes the reason for the failure.</p [all...] |
| layer.php | 64 Image *CoalesceImages(Image *image,ExceptionInfo *exception) 78 <dt>exception</dt> 90 Image *DisposeImages(Image *image,ExceptionInfo *exception) 104 <dt>exception</dt> 121 const LayerMethod method,ExceptionInfo *exception) 139 <dt>exception</dt> 152 ExceptionInfo *exception) 166 <dt>exception</dt> 179 ExceptionInfo *exception) 193 <dt>exception</dt [all...] |
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/ |
| InvokeMethod002Test.java | 52 * exception object is null; 263 TaggedObject exception = reply.getNextValueAsTaggedObject(); local 264 assertNotNull("ClassType::InvokeMethod returned null exception", 265 exception); 266 assertEquals("ClassType::InvokeMethod returned invalid exception objectID,", 267 0, exception.objectID); 268 assertEquals("ClassType::InvokeMethod returned invalid exception.tag", 269 JDWPConstants.Tag.OBJECT_TAG, exception.tag, 271 JDWPConstants.Tag.getName(exception.tag)); 272 logWriter.println(" ClassType.InvokeMethod: exception.tag=" + exception.tag [all...] |
| /external/guava/guava-tests/test/com/google/common/base/ |
| ThrowablesTest.java | 49 // Expect no exception to be thrown 65 // Expect the unchecked exception to propagate as-is 85 // Expect the undeclared exception to have been chained inside another 108 // Expect no exception to be thrown 125 // Expect the unchecked exception to propagate as-is 145 // Expect the checked exception to propagate as-is 166 // Expect the undeclared exception to have been chained inside another 189 // Expect no exception to be thrown 208 // Expect the unchecked exception to propagate as-is 231 // Expect the checked exception to propagate as-i 427 SomeCheckedException exception = new SomeCheckedException(); local 433 SomeChainingException exception = new SomeChainingException(cause); local 439 SomeChainingException exception = local [all...] |
| /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/ |
| AgentTest.java | 58 private Exception exception; field in class:AgentTest 90 public void testStartupShutdown() throws Exception { 101 assertNull(exception); 105 public void testShutdownWithException() throws Exception { 106 final Exception expected = new Exception(); 114 public void shutdown() throws Exception { 127 assertSame(expected, exception); 131 public void testNoSessionId() throws Exception { [all...] |
| /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
| AbstractFakeCommandHandler.java | 191 * Handle the exception caught during handleCommand()
195 * @param exception - the caught exception
198 private void handleException(Command command, Session session, Throwable exception, int replyCode) {
199 LOG.warn("Error handling command: " + command + "; " + exception, exception);
204 * Handle the exception caught during handleCommand()
208 * @param exception - the caught exception
212 private void handleFileSystemException(Command command, Session session, FileSystemException exception, int replyCode, Object arg) { [all...] |
| /packages/services/Telephony/src/com/android/phone/ |
| CallForwardEditPreference.java | 205 if (ar.exception != null) { 206 if (DBG) Log.d(LOG_TAG, "handleGetCFResponse: ar.exception=" + ar.exception); 207 if (ar.exception instanceof CommandException) { 209 (CommandException) ar.exception); 212 // a CommandException. The best we can do is to handle the exception 274 if (ar.exception != null) { 275 if (DBG) Log.d(LOG_TAG, "handleSetCFResponse: ar.exception=" + ar.exception); 280 obtainMessage(MESSAGE_GET_CF, msg.arg1, MESSAGE_SET_CF, ar.exception)); [all...] |
| /cts/tests/tests/media/src/android/media/cts/ |
| ExtractDecodeEditEncodeMuxTest.java | 296 private void extractDecodeEditEncodeMux() throws Exception { 297 // Exception that may be thrown during release. 298 Exception exception = null; local 308 // configure() call to throw an unhelpful exception. 401 // case we save the first exception we got and re-throw at the end (unless something 402 // other exception has already been thrown). This guarantees the first exception thrown 409 } catch(Exception e) { 411 if (exception == null) [all...] |
| /external/ImageMagick/MagickWand/ |
| compare.c | 69 % char **argv,char **metadata,ExceptionInfo *exception) 81 % o exception: return any errors or warnings in this structure. 178 int argc,char **argv,char **metadata,ExceptionInfo *exception) 196 if (exception->severity < (asperity)) \ 197 (void) ThrowMagickException(exception,GetMagickModule(),asperity,tag, \ 204 (void) ThrowMagickException(exception,GetMagickModule(),OptionError, \ 261 assert(exception != (ExceptionInfo *) NULL); 330 images=ReadImages(image_info,filename,exception); 332 (exception->severity < ErrorException); 683 argv+j,exception); [all...] |
| magick-cli.c | 59 #include "MagickCore/exception-private.h" 166 do { /* use break to loop to exception handler and loop */ 401 do { /* use break to loop to exception handler and loop */ 504 /* check that stacks are empty - or cause exception */ 556 % char **argv,char **metadata,ExceptionInfo *exception) 570 % o exception: return any errors or warnings in this structure. 644 ExceptionInfo *exception ) 660 ThrowFileException(exception,ResourceLimitError,"MemoryAllocationFailed", 665 ThrowFileException(exception,FileOpenError,"UnableToOpenFile", 675 ThrowFileException(exception,FileOpenError,"UnableToOpenFile",argv[i]) [all...] |
| stream.c | 73 % char **argv,char **metadata,ExceptionInfo *exception) 85 % o exception: return any errors or warnings in this structure. 164 int argc,char **argv,char **metadata,ExceptionInfo *exception) 176 (void) ThrowMagickException(exception,GetMagickModule(),asperity,tag,"`%s'", \ 183 (void) ThrowMagickException(exception,GetMagickModule(),OptionError, \ 227 assert(exception != (ExceptionInfo *) NULL); 249 stream_info=AcquireStreamInfo(image_info,exception); 259 status=OpenStream(image_info,stream_info,argv[argc-1],exception); 297 images=StreamImage(image_info,stream_info,exception); 299 (exception->severity < ErrorException) [all...] |
| /external/ImageMagick/coders/ |
| pict.c | 54 #include "MagickCore/exception.h" 55 #include "MagickCore/exception-private.h" 423 ExceptionInfo *exception) 496 (void) ThrowMagickException(exception,GetMagickModule(), 504 (void) ThrowMagickException(exception,GetMagickModule(), 526 (void) ThrowMagickException(exception,GetMagickModule(), 533 (void) ThrowMagickException(exception,GetMagickModule(), 789 % ExceptionInfo *exception) 795 % o exception: return any errors or warnings in this structure. 812 ExceptionInfo *exception) [all...] |
| webp.c | 50 #include "MagickCore/exception.h" 51 #include "MagickCore/exception-private.h" 136 % ExceptionInfo *exception) 142 % o exception: return any errors or warnings in this structure. 209 ExceptionInfo *exception) 251 assert(exception != (ExceptionInfo *) NULL); 252 assert(exception->signature == MagickCoreSignature); 253 image=AcquireImage(image_info,exception); 254 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); 293 status=SetImageExtent(image,image->columns,image->rows,exception); [all...] |
| sfw.c | 47 #include "MagickCore/exception.h" 48 #include "MagickCore/exception-private.h" 116 % Image *ReadSFWImage(const ImageInfo *image_info,ExceptionInfo *exception) 122 % o exception: return any errors or warnings in this structure. 160 static Image *ReadSFWImage(const ImageInfo *image_info,ExceptionInfo *exception) 245 assert(exception != (ExceptionInfo *) NULL); 246 assert(exception->signature == MagickCoreSignature); 247 image=AcquireImage(image_info,exception); 248 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); 321 ThrowFileException(exception,FileOpenError,"UnableToCreateTemporaryFile" [all...] |
| /external/google-breakpad/src/client/mac/handler/ |
| exception_handler.cc | 96 exception_type_t exception; member in struct:google_breakpad::ExceptionMessage 118 // and may result in treating a non-fatal exception as fatal. 133 exception_type_t exception, 142 exception_type_t exception, 175 exception_type_t exception; member in struct:google_breakpad::__anon11331 198 In0P->exception, 213 exception_type_t exception, 219 return ForwardException(task, failed_thread, exception, code, code_count); 252 // simply get a callback with the exception information 371 // If this is a real exception, give the filter (if any) a chance t [all...] |
| /external/google-breakpad/src/client/windows/unittests/ |
| exception_handler_death_test.cc | 121 // For the in-proc test, we just need to instantiate an exception 124 // the semantics of the exception handler being inherited/not 358 // Read the minidump. Locate the exception record and the 361 // the exception record. 366 MinidumpException* exception = minidump.GetException(); local 368 ASSERT_TRUE(exception); 372 MinidumpContext* context = exception->GetContext(); 453 // Read the minidump. Locate the exception record and the 456 // the exception record. 461 MinidumpException* exception = minidump.GetException() local 549 MinidumpException* exception = minidump.GetException(); local [all...] |
| /external/guava/guava-tests/test/com/google/common/io/ |
| CloserTest.java | 49 protected void setUp() throws Exception { 91 IOException exception = new IOException(); local 95 throw exception; 102 assertSame(exception, expected); 141 IOException exception = new IOException(); local 144 TestCloseable c1 = closer.register(TestCloseable.throwsOnClose(exception)); 150 assertSame(exception, expected); 162 IOException exception = new IOException(); local 166 TestCloseable c2 = closer.register(TestCloseable.throwsOnClose(exception)); 171 assertSame(exception, expected) [all...] |
| /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/ |
| LwjglCanvas.java | 196 } catch (Exception ex) { 198 exception(ex); 248 exception(ex); 276 protected void exception (Throwable ex) { method in class:LwjglCanvas 360 public void debug (String tag, String message, Throwable exception) { 363 exception.printStackTrace(System.out); 374 public void log (String tag, String message, Throwable exception) { 377 exception.printStackTrace(System.out); 389 public void error (String tag, String message, Throwable exception) { 392 exception.printStackTrace(System.err) [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/ |
| XMLFilterImplTest.java | 107 throw new RuntimeException("Unexpected exception", e); 109 throw new RuntimeException("Unexpected exception", e); 119 throw new RuntimeException("Unexpected exception", e); 132 throw new RuntimeException("Unexpected exception", e); 134 throw new RuntimeException("Unexpected exception", e); 144 throw new RuntimeException("Unexpected exception", e); 189 throw new RuntimeException("Unexpected exception", e); 191 throw new RuntimeException("Unexpected exception", e); 204 throw new RuntimeException("Unexpected exception", e); 206 throw new RuntimeException("Unexpected exception", e) 443 SAXParseException exception = new SAXParseException("Oops!", null); local 457 SAXParseException exception = new SAXParseException("Oops!", null); local 471 SAXParseException exception = new SAXParseException("Oops!", null); local [all...] |
| /art/test/401-optimizing-compiler/src/ |
| Main.java | 90 Exception exception = null; local 94 exception = e; 98 exception = null; 102 exception = e; 105 if (exception == null) {
|