HomeSort by relevance Sort by last modified time
    Searched full:exceptions (Results 1 - 25 of 1566) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/059-finalizer-throw/
info.txt 1 Verify that exceptions thrown from finalizers are ignored.
  /external/webkit/WebCore/manual-tests/
debugger-caught-uncaught-exceptions.html 6 // Pause on uncaught exceptions and pause on all exceptions should pause here,
15 // This will pause on Pause on all exceptions, but not Pause on uncaught exceptions.
23 // This will pause on both Pause on all exceptions and Pause on uncaught exceptions.
29 <p>This page tests <a href="https://bugs.webkit.org/show_bug.cgi?id=28622">Caught exceptions still pause the debugger</a>
30 <p>To test this bug, open the inspector, open the scripts panel, and click the button to pause on all exceptions, press
31 the button, and see which exceptions are paused on. Then press the pause on exceptions button again to onl
    [all...]
  /dalvik/tests/081-hot-exceptions/
info.txt 2 exceptions encountered during trace selection. The existence of exceptions will
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttExceptions.java 23 * Attribute class for standard {@code Exceptions} attributes.
27 public static final String ATTRIBUTE_NAME = "Exceptions";
30 private final TypeList exceptions; field in class:AttExceptions
35 * @param exceptions {@code non-null;} list of classes, presumed but not
38 public AttExceptions(TypeList exceptions) {
42 if (exceptions.isMutable()) {
43 throw new MutabilityException("exceptions.isMutable()");
47 throw new NullPointerException("exceptions == null");
50 this.exceptions = exceptions;
    [all...]
  /libcore/sqlite-jdbc/src/main/java/SQLite/
Exception.java 4 * Class for SQLite related exceptions.
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java 24 Class[] exceptions = constructor.getExceptionTypes(); local
25 assertEquals(1, exceptions.length);
26 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
28 exceptions[0] = NullPointerException.class;
29 exceptions = constructor.getExceptionTypes();
30 assertEquals(1, exceptions.length);
31 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
MethodTest.java 24 Class[] exceptions = method.getExceptionTypes(); local
25 assertEquals(1, exceptions.length);
26 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
28 exceptions[0] = NullPointerException.class;
29 exceptions = method.getExceptionTypes();
30 assertEquals(1, exceptions.length);
31 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
  /external/proguard/src/proguard/classfile/editor/
ExceptionsAttributeEditor.java 26 * This class can add exceptions to a given exceptions attribute.
27 * Exceptions to be added must have been added to the constant pool and filled
38 * Creates a new ExceptionsAttributeEditor that will edit exceptions in the
39 * given exceptions attribute.
48 * Adds a given exception to the exceptions attribute.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
fenv.h 49 FE_ALL_EXCEPT bitwise OR of all supported exceptions
64 /* Clear the supported exceptions represented by EXCEPTS. */
71 /* Raise the supported exceptions represented by EXCEPTS. */
74 /* Set complete status for exceptions indicated by EXCEPTS according to
78 /* Determine which of subset of the exceptions specified by EXCEPTS are
100 exceptions. */
107 /* Save current exceptions in temporary storage, install environment
108 represented by object pointed to by ENVP and raise exceptions
109 according to saved exceptions. */
120 /* Enable individual exceptions. Will not enable more exceptions tha
    [all...]
  /dalvik/dx/tests/018-method-attrib-Exceptions/
info.txt 6 method with a syntactically valid Exceptions attribute.
expected.txt 15 0007: utf8{"Exceptions"}
33 name: Exceptions
small-class.txt 19 01 000a "Exceptions" # 0007: utf8["Exceptions"]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
CryptoException.java 4 * the foundation class for the hard exceptions thrown by the crypto packages.
RuntimeCryptoException.java 4 * the foundation class for the exceptions thrown by the crypto packages.
  /cts/tools/signature-tools/src/signature/model/impl/
SigExecutableMember.java 36 private Set<ITypeReference> exceptions = Uninitialized.unset(); field in class:SigExecutableMember
59 return exceptions;
62 public void setExceptions(Set<ITypeReference> exceptions) {
63 this.exceptions = exceptions;
  /bionic/libm/man/
feenableexcept.3 52 unmask and mask (respectively) exceptions specified in
58 All exceptions are masked by default.
60 Floating-point operations that produce unmasked exceptions will trap, and a
70 For all of these functions, the possible types of exceptions
73 Some architectures may define other types of floating-point exceptions.
80 functions return a bitmap of the exceptions that were unmasked
89 Functions in the standard library may trigger exceptions multiple
91 however, they generally do not trigger spurious exceptions.
93 No interface is provided to permit exceptions to be handled in
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
exception-001.js 4 * Description: Tests for JavaScript Standard Exceptions
13 var TITLE = "Tests for JavaScript Standard Exceptions: CallError";
exception-002.js 4 * Description: Tests for JavaScript Standard Exceptions
13 var TITLE = "Tests for JavaScript Standard Exceptions: ConstructError";
exception-003.js 4 * Description: Tests for JavaScript Standard Exceptions
13 var TITLE = "Tests for JavaScript Standard Exceptions: TargetError";
exception-004.js 4 * Description: Tests for JavaScript Standard Exceptions
13 var TITLE = "Tests for JavaScript Standard Exceptions: ToObjectError";
exception-005.js 4 * Description: Tests for JavaScript Standard Exceptions
13 var TITLE = "Tests for JavaScript Standard Exceptions: ToObjectError";
exception-006.js 4 * Description: Tests for JavaScript Standard Exceptions
13 var TITLE = "Tests for JavaScript Standard Exceptions: TypeError";
exception-007.js 4 * Description: Tests for JavaScript Standard Exceptions
13 var TITLE = "Tests for JavaScript Standard Exceptions: TypeError";
exception-008.js 4 * Description: Tests for JavaScript Standard Exceptions
13 var TITLE = "Tests for JavaScript Standard Exceptions: SyntaxError";
exception-009.js 4 * Description: Tests for JavaScript Standard Exceptions
15 var TITLE = "Tests for JavaScript Standard Exceptions: SyntaxError";

Completed in 673 milliseconds

1 2 3 4 5 6 7 8 91011>>