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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxxabi/src/
cxa_unexpected.cpp 10 #include <exception>
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/
cxa_unexpected.cpp 10 #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 {
  /libcore/ojluni/src/main/java/java/security/
PrivilegedActionException.java 8 * particular file as subject to the "Classpath" exception as provided
33 * This exception is thrown by
37 * that the action being performed threw a checked exception. The exception
41 * for an exception thrown by a privileged action.
43 * <p>As of release 1.4, this exception has been retrofitted to conform to
44 * the general purpose exception-chaining mechanism. The "exception thrown
54 public class PrivilegedActionException extends Exception {
61 private Exception exception field in class:PrivilegedActionException
    [all...]
  /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...]
  /libcore/luni/src/test/java/libcore/java/nio/file/
FileSystemExceptionTest.java 28 FileSystemException exception = new FileSystemException("file"); local
29 assertEquals("file", exception.getFile());
30 assertNull(exception.getOtherFile());
31 assertNull(exception.getReason());
32 assertTrue(exception instanceof IOException);
36 FileSystemException exception = new FileSystemException("file", "otherFile", "reason"); local
37 assertEquals("file", exception.getFile());
38 assertEquals("otherFile", exception.getOtherFile());
39 assertEquals("reason", exception.getReason());
77 FileSystemException exception = (FileSystemException) SerializationTeste local
88 FileSystemException exception = new FileSystemException("file", "otherFile", "reason"); local
    [all...]
AtomicMoveNotSupportedExceptionTest.java 29 AtomicMoveNotSupportedException exception = new AtomicMoveNotSupportedException("source", local
31 assertEquals("source", exception.getFile());
32 assertEquals("target", exception.getOtherFile());
33 assertEquals("reason", exception.getReason());
34 assertTrue(exception instanceof FileSystemException);
73 AtomicMoveNotSupportedException exception = (AtomicMoveNotSupportedException) local
76 String hex1 = SerializationTester.serializeHex(exception).toString();
78 assertEquals("source", exception.getFile());
79 assertEquals("target", exception.getOtherFile());
80 assertEquals("reason", exception.getReason())
    [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 15 // 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/
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...]
  /cts/tests/tests/car/src/android/car/cts/
ExceptionsTest.java 28 private static final Exception CAUSE = new RuntimeException();
31 CarNotConnectedException exception = new CarNotConnectedException(); local
32 assertNull(exception.getMessage());
33 assertNull(exception.getCause());
35 exception = new CarNotConnectedException(MESSAGE);
36 assertEquals(MESSAGE, exception.getMessage());
37 assertNull(exception.getCause());
39 exception = new CarNotConnectedException(MESSAGE, CAUSE);
40 assertEquals(MESSAGE, exception.getMessage());
41 assertEquals(CAUSE, exception.getCause())
    [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/libcxx/language.support/support.exception/
version.pass.cpp 10 // <exception>
12 #include <exception>
  /external/libcxx/test/std/depr/exception.unexpected/unexpected.handler/
unexpected_handler.pass.cpp 14 #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;
  /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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stdexcpt.h 12 #include <exception>
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/language.support/support.exception/
version.pass.cpp 10 // <exception>
12 #include <exception>
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/exception.unexpected/unexpected.handler/
unexpected_handler.pass.cpp 14 #include <exception>
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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;

Completed in 532 milliseconds

1 2 3 4 5 6 7 8 91011>>