Searched refs:exception (Results 1 - 25 of 2019) sorted by relevance

1234567891011>>

/external/libcxxabi/src/
H A Dcxa_unexpected.cpp10 #include <exception>
/external/fdlibm/
H A Ds_matherr.c17 int ieee_matherr(struct exception *x)
20 struct exception *x;
/external/icu/icu4c/source/common/
H A Dutypeinfo.h15 // Windows header <typeinfo> does not define 'exception' in 'std' namespace.
18 // include <exception> explicitly and add using statement below.
22 // with exception disabled, you have to suppress warning 4275.
24 #include <exception>
25 using std::exception;
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/error/
H A DMarkedYAMLExceptionTest.java24 MarkedYAMLException exception = new MarkedYAMLException(null, null, "Error happened", mark);
25 assertTrue(exception.toString().contains("Error happened"));
26 assertTrue(exception.toString().contains("The first line"));
27 assertTrue(exception.toString(), exception.toString().contains("test1"));
32 MarkedYAMLException exception = new MarkedYAMLException("See http://www.google.com", mark,
34 assertTrue(exception.toString().contains("Error2 happened"));
35 assertTrue(exception.toString().contains("The first line"));
36 assertTrue(exception.toString().contains("search"));
40 MarkedYAMLException exception
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtException.java1 package org.bouncycastle.jce.exception;
5 * This is an extended exception. Java before version 1.4 did not offer the
6 * possibility the attach a cause to an exception. The cause of an exception is
8 * exception. This interface must be implemented by all exceptions to accomplish
16 * Returns the cause of the exception.
18 * @return The cause of the exception.
/external/emma/core/java12/com/vladium/util/exception/
H A DICodedException.java9 package com.vladium.util.exception;
19 * An error code is a compact string representing the nature of exception
22 * the exception classes mentioned above.
32 * Returns the String that was passed as 'message' argument to an exception
33 * constructor. For a coded exception this will be the compact error code
/external/libcxx/test/libcxx/language.support/support.exception/
H A Dversion.pass.cpp10 // <exception>
12 #include <exception>
/external/libcxx/test/std/depr/exception.unexpected/unexpected.handler/
H A Dunexpected_handler.pass.cpp14 #include <exception>
/external/libcxx/test/std/language.support/support.exception/exception/
H A Dexception.pass.cpp10 // test exception
12 #include <exception>
18 static_assert(std::is_polymorphic<std::exception>::value,
19 "std::is_polymorphic<std::exception>::value");
20 std::exception b;
21 std::exception b2 = b;
/external/ImageMagick/MagickCore/
H A Dexception.c46 #include "MagickCore/exception.h"
47 #include "MagickCore/exception-private.h"
115 *exception;
117 exception=(ExceptionInfo *) AcquireMagickMemory(sizeof(*exception));
118 if (exception == (ExceptionInfo *) NULL)
120 InitializeExceptionInfo(exception);
121 exception->relinquish=MagickTrue;
122 return(exception);
137 % ClearMagickException() clears any exception tha
110 *exception; local
144 DestroyExceptionElement(void *exception) argument
158 ClearMagickException(ExceptionInfo *exception) argument
197 CatchException(ExceptionInfo *exception) argument
258 CloneExceptionInfo(ExceptionInfo *exception) argument
420 DestroyExceptionInfo(ExceptionInfo *exception) argument
477 exception[MagickPathExtent]; local
636 InheritException(ExceptionInfo *exception, const ExceptionInfo *relative) argument
684 InitializeExceptionInfo(ExceptionInfo *exception) argument
929 ThrowException(ExceptionInfo *exception, const ExceptionType severity,const char *reason,const char *description) argument
1010 ThrowMagickExceptionList( ExceptionInfo *exception,const char *module,const char *function, const size_t line,const ExceptionType severity,const char *tag, const char *format,va_list operands) argument
1061 ThrowMagickException(ExceptionInfo *exception, const char *module,const char *function,const size_t line, const ExceptionType severity,const char *tag,const char *format,...) argument
[all...]
/external/ImageMagick/api_examples/
H A Dmagick_command.c21 #include "MagickCore/exception.h"
22 #include "MagickCore/exception-private.h"
35 ExceptionInfo *exception = AcquireExceptionInfo(); local
44 (void) MagickImageCommand(image_info, arg_count, args, NULL, exception);
46 if (exception->severity != UndefinedException)
48 CatchException(exception);
53 exception=DestroyExceptionInfo(exception);
/external/clang/test/CodeGenCXX/
H A D2006-03-06-C++RecurseCrash.cpp3 class exception { }; class in namespace:std
18 class recursive_init: public std::exception {
/external/libcxx/test/std/utilities/optional/optional.bad_optional_access/
H A Dderive.pass.cpp14 // class bad_optional_access : public exception
23 static_assert(std::is_base_of<std::exception, bad_optional_access>::value, "");
24 static_assert(std::is_convertible<bad_optional_access*, std::exception*>::value, "");
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/exception/
H A DPlotRenderException.java17 package com.androidplot.exception;
/external/guava/guava/src/com/google/common/eventbus/
H A DSubscriberExceptionHandler.java27 void handleException(Throwable exception, SubscriberExceptionContext context); argument
/external/libcxx/test/libcxx/debug/
H A Ddebug_throw_register.pass.cpp25 #include <exception>
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
H A DNullArgumentException.java17 package org.apache.commons.math.exception;
19 import org.apache.commons.math.exception.util.Localizable;
20 import org.apache.commons.math.exception.util.LocalizedFormats;
24 * this exception.
H A DZeroException.java17 package org.apache.commons.math.exception;
19 import org.apache.commons.math.exception.util.Localizable;
20 import org.apache.commons.math.exception.util.LocalizedFormats;
34 * Construct the exception.
41 * Construct the exception with a specific context.
H A DConvergenceException.java17 package org.apache.commons.math.exception;
19 import org.apache.commons.math.exception.util.Localizable;
20 import org.apache.commons.math.exception.util.LocalizedFormats;
34 * Construct the exception.
40 * Construct the exception with a specific context.
50 * Construct the exception with a specific context and arguments.
/external/junit/src/main/java/org/junit/runner/
H A DFilterFactory.java20 public FilterNotCreatedException(Exception exception) { argument
21 super(exception.getMessage(), exception);
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/data/
H A DIncompatibleExecDataVersionExceptionTest.java24 private IncompatibleExecDataVersionException exception; field in class:IncompatibleExecDataVersionExceptionTest
28 exception = new IncompatibleExecDataVersionException(0x1234);
36 assertEquals(expected, exception.getMessage());
41 assertEquals(0x1234, exception.getActualVersion());
47 exception.getExpectedVersion());
/external/ImageMagick/www/source/
H A Dcore.c10 *exception; local
30 exception=AcquireExceptionInfo();
33 images=ReadImage(image_info,exception);
34 if (exception->severity != UndefinedException)
35 CatchException(exception);
44 resize_image=ResizeImage(image,106,80,LanczosFilter,1.0,exception);
46 MagickError(exception->severity,exception->reason,exception->description);
60 exception
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathException.java28 * This class implements an exception object that all
63 /** A nested exception.
140 * the error originated from, and another exception
141 * that caused this exception.
144 * @param e The exception that caused this exception.
157 * an error message, and another exception
158 * that caused this exception.
160 * @param e The exception that caused this exception
[all...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DDeltaOutputStream.java23 private IOException exception = null; field in class:DeltaOutputStream
45 if (exception != null)
46 throw exception;
62 exception = e;
68 if (exception != null)
69 throw exception;
77 exception = e;
84 if (exception != null)
85 throw exception;
90 exception
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDefaultErrorHandler.java47 * if this flag is set to true, we will rethrow the exception on
112 * @param exception The warning information encapsulated in a
113 * SAX parse exception.
114 * @throws SAXException Any SAX exception, possibly
115 * wrapping another exception.
117 public void warning(SAXParseException exception) throws SAXException argument
121 printLocation(pw, exception);
122 pw.println("Parser warning: " + exception.getMessage());
141 * @param exception The error information encapsulated in a
142 * SAX parse exception
146 error(SAXParseException exception) argument
173 fatalError(SAXParseException exception) argument
198 warning(TransformerException exception) argument
228 error(TransformerException exception) argument
263 fatalError(TransformerException exception) argument
278 ensureLocationSet(TransformerException exception) argument
310 printLocation(PrintStream pw, TransformerException exception) argument
315 printLocation(java.io.PrintStream pw, org.xml.sax.SAXParseException exception) argument
320 printLocation(PrintWriter pw, Throwable exception) argument
[all...]

Completed in 752 milliseconds

1234567891011>>