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

1 2 3 4 5 6 7 8 91011

  /external/stlport/stlport/
math.h 23 #if !defined (exception) && (!defined (__KCC) || (__KCC_VERSION < 4000)) && \
26 # define exception __math_exception macro
36 # undef exception macro
42 # define _exception exception
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/
BufferOverflowExceptionTest.java 50 public void testSerializationSelf() throws Exception {
72 public void testSerializationCompatibility() throws Exception {
87 BufferOverflowException exception = new BufferOverflowException(); local
88 assertNull(exception.getMessage());
89 assertNull(exception.getLocalizedMessage());
90 assertNull(exception.getCause());
BufferUnderflowExceptionTest.java 53 public void testSerializationSelf() throws Exception {
75 public void testSerializationCompatibility() throws Exception {
90 BufferUnderflowException exception = new BufferUnderflowException(); local
91 assertNull(exception.getMessage());
92 assertNull(exception.getLocalizedMessage());
93 assertNull(exception.getCause());
InvalidMarkExceptionTest.java 40 public void testSerializationSelf() throws Exception {
54 public void testSerializationCompatibility() throws Exception {
69 InvalidMarkException exception = new InvalidMarkException(); local
70 assertNull(exception.getMessage());
71 assertNull(exception.getLocalizedMessage());
72 assertNull(exception.getCause());
ReadOnlyBufferExceptionTest.java 49 public void testSerializationSelf() throws Exception {
71 public void testSerializationCompatibility() throws Exception {
86 ReadOnlyBufferException exception = new ReadOnlyBufferException(); local
87 assertNull(exception.getMessage());
88 assertNull(exception.getLocalizedMessage());
89 assertNull(exception.getCause());
  /external/emma/core/java12/com/vladium/util/exception/
Exceptions.java 9 package 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
IThrowableWrapper.java 9 package com.vladium.util.exception;
18 * Any exception that wraps around another exception and wishes to be fully
39 * Every exception hierarchy implementing this interface must ensure that
48 * Every exception hierarchy implementing this interface must ensure that
  /external/v8/test/mjsunit/
debug-clearbreakpointgroup.js 34 var exception = false; variable
75 exception = e
105 "listener did not run to completion: " + exception);
117 assertFalse(exception, "exception in listener");
  /external/webkit/JavaScriptCore/runtime/
Completion.cpp 61 JSValue exception; local
62 JSValue result = exec->interpreter()->execute(program.get(), exec, scopeChain.node(), thisObj, &exception);
64 if (exception) {
65 if (exception.isObject() && asObject(exception)->isWatchdogException())
66 return Completion(Interrupted, exception);
67 return Completion(Throw, exception);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.4.3-16-n.js 50 var exception = "No exception thrown"; variable
57 exception = e.toString();
63 " (threw " + exception +")",
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
boolean-001.js 22 var exception = "No exception thrown"; variable
33 exception = e.toString();
39 "(threw " +exception +")",
boolean-002.js 25 var exception = "No exception thrown"; variable
36 exception = e.toString();
42 "(threw " +exception +")",
expression-005.js 23 var exception = "No exception thrown"; variable
29 exception = e.toString();
34 "result= new Math() (threw " + exception + ")",
expression-007.js 22 var exception = "No exception thrown"; variable
30 exception = e.toString();
36 " (threw " + exception +")",
expression-015.js 20 var exception = "No exception thrown"; variable
27 exception = e.toString();
33 " (threw " + exception +")",
expression-016.js 20 var exception = "No exception thrown"; variable
27 exception = e.toString();
33 " (threw " + exception +")",
expression-017.js 20 var exception = "No exception thrown"; variable
27 exception = e.toString();
33 " (threw " + exception +")",
global-001.js 26 var exception = "No exception thrown"; variable
33 exception = e.toString();
39 " (threw " + exception +")",
global-002.js 26 var exception = "No exception thrown"; variable
33 exception = e.toString();
39 " (threw " + exception +")",
lexical-001.js 33 var exception = "No exception thrown"; variable
39 exception = e.toString();
45 " (threw " + exception +")",
lexical-002.js 33 var exception = "No exception thrown"; variable
39 exception = e.toString();
45 " (threw " + exception +")",
lexical-003.js 23 var exception = "No exception thrown"; variable
30 exception = e.toString();
36 " (threw " + exception +")",
lexical-004.js 31 var exception = "No exception thrown"; variable
38 exception = e.toString();
44 " (threw " + exception +")",
lexical-005.js 32 var exception = "No exception thrown"; variable
39 exception = e.toString();
45 " (threw " + exception +")",

Completed in 1281 milliseconds

1 2 3 4 5 6 7 8 91011