HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 401 - 425 of 4445) sorted by null

<<11121314151617181920>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
LongTest.java 95 boolean exception = false;
101 exception = true;
103 assertTrue("Failed to throw exception for value > ilong", exception);
105 exception = false;
110 exception = true;
112 assertTrue("Failed to throw exception for MAX_VALUE + 1", exception);
114 exception = false;
119 exception = true
    [all...]
  /external/ImageMagick/MagickCore/
accelerate.c 54 #include "MagickCore/exception.h"
55 #include "MagickCore/exception-private.h"
211 static MagickCLEnv getOpenCLEnvironment(ExceptionInfo* exception)
223 if (InitializeOpenCL(clEnv,exception) == MagickFalse)
229 static Image *cloneImage(const Image* image,ExceptionInfo *exception)
238 clone=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
241 clone=CloneImage(image,0,0,MagickTrue,exception);
243 SyncImagePixelCache(clone,exception);
257 const double sigma,cl_uint *width,ExceptionInfo *exception)
279 kernel=AcquireKernelInfo(geometry,exception);
    [all...]
transform.c 54 #include "MagickCore/exception.h"
55 #include "MagickCore/exception-private.h"
89 % const OrientationType orientation,ExceptionInfo *exception)
97 % o exception: Return any errors or warnings in this structure.
101 const OrientationType orientation,ExceptionInfo *exception)
108 assert(exception != (ExceptionInfo *) NULL);
109 assert(exception->signature == MagickCoreSignature);
117 orient_image=CloneImage(image,0,0,MagickTrue,exception);
122 orient_image=FlopImage(image,exception);
127 orient_image=RotateImage(image,180.0,exception);
    [all...]
image-view.c 51 #include "MagickCore/exception-private.h"
74 *exception;
120 clone_view->exception=AcquireExceptionInfo();
121 InheritException(clone_view->exception,image_view->exception);
157 image_view->exception=DestroyExceptionInfo(image_view->exception);
244 destination->exception);
272 source->extent.width,1,source->exception);
279 duplex->extent.width,1,duplex->exception);
72 *exception; member in struct:_ImageView
    [all...]
effect.c 56 #include "MagickCore/exception.h"
57 #include "MagickCore/exception-private.h"
117 % const double sigma,ExceptionInfo *exception)
128 % o exception: return any errors or warnings in this structure.
132 const double sigma,ExceptionInfo *exception)
174 assert(exception != (ExceptionInfo *) NULL);
175 assert(exception->signature == MagickCoreSignature);
176 blur_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
181 if (SetImageStorageClass(blur_image,DirectClass,exception) == MagickFalse)
189 edge_image=EdgeImage(image,radius,exception);
2558 100.0,exception); local
    [all...]
  /external/ImageMagick/coders/
map.c 54 #include "MagickCore/exception.h"
55 #include "MagickCore/exception-private.h"
94 % Image *ReadMAPImage(const ImageInfo *image_info,ExceptionInfo *exception)
100 % o exception: return any errors or warnings in this structure.
103 static Image *ReadMAPImage(const ImageInfo *image_info,ExceptionInfo *exception)
147 assert(exception != (ExceptionInfo *) NULL);
148 assert(exception->signature == MagickCoreSignature);
149 image=AcquireImage(image_info,exception);
152 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
163 (image->offset != 0 ? image->offset : 256),exception);
    [all...]
gradient.c 53 #include "MagickCore/exception.h"
54 #include "MagickCore/exception-private.h"
88 % ExceptionInfo *exception)
94 % o exception: return any errors or warnings in this structure.
98 ExceptionInfo *exception)
124 assert(exception != (ExceptionInfo *) NULL);
125 assert(exception->signature == MagickCoreSignature);
132 image=ReadImage(read_info,exception);
136 (void) SetImageAlpha(image,(Quantum) TransparentAlpha,exception);
150 status=QueryColorCompliance(colorname,AllCompliance,&stops[0].color,exception);
    [all...]
inline.c 49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
89 % ExceptionInfo *exception)
95 % o exception: return any errors or warnings in this structure.
99 ExceptionInfo *exception)
127 assert(exception != (ExceptionInfo *) NULL);
128 assert(exception->signature == MagickCoreSignature);
140 data_image=ReadInlineImage(image_info,filename,exception);
144 image=AcquireImage(image_info,exception);
145 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
    [all...]
