HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 76 - 100 of 263) sorted by null

1 2 34 5 6 7 8 91011

  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
statement-008.js 21 var exception = "No exception thrown"; variable
28 exception = e.toString();
34 " (threw " + exception +")",
statement-009.js 20 var exception = "No exception thrown"; variable
27 exception = e.toString();
33 " (threw " + exception +")",
string-001.js 29 var exception = "No exception thrown"; variable
38 exception = e.toString();
45 " (threw " + exception +")",
string-002.js 27 var exception = "No exception thrown"; variable
36 exception = e.toString();
43 " (threw " + exception +")",
date-001.js 32 var exception = "No exception thrown"; variable
40 exception = e.toString();
46 " (threw " + exception +")",
date-002.js 27 var exception = "No exception thrown"; variable
35 exception = e.toString();
41 " (threw " + exception +")",
date-003.js 27 var exception = "No exception thrown"; variable
35 exception = e.toString();
41 " (threw " + exception +")",
date-004.js 24 var exception = "No exception thrown"; variable
32 exception = e.toString();
38 " (threw " + exception +")",
expression-002.js 32 var exception = "No exception thrown"; variable
39 exception = e.toString();
46 "(threw " + exception +")",
expression-003.js 27 var exception = "No exception thrown"; variable
34 exception = e.toString();
41 "(threw " + exception +")",
expression-004.js 22 var exception = "No exception thrown"; variable
29 exception = e.toString();
35 "(threw " + exception +")",
expression-006.js 24 var exception = "No exception thrown"; variable
32 exception = e.toString();
38 " (threw " + exception +")",
  /frameworks/base/core/java/android/pim/vcard/exception/
VCardAgentNotSupportedException.java 16 package android.pim.vcard.exception;
VCardException.java 16 package android.pim.vcard.exception;
18 public class VCardException extends java.lang.Exception {
VCardInvalidCommentLineException.java 17 package android.pim.vcard.exception;
VCardInvalidLineException.java 17 package android.pim.vcard.exception;
VCardNestedException.java 17 package android.pim.vcard.exception;
VCardNotSupportedException.java 16 package android.pim.vcard.exception;
19 * The exception which tells that the input VCard is probably valid from the view of
VCardVersionException.java 17 package android.pim.vcard.exception;
  /dalvik/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
52 * stack trace and the specified cause. The exception should be the one
55 * @param exception
56 * the exception that caused this error.
58 public ExceptionInInitializerError(Throwable exception) {
60 this.exception = exception;
61 initCause(exception);
65 * Returns the exception that is the cause of this error
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/
PrivilegedActionException.java 37 public class PrivilegedActionException extends Exception {
41 private Exception exception; field in class:PrivilegedActionException
48 * the exception which is the cause for this exception.
50 public PrivilegedActionException(Exception ex) {
52 this.exception = ex;
56 * Returns the exception that was thrown by a
59 * @return the exception that was thrown by a
62 public Exception getException()
    [all...]
  /dalvik/libcore/xml/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 {
46 this.exception = null;
57 this.exception = null;
62 * Create a new SAXException wrapping an existing exception.
64 * <p>The existing exception will be embedded in the new
68 * @param e The exception to be wrapped in a SAXException
149 private Exception exception; field in class:SAXException
    [all...]
  /dalvik/tests/081-hot-exceptions/src/
Main.java 29 int exception = 0; local
36 exception++;
40 System.out.println("exception = " + exception);
  /external/stlport/stlport/stl/
_exception.h 18 // The header <exception> contains low-level functions that interact
19 // with a compiler's exception-handling mechanism. It is assumed to
23 // On platforms where <exception> does not exist, this header defines
24 // an exception base class. This is *not* a substitute for everything
25 // in <exception>, but it suffices to support a bare minimum of STL
38 # define exception _STLP_NULLIFIED_BROKEN_EXCEPTION_CLASS macro
41 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(Exception.h)
43 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(Exception)
45 # undef exception macro
50 # include_next <exception.h
161 class _STLP_CLASS_DECLSPEC exception { class
    [all...]
  /external/webkit/JavaScriptCore/qt/api/
qscriptengine_p.cpp 49 JSValueRef exception; local
50 JSValueRef result = JSEvaluateScript(m_context, script, /* Global Object */ 0, file, lineNumber, &exception);
52 return new QScriptValuePrivate(this, exception); // returns an exception

Completed in 339 milliseconds

1 2 34 5 6 7 8 91011