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

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/test-gnustl-full/unit/
exception_header_test.cpp 8 #include <exception>
  /ndk/tests/device/test-stlport/unit/
exception_header_test.cpp 8 #include <exception>
  /prebuilts/misc/common/swig/include/2.0.11/guile/
std_except.i 1 // TODO: STL exception handling
8 %ignore exception;
9 struct exception {
  /ndk/tests/device/gnustl-shared-1/jni/
foo.cpp 2 #include <exception>
8 throw std::exception();
  /ndk/tests/device/exceptions-crash/jni/
foo.cpp 2 #include <exception>
9 throw std::exception();
11 catch (std::exception e) {
  /external/libcxxabi/src/
exception.cpp 1 //===---------------------------- exception.cpp ---------------------------===//
10 #include <exception>
17 // exception
19 exception::~exception() _NOEXCEPT
23 const char* exception::what() const _NOEXCEPT
25 return "std::exception";
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
exception.cpp 1 //===---------------------------- exception.cpp ---------------------------===//
10 #include <exception>
17 // exception
19 exception::~exception() _NOEXCEPT
23 const char* exception::what() const _NOEXCEPT
25 return "std::exception";
  /libcore/ojluni/src/main/java/java/security/
PrivilegedActionException.java 8 * particular file as subject to the "Classpath" exception as provided
31 * This exception is thrown by
35 * that the action being performed threw a checked exception. The exception
39 * for an exception thrown by a privileged action.
41 * <p>As of release 1.4, this exception has been retrofitted to conform to
42 * the general purpose exception-chaining mechanism. The "exception thrown
52 public class PrivilegedActionException extends Exception {
59 private Exception exception field in class:PrivilegedActionException
    [all...]
  /ndk/sources/cxx-stl/gabi++/src/
exception.cc 28 #include <exception>
36 exception::exception() _GABIXX_NOEXCEPT {
40 exception::~exception() _GABIXX_NOEXCEPT {
43 const char* exception::what() const _GABIXX_NOEXCEPT {
44 return "std::exception";
  /libcore/luni/src/main/java/org/xml/sax/
SAXException.java 1 // SAX exception class.
21 * functionality. SAX handlers may throw this exception or
22 * any exception subclassed from it.</p>
26 * or an exception derived from a SAXException.</p>
37 public class SAXException extends Exception {
45 this.exception = null;
56 this.exception = null;
61 * Create a new SAXException wrapping an existing exception.
63 * <p>The existing exception will be embedded in the new
67 * @param e The exception to be wrapped in a SAXException
147 private Exception exception; field in class:SAXException
    [all...]
ErrorHandler.java 33 * in preference to throwing an exception: it is up to the application
34 * to decide whether to throw an exception for different types of
38 * may throw an exception after reporting any fatalError.
67 * @param exception The warning information encapsulated in a
68 * SAX parse exception.
69 * @exception org.xml.sax.SAXException Any SAX exception, possibly
70 * wrapping another exception.
73 public abstract void warning (SAXParseException exception)
96 * @param exception The error information encapsulated in
    [all...]
  /cts/tests/tests/car/src/android/car/cts/
ExceptionsTest.java 24 private static final Exception CAUSE = new RuntimeException();
27 CarNotConnectedException exception = new CarNotConnectedException(); local
28 assertNull(exception.getMessage());
29 assertNull(exception.getCause());
31 exception = new CarNotConnectedException(MESSAGE);
32 assertEquals(MESSAGE, exception.getMessage());
33 assertNull(exception.getCause());
35 exception = new CarNotConnectedException(MESSAGE, CAUSE);
36 assertEquals(MESSAGE, exception.getMessage());
37 assertEquals(CAUSE, exception.getCause())
44 CarNotSupportedException exception = new CarNotSupportedException(); local
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/
ErrorListener.java 32 * and does not throw any <code>Exception</code>s.
38 * interface instead of throwing an <code>Exception</code>: it is up to the
39 * application to decide whether to throw an <code>Exception</code> for
42 * after a call to {@link #fatalError(TransformerException exception)}.</p>
60 * @param exception The warning information encapsulated in a
61 * transformer exception.
68 public abstract void warning(TransformerException exception)
79 * @param exception The error information encapsulated in a
80 * transformer exception.
87 public abstract void error(TransformerException exception)
    [all...]
TransformerFactoryConfigurationError.java 31 * <code>Exception</code> for the
34 private Exception exception; field in class:TransformerFactoryConfigurationError
41 this.exception = null;
48 * @param msg The error message for the exception.
54 this.exception = null;
59 * given <code>Exception</code> base cause of the error.
61 * @param e The exception to be encapsulated in a
64 public TransformerFactoryConfigurationError(Exception e) {
68 this.exception = e
    [all...]
  /external/fdlibm/
s_matherr.c 17 int ieee_matherr(struct exception *x)
20 struct exception *x;
  /external/icu/icu4c/source/common/
utypeinfo.h 13 // Windows header <typeinfo> does not define 'exception' in 'std' namespace.
16 // include <exception> explicilty and add using statement below.
20 // with exception disabled, you have to suppress warning 4275.
22 #include <exception>
23 using std::exception;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/error/
MarkedYAMLExceptionTest.java 24 MarkedYAMLException exception = new MarkedYAMLException(null, null, "Error happened", mark); local
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, local
34 assertTrue(exception.toString().contains("Error2 happened"));
35 assertTrue(exception.toString().contains("The first line"));
36 assertTrue(exception.toString().contains("search"));
40 MarkedYAMLException exception = new MarkedYAMLException("See http://www.google.com", null local
47 MarkedYAMLException exception = new MarkedYAMLException("See http:\/\/www.google.com", mark, local
54 MarkedYAMLException exception = new MarkedYAMLException("See http:\/\/www.google.com", mark, local
    [all...]
  /libcore/luni/src/main/java/javax/xml/parsers/
FactoryConfigurationError.java 35 *<code>Exception</code> that represents the error.
37 private Exception exception; field in class:FactoryConfigurationError
45 this.exception = null;
52 * @param msg The error message for the exception.
57 this.exception = null;
63 * given <code>Exception</code> base cause of the error.
65 * @param e The exception to be encapsulated in a
69 public FactoryConfigurationError(Exception e) {
71 this.exception = e
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtException.java 1 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/
ICodedException.java 9 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/std/depr/exception.unexpected/unexpected.handler/
unexpected_handler.pass.cpp 12 #include <exception>
  /external/libcxx/test/std/language.support/support.exception/exception/
exception.pass.cpp 10 // 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/libcxx/test/std/language.support/support.exception/
version.pass.cpp 10 // <exception>
12 #include <exception>
  /libcore/ojluni/src/main/java/java/lang/
ExceptionInInitializerError.java 8 * particular file as subject to the "Classpath" exception as provided
29 * Signals that an unexpected exception has occurred in a static initializer.
31 * exception occurred during evaluation of a static initializer or the
34 * <p>As of release 1.4, this exception has been retrofitted to conform to
35 * the general purpose exception-chaining mechanism. The "saved throwable
51 * This field holds the exception if the
58 private Throwable exception; field in class:ExceptionInInitializerError
64 * A detail message is a String that describes this particular exception.
76 * @param thrown The exception thrown
80 this.exception = thrown
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/exception.unexpected/unexpected.handler/
unexpected_handler.pass.cpp 12 #include <exception>

Completed in 686 milliseconds

1 2 3 4 5 6 7 8 91011>>