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

<<41424344454647484950>>

  /external/ImageMagick/www/api/
blob.php 65 const size_t length,ExceptionInfo *exception)
87 <dt>exception</dt>
148 size_t *length,ExceptionInfo *exception)
170 <dt>exception</dt>
183 ExceptionInfo *exception)
201 <dt>exception</dt>
216 size_t *length,ExceptionInfo *exception)
238 <dt>exception</dt>
252 ExceptionInfo *exception)
278 <dt>exception</dt
    [all...]
channel.php 78 ExceptionInfo *exception)
96 <dt>exception</dt>
109 ExceptionInfo *exception)
127 <dt>exception</dt>
162 ExceptionInfo *exception)
180 <dt>exception</dt>
192 Image *SeparateImages(const Image *image,ExceptionInfo *exception)
206 <dt>exception</dt>
219 const AlphaChannelOption alpha_type,ExceptionInfo *exception)
237 <dt>exception</dt
    [all...]
compare.php 65 const MetricType metric,double *distortion,ExceptionInfo *exception)
91 <dt>exception</dt>
105 double *distortion,ExceptionInfo *exception)
131 <dt>exception</dt>
145 ExceptionInfo *exception)
167 <dt>exception</dt>
193 const Image *reconstruct_image,ExceptionInfo *exception)
204 <dt>exception</dt>
216 RectangleInfo *offset,double *similarity,ExceptionInfo *exception)
250 <dt>exception</dt
    [all...]
decorate.php 65 const CompositeOperator compose,ExceptionInfo *exception)
87 <dt>exception</dt>
100 const CompositeOperator compose,ExceptionInfo *exception)
122 <dt>exception</dt>
136 ExceptionInfo *exception)
158 <dt>exception</dt>
fourier.php 65 ExceptionInfo *exception)
83 <dt>exception</dt>
96 const MagickBooleanType modulus,ExceptionInfo *exception)
114 <dt>exception</dt>
128 ExceptionInfo *exception)
150 <dt>exception</dt>
resize.php 67 const size_t rows,ExceptionInfo *exception)
89 <dt>exception</dt>
103 ExceptionInfo *exception)
129 <dt>exception</dt>
143 ExceptionInfo *exception)
173 <dt>exception</dt>
185 Image *MagnifyImage(const Image *image,ExceptionInfo *exception)
199 <dt>exception</dt>
211 Image *MinifyImage(const Image *image,ExceptionInfo *exception)
225 <dt>exception</dt
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
GaussianParametersGuesser.java 23 import org.apache.commons.math.exception.util.LocalizedFormats;
24 import org.apache.commons.math.exception.NumberIsTooSmallException;
25 import org.apache.commons.math.exception.OutOfRangeException;
26 import org.apache.commons.math.exception.ZeroException;
27 import org.apache.commons.math.exception.NullArgumentException;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ThreadGroup002Test.java 73 } catch (NumberFormatException exception) {
75 ("## FAILURE: Exception while getting number of started threads from debuggee = " + exception);
101 } catch (ReplyErrorCodeException exception) {
103 ("## FAILURE: Exception in vmMirror.getAllThreadID() = " + exception);
114 } catch (ReplyErrorCodeException exception) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ResumeTest.java 267 } catch (NumberFormatException exception) {
268 logWriter.println("## FAILURE: Exception while getting number of"
269 + " started threads from debuggee = " + exception);
297 } catch (ReplyErrorCodeException exception) {
299 ("## FAILURE: Exception in vmMirror.getAllThreadID() = " + exception);
309 } catch (ReplyErrorCodeException exception) {
  /external/google-breakpad/src/client/linux/handler/
exception_handler_unittest.cc 104 string file = dir + "/exception-handler-unittest.XXXXXX";
239 // Crash with the exception handler in scope.
315 // Crash with the exception handler in scope.
391 // Create a new exception handler, this installs a new SIGSEGV
406 // Crash with the exception handler in scope.
541 // Read the minidump. Locate the exception record and the
544 // the exception record.
548 MinidumpException* exception = minidump.GetException(); local
550 ASSERT_TRUE(exception);
554 MinidumpContext* context = exception->GetContext()
640 MinidumpException* exception = minidump.GetException(); local
730 MinidumpException* exception = minidump.GetException(); local
798 MinidumpException* exception = minidump.GetException(); local
1015 MinidumpException* exception = minidump.GetException(); local
1182 MinidumpException* exception = minidump.GetException(); local
    [all...]
  /external/v8/build/android/pylib/base/
test_dispatcher.py 124 # An unhandleable exception, ensure tests get run by another device and
125 # reraise this exception on the main thread.
155 logging.exception('Failed to create shard for %s', str(device))
197 logging.exception('Command failed on device.')
199 logging.exception('Command timed out on device.')
201 logging.exception('Device became unreachable.')
338 except Exception: # pylint: disable=broad-except
339 logging.exception('Unexpected exception caught during TearDown')
  /libcore/ojluni/src/main/java/java/lang/
Throwable.java 9 * particular file as subject to the "Classpath" exception as provided
45 * {@link java.lang.Exception}, are conventionally used to indicate
57 * is referred to as the <i>chained exception</i> facility, as the
67 * its implementation, assuming the lower layer's exception was a checked
68 * exception. Throwing a "wrapped exception" (i.e., an exception containing a
84 * {@code IOException} in an appropriate unchecked exception. (The
97 * implementation predates the addition of the exception chaining mechanism to
110 * @author Josh Bloch (Added exception chaining and programmatic access t
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
etip.h 96 # undef exception macro
97 # define exception math_exception macro
101 # undef exception macro
102 # define exception builtin_exception macro
110 # undef exception macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
etip.h 96 # undef exception macro
97 # define exception math_exception macro
101 # undef exception macro
102 # define exception builtin_exception macro
110 # undef exception macro
  /system/extras/tests/net_test/
tcp_nuke_addr_test.py 128 self.exception = None
135 except Exception, e:
136 self.exception = e
179 self.assertIsNotNone(thread.exception)
180 self.assertTrue(isinstance(thread.exception, IOError))
181 self.assertEquals(errno.ETIMEDOUT, thread.exception.errno)
  /external/ImageMagick/MagickCore/
statistic.c 65 #include "MagickCore/exception.h"
66 #include "MagickCore/exception-private.h"
118 % ExceptionInfo *exception)
121 % ExceptionInfo *exception)
131 % o exception: return any errors or warnings in this structure.
421 const MagickEvaluateOperator op,ExceptionInfo *exception)
458 assert(exception != (ExceptionInfo *) NULL);
459 assert(exception->signature == MagickCoreSignature);
461 exception);
464 if (SetImageStorageClass(image,DirectClass,exception) == MagickFalse
    [all...]
draw.c 65 #include "MagickCore/exception.h"
66 #include "MagickCore/exception-private.h"
256 *exception;
264 exception=AcquireExceptionInfo();
277 exception);
280 MagickTrue,exception);
354 exception=DestroyExceptionInfo(exception);
250 *exception; local
4941 *exception; local
    [all...]
