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

1 2 3 4 5 6 7 8 91011>>

  /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/webkit/Source/WebCore/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);
  /ndk/tests/device/gnustl-shared-1/jni/
foo.cpp 2 #include <exception>
8 throw std::exception();
main.cpp 2 #include <exception>
11 // Catch all exceptions. Note that if we used catch (std::exception& e)
  /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) {
  /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/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
27 public class InvocationTargetException extends Exception {
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
    [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/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
  /dalvik/vm/mterp/c/
OP_MOVE_EXCEPTION.cpp 3 ILOGV("|move-exception v%d", vdst);
4 assert(self->exception != NULL);
5 SET_REGISTER(vdst, (u4)self->exception);
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
DialogHelper.java 26 public void showErrorMessageDialog(int titleId, Exception exception);
28 public void showErrorMessageDialog(String title, Exception exception);
  /external/clang/test/CodeGenCXX/
2006-03-06-C++RecurseCrash.cpp 3 class exception { }; class in namespace:std
18 class recursive_init: public std::exception {
  /external/stlport/stlport/
exception.h 25 # include <exception>
28 # include_next <exception.h>
30 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
expression-001.js 30 var exception = "No exception was thrown";
36 exception = e.toString();
42 "(threw "+ exception +")",
  /ndk/sources/cxx-stl/stlport/stlport/
exception.h 25 # include <exception>
28 # include_next <exception.h>
30 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
exception.h 25 # include <exception>
28 # include_next <exception.h>
30 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)

Completed in 1236 milliseconds

1 2 3 4 5 6 7 8 91011>>