/external/stlport/test/unit/ |
exception_header_test.cpp | 8 #include <exception>
|
/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>
|
/external/chromium_org/third_party/WebKit/Source/core/platform/mac/ |
BlockExceptions.mm | 31 void ReportBlockedObjCException(NSException *exception) 34 NSLog(@"*** WebKit discarding exception: <%@> %@", [exception name], [exception reason]); 36 ASSERT_WITH_MESSAGE(0, "Uncaught exception - %@", exception);
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
utypeinfo.h | 6 // exception handling disabled. 7 #include <exception> 8 using std::exception;
|
/external/icu4c/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;
|
/ndk/tests/device/gnustl-shared-1/jni/ |
foo.cpp | 2 #include <exception> 8 throw std::exception();
|
/libcore/luni/src/main/java/java/lang/ |
ExceptionInInitializerError.java | 21 * Thrown when an exception occurs during class initialization. 27 private Throwable exception; field in class:ExceptionInInitializerError 51 * stack trace and the specified cause. The exception should be the one 54 * @param exception 55 * the exception that caused this error. 57 public ExceptionInInitializerError(Throwable exception) { 58 this.exception = exception; 59 initCause(exception); 63 * Returns the exception that is the cause of this error [all...] |
/ndk/tests/device/exceptions-crash/jni/ |
foo.cpp | 2 #include <exception> 9 throw std::exception(); 11 catch (std::exception e) {
|
/external/okhttp/src/main/java/com/squareup/okhttp/ |
Failure.java | 26 private final Throwable exception; field in class:Failure 30 this.exception = builder.exception; 37 public Throwable exception() { method in class:Failure 38 return exception; 43 private Throwable exception; field in class:Failure.Builder 50 public Builder exception(Throwable exception) { method in class:Failure.Builder 51 this.exception = exception; [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...] |
/external/chromium_org/tools/idl_parser/test_parser/ |
exception_web.idl | 5 /* Test Exception productions 34 *Exception(MyExc) 36 exception MyExc { }; 39 *Exception(MyExcInherit) 42 exception MyExcInherit : Foo {}; 44 /* ERROR Unexpected keyword "exception" after keyword "partial". */ 45 partial exception MyExcPartial { }; 48 *Exception(MyExcBig) 57 exception MyExcBig { 64 /* ERROR Unexpected "{" after keyword "exception". * [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...] |
/libcore/luni/src/main/java/java/lang/reflect/ |
InvocationTargetException.java | 21 * This class provides a wrapper for an exception thrown by a {@code Method} or 35 * {@code null} cause / target exception. 43 * cause / target exception filled in. 45 * @param exception 46 * the exception which occurred while running the Method or 49 public InvocationTargetException(Throwable exception) { 50 super(null, exception); 51 target = exception; 56 * cause / target exception and message filled in. 59 * the detail message for the exception [all...] |
UndeclaredThrowableException.java | 21 * This class provides a wrapper for an undeclared, checked exception thrown by 34 * undeclared, checked exception that occurred. 36 * @param exception 37 * the undeclared, checked exception that occurred 39 public UndeclaredThrowableException(Throwable exception) { 40 this.undeclaredThrowable = exception; 41 initCause(exception); 46 * undeclared, checked exception that occurred and a message. 49 * the detail message for the exception 50 * @param exception [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
TestException.idl | 28 exception TestException {
|
/external/fdlibm/ |
s_matherr.c | 17 int ieee_matherr(struct exception *x) 20 struct exception *x;
|
/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
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/exception.unexpected/unexpected.handler/ |
unexpected_handler.pass.cpp | 12 #include <exception>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/exception.terminate/terminate.handler/ |
terminate_handler.pass.cpp | 12 #include <exception>
|