tim.c 48 #include "MagickCore/exception.h"
49 #include "MagickCore/exception-private.h"
83 % Image *ReadTIMImage(const ImageInfo *image_info,ExceptionInfo *exception)
89 % o exception: return any errors or warnings in this structure.
92 static Image *ReadTIMImage(const ImageInfo *image_info,ExceptionInfo *exception)
152 assert(exception != (ExceptionInfo *) NULL);
153 assert(exception->signature == MagickCoreSignature);
154 image=AcquireImage(image_info,exception);
155 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
199 if (AcquireImageColormap(image,pixel_mode == 1 ? 256UL : 16UL,exception) == MagickFalse
    [all...]
dot.c 48 #include "MagickCore/exception.h"
49 #include "MagickCore/exception-private.h"
91 % Image *ReadDOTImage(const ImageInfo *image_info,ExceptionInfo *exception)
97 % o exception: return any errors or warnings in this structure.
100 static Image *ReadDOTImage(const ImageInfo *image_info,ExceptionInfo *exception)
128 assert(exception != (ExceptionInfo *) NULL);
129 assert(exception->signature == MagickCoreSignature);
131 image=AcquireImage(image_info,exception);
132 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
162 image=ReadImage(read_info,exception);
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/d/
dhead.swg 20 * Exception support code.
76 // Exception throwing support currently requires Tango, but there is no reason
78 static import tango.core.Exception;
95 auto exception = new object.Exception(tango.stdc.stringz.fromStringz(message).dup);
96 exception.next = SwigPendingException.retrieve();
97 SwigPendingException.set(exception);
101 auto exception = new tango.core.Exception.IllegalArgumentException(tango.stdc.stringz.fromStringz(message).dup);
102 exception.next = SwigPendingException.retrieve()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMException.java 64 /** Field containedException specifies a wrapped exception. May be null.
69 * This method retrieves an exception that this exception wraps.
144 * Create a new DTMException wrapping an existing exception.
146 * @param e The exception to be wrapped.
157 * Wrap an existing exception in a DTMException.
163 * use the message from the embedded exception.
164 * @param e Any exception
180 * creating its own exception from within a DocumentHandler
195 * Wrap an existing exception in a DTMException
336 Throwable exception = getException(); local
    [all...]
  /external/v8/test/mjsunit/es6/
debug-stepin-microtasks.js 8 var exception = null;
35 exception = e;
50 %AbortJS("FAIL: uncaught exception " + e);
55 return exception || 1; // Break 1.
77 if (exception !== null) {
78 %AbortJS("FAIL: exception: " + exception);
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidPipedStreamTest.java 26 public abstract void runTest() throws Exception;
32 exception = e;
36 Throwable exception; field in class:OldAndroidPipedStreamTest.TestThread
40 public void testA() throws Exception {
53 public void runTest() throws Exception {
77 public void runTest() throws Exception {
100 if (writer.exception != null) {
101 throw new Exception(writer.exception);
103 if (reader.exception != null)
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
XZInputStream.java 69 private IOException exception = null; field in class:XZInputStream
232 * throw the pending exception.</li>
233 * <li>An exception is thrown.</li>
264 if (exception != null)
265 throw exception;
291 exception = e;
350 if (exception != null)
351 throw exception;
  /external/v8/test/mjsunit/
debug-break-native.js 8 var exception = null;
17 exception = e;
42 assertNull(exception);
debug-evaluate-locals-capturing.js 8 var exception = null;
22 exception = e;
42 assertNull(exception);
debug-evaluate-modify-catch-block-scope.js 9 var exception = null;
19 exception = e;
43 assertNull(exception);
debug-evaluate-nested-let.js 9 var exception = null;
42 exception = e;
52 assertNull(exception);
debug-generator-break-on-stack.js 10 var exception = null; variable
20 exception = e;
44 assertNull(exception);
debug-generator-break.js 10 var exception = null; variable
19 exception = e;
42 assertNull(exception);
debug-step-into-json.js 9 var exception = null;
20 exception = e;
36 assertNull(exception);
debug-step-into-valueof.js 9 var exception = null;
19 exception = e;
35 assertNull(exception);
debug-stepin-builtin-callback-opt.js 9 var exception = null;
20 exception = e;
37 assertNull(exception);
debug-stepin-construct-call.js 8 var exception = null; variable
18 exception = e;
42 assertNull(exception);

Completed in 1066 milliseconds

<<11121314151617181920>>