| /external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
| SyntaxTreeBuilder.java | 115 } catch (IOException exception) { 116 throw new JSilverIOException(exception); 117 } catch (ParserException exception) { 118 throw new JSilverBadSyntaxException(exception.getMessage(), exception.getToken().getText(), 119 templateName, exception.getToken().getLine(), exception.getToken().getPos(), exception); local 120 } catch (LexerException exception) { 121 throw new JSilverBadSyntaxException(exception.getMessage(), null, templateName 123 exception); local [all...] |
| /art/runtime/interpreter/mterp/x86/ |
| op_move_exception.S | 1 /* move-exception vAA */ 4 SET_VREG_OBJECT %eax, rINST # fp[AA] <- exception object
|
| /art/runtime/interpreter/mterp/x86_64/ |
| op_move_exception.S | 1 /* move-exception vAA */ 4 SET_VREG_OBJECT %eax, rINSTq # fp[AA] <- exception object
|
| /external/ImageMagick/coders/ |
| tile.c | 47 #include "MagickCore/exception.h" 48 #include "MagickCore/exception-private.h" 80 % ExceptionInfo *exception) 86 % o exception: return any errors or warnings in this structure. 90 ExceptionInfo *exception) 110 assert(exception != (ExceptionInfo *) NULL); 111 assert(exception->signature == MagickCoreSignature); 115 tile_image=ReadImage(read_info,exception); 119 image=AcquireImage(image_info,exception); 124 status=SetImageExtent(image,image->columns,image->rows,exception); [all...] |
| fd.c | 48 #include "MagickCore/exception.h" 49 #include "MagickCore/exception-private.h" 81 % Image *ReadFDImage(const ImageInfo *image_info,ExceptionInfo *exception) 87 % o exception: return any errors or warnings in this structure. 90 static Image *ReadFDImage(const ImageInfo *image_info,ExceptionInfo *exception) 106 assert(exception != (ExceptionInfo *) NULL); 107 assert(exception->signature == MagickCoreSignature); 114 ThrowFileException(exception,BlobError,"UnableToOpenBlob", 119 image=ReadImage(read_info,exception); 124 (void) ThrowMagickException(exception,GetMagickModule(),CoderError [all...] |
| ycbcr.c | 50 #include "MagickCore/exception.h" 51 #include "MagickCore/exception-private.h" 93 % ExceptionInfo *exception) 99 % o exception: return any errors or warnings in this structure. 103 ExceptionInfo *exception) 149 assert(exception != (ExceptionInfo *) NULL); 150 assert(exception->signature == MagickCoreSignature); 151 image=AcquireImage(image_info,exception); 154 status=SetImageExtent(image,image->columns,image->rows,exception); 157 SetImageColorspace(image,YCbCrColorspace,exception); [all...] |
| null.c | 50 #include "MagickCore/exception.h" 51 #include "MagickCore/exception-private.h" 90 % ExceptionInfo *exception) 96 % o exception: return any errors or warnings in this structure. 100 ExceptionInfo *exception) 128 assert(exception != (ExceptionInfo *) NULL); 129 assert(exception->signature == MagickCoreSignature); 130 image=AcquireImage(image_info,exception); 135 status=SetImageExtent(image,image->columns,image->rows,exception); 138 ConformPixelInfo(image,&image->background_color,&background,exception); [all...] |
| fax.c | 51 #include "MagickCore/exception.h" 52 #include "MagickCore/exception-private.h" 128 % Image *ReadFAXImage(const ImageInfo *image_info,ExceptionInfo *exception) 134 % o exception: return any errors or warnings in this structure. 137 static Image* FaxReadG3(Image *image,ExceptionInfo *exception) 142 status=HuffmanDecodeImage(image,exception); 144 ThrowFileException(exception,CorruptImageError,"UnableToReadImageData", 147 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", 154 ExceptionInfo *exception) 163 if (ImageToFile(image,filename,exception) == MagickFalse [all...] |
| mpr.c | 46 #include "MagickCore/exception.h" 47 #include "MagickCore/exception-private.h" 82 % ExceptionInfo *exception) 88 % o exception: return any errors or warnings in this structure. 91 static Image *ReadMPRImage(const ImageInfo *image_info,ExceptionInfo *exception) 101 assert(exception != (ExceptionInfo *) NULL); 102 assert(exception->signature == MagickCoreSignature); 104 exception); 106 (void) SyncImageSettings(image_info,image,exception); 201 % Image *image,ExceptionInfo *exception) [all...] |
| /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/ |
| exceptions.py | 4 from boto.exception import BotoServerError, BotoClientError 5 from boto.exception import DynamoDBResponseError 61 is retried. If the retries are exhausted then this exception
|
| /prebuilts/misc/common/swig/include/2.0.11/r/ |
| exception.i | 1 %include <typemaps/exception.swg>
|
| /art/runtime/interpreter/mterp/mips/ |
| op_move_exception.S | 1 /* move-exception vAA */ 3 lw a3, THREAD_EXCEPTION_OFFSET(rSELF) # get exception obj 5 SET_VREG_OBJECT(a3, a2) # fp[AA] <- exception obj 7 sw zero, THREAD_EXCEPTION_OFFSET(rSELF) # clear exception
|
| /art/runtime/interpreter/mterp/mips64/ |
| op_move_exception.S | 1 /* move-exception vAA */ 3 ld a0, THREAD_EXCEPTION_OFFSET(rSELF) # load exception obj 5 SET_VREG_OBJECT a0, a2 # vAA <- exception obj 7 sd zero, THREAD_EXCEPTION_OFFSET(rSELF) # clear exception
|
| /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
| GrammarSyntaxMessage.java | 41 public RecognitionException exception; field in class:GrammarSyntaxMessage 46 RecognitionException exception) 48 this(msgID,grammar,offendingToken,null,exception); 55 RecognitionException exception) 59 this.exception = exception;
|
| /external/apache-http/src/org/apache/http/impl/client/ |
| DefaultHttpRequestRetryHandler.java | 84 final IOException exception, 87 if (exception == null) { 88 throw new IllegalArgumentException("Exception parameter may not be null"); 97 if (exception instanceof NoHttpResponseException) { 101 if (exception instanceof InterruptedIOException) { 105 if (exception instanceof UnknownHostException) { 109 if (exception instanceof SSLHandshakeException) { 110 // SSL handshake exception
|
| /external/junit/src/junit/framework/ |
| TestCase.java | 128 * @throws Throwable if any exception is thrown 131 Throwable exception= null; local 136 exception= running; 142 if (exception == null) exception= tearingDown; 145 if (exception != null) throw exception; 149 * @throws Throwable if any exception is thrown 183 protected void setUp() throws Exception { 189 protected void tearDown() throws Exception { [all...] |
| /external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
| Logger.java | 48 public void debug (String message, Exception exception) {
49 if (level >= DEBUG) Gdx.app.debug(tag, message, exception);
56 public void info (String message, Exception exception) {
57 if (level >= INFO) Gdx.app.log(tag, message, exception);
64 public void error (String message, Throwable exception) {
65 if (level >= ERROR) Gdx.app.error(tag, message, exception);
|
| /external/lzma/Java/Tukaani/src/org/tukaani/xz/ |
| DeltaInputStream.java | 37 private IOException exception = null; field in class:DeltaInputStream 98 if (exception != null) 99 throw exception; 105 exception = e; 125 if (exception != null) 126 throw exception;
|
| XZOutputStream.java | 70 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 = e [all...] |
| /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
| throw_exception.hpp | 29 #include <boost/exception/detail/attribute_noreturn.hpp> 32 #include <exception> 43 # include <boost/exception/exception.hpp> 54 void throw_exception( std::exception const & e ); // user defined 58 inline void throw_exception_assert_compatibility( std::exception const & ) { } 62 //All boost exceptions are required to derive from std::exception,
|
| /prebuilts/misc/common/swig/include/2.0.11/csharp/ |
| std_except.i | 5 * used when methods are declared with an STL exception specification, such as 15 %ignore exception; 16 struct exception {}; 21 %typemap(throws, canthrow=1) std::exception "SWIG_CSharpSetPendingException(SWIG_CSharpApplicationException, $1.what());\n return $null;"
|
| /prebuilts/misc/common/swig/include/2.0.11/d/ |
| std_except.i | 5 * used when methods are declared with an STL exception specification, such as 15 %ignore exception; 16 struct exception {}; 21 %typemap(throws, canthrow=1) std::exception "SWIG_DSetPendingException(SWIG_DException, $1.what());\n return $null;"
|
| /prebuilts/misc/common/swig/include/2.0.11/java/ |
| std_except.i | 5 * These typemaps are used when methods are declared with an STL exception specification, such as 15 %ignore exception; 16 struct exception {}; 21 %typemap(throws) std::exception "SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, $1.what());\n return $null;"
|
| /external/slf4j/osgi-over-slf4j/src/main/java/org/slf4j/osgi/logservice/impl/ |
| LogServiceImpl.java | 100 public void log(int level, String message, Throwable exception) { 104 delegate.debug(message, exception); 107 delegate.error(message, exception); 110 delegate.info(message, exception); 113 delegate.warn(message, exception); 179 public void log(ServiceReference sr, int level, String message, Throwable exception) { 184 delegate.debug(createMessage(sr, message), exception); local 189 delegate.error(createMessage(sr, message), exception); local 194 delegate.info(createMessage(sr, message), exception); local 199 delegate.warn(createMessage(sr, message), exception); local [all...] |
| /external/ImageMagick/MagickCore/ |
| constitute.c | 47 #include "MagickCore/exception.h" 48 #include "MagickCore/exception-private.h" 102 % image = ConstituteImage(640,480,"RGB",CharPixel,pixels,&exception); 108 % ExceptionInfo *exception) 131 % o exception: return any errors or warnings in this structure. 136 ExceptionInfo *exception) 150 assert(exception != (ExceptionInfo *) NULL); 151 assert(exception->signature == MagickCoreSignature); 152 image=AcquireImage((ImageInfo *) NULL,exception); 159 (void) SetImageBackgroundColor(image,exception); 289 (int) image_info->scene,ping_filename,exception); local 317 (int) scene,read_info->filename,exception); local 814 (int) read_info->scene,read_filename,exception); local 842 (int) scene,read_info->filename,exception); local [all...] |