resample.c 49 #include "MagickCore/exception-private.h"
102 *exception;
185 % resample_filter=AcquireResampleFilter(image,exception);
200 % ExceptionInfo *exception)
206 % o exception: return any errors or warnings in this structure.
210 ExceptionInfo *exception)
219 assert(exception != (ExceptionInfo *) NULL);
220 assert(exception->signature == MagickCoreSignature);
226 resample_filter->exception=exception;
101 *exception; member in struct:_ResampleFilter
    [all...]
  /external/ImageMagick/coders/
dds.c 52 #include "MagickCore/exception.h"
53 #include "MagickCore/exception-private.h"
    [all...]
wmf.c 48 #include "MagickCore/exception.h"
49 #include "MagickCore/exception-private.h"
93 % Image *ReadWMFImage(const ImageInfo *image_info,ExceptionInfo *exception)
99 % o exception: return any errors or warnings in this structure.
118 static Image *ReadWMFImage(const ImageInfo *image_info,ExceptionInfo *exception)
159 image=AcquireImage(image_info,exception);
160 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
184 ThrowFileException(exception,FileOpenError,"UnableToOpenFile",
227 image=ReadImage(read_info,exception);
342 *exception;
340 *exception; member in struct:_wmf_magick_t
648 *exception; local
735 *exception; local
877 *exception; local
1441 *exception; local
2381 *exception; local
    [all...]
debug.c 54 #include "MagickCore/exception.h"
55 #include "MagickCore/exception-private.h"
158 % Image *image,ExceptionInfo *exception)
166 % o exception: return any errors or warnings in this structure.
170 Image *image,ExceptionInfo *exception)
204 status=OpenBlob(image_info,image,WriteBlobMode,exception);
224 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
  /cts/tests/tests/media/src/android/media/cts/
MidiSoloTest.java 73 protected void setUp() throws Exception {
79 protected void tearDown() throws Exception {
84 public void testMidiManager() throws Exception {
110 public void testMidiReceiver() throws Exception {
155 public void testMidiReceiverException() throws Exception {
171 IOException exception = null; local
180 exception = e;
182 assertTrue("We should have caught an IOException", exception != null);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MultidimensionalCounter.java 20 import org.apache.commons.math.exception.DimensionMismatchException;
21 import org.apache.commons.math.exception.OutOfRangeException;
22 import org.apache.commons.math.exception.NotStrictlyPositiveException;
  /external/autotest/client/cros/cellular/
prologix_scpi_driver_test_noautorun.py 20 # replace SystemError with a specific exception crbug.com/225127
42 with self.assertRaises(Exception) as ex:
44 self.assertIsInstance(ex.exception,
54 with self.assertRaises(Exception) as ex:
56 self.assertIsInstance(ex.exception,
65 with self.assertRaises(Exception) as ex:
67 self.assertIsInstance(ex.exception,
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/
NXT.py 16 import dns.exception namespace
64 raise dns.exception.SyntaxError("NXT with bit 0")
66 raise dns.exception.SyntaxError("NXT with bit > 127")

Completed in 1375 milliseconds

<<41424344454647484950>>