Searched defs:exception (Results 1 - 25 of 324) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/regress/
H A Dregress-1119.js32 __proto__.__defineSetter__("y", function() { throw 'exception'; });
38 var exception; variable
42 exception = e;
44 assertEquals('exception', exception);
H A Dregress-1132.js28 // Test the case when exception is thrown from the parser when lazy
44 var exception = false; variable
48 exception = true;
50 assertTrue(exception);
H A Dregress-1170.js45 var exception = false; variable
49 exception = true;
52 assertFalse(exception);
54 exception = false;
58 exception = true;
61 assertTrue(exception);
64 exception = false;
68 exception = true;
72 assertTrue(exception);
H A Dregress-crbug-100859.js32 var exception = false; variable
37 exception = true;
39 assertTrue(exception);
H A Dregress-1130.js33 var exception = false; variable
37 exception = true;
40 assertTrue(exception);
H A Dregress-1172-bis.js28 // Verifies that exception thrown from JS accessors when attempting a call
32 var exception = false; variable
36 exception = true;
39 assertTrue(exception);
H A Dregress-1327557.js31 var exception = false; variable
35 exception = true;
38 assertTrue(exception);
H A Dregress-1412.js53 var exception = false; variable
57 exception = true;
59 assertTrue(exception);
/external/v8/test/mjsunit/
H A Ddebug-set-script-source.js34 var exception = null; variable
44 exception = e;
62 assertEquals("illegal access", exception);
H A Ddebug-clearbreakpointgroup.js34 var exception = false; variable
75 exception = e
105 "listener did not run to completion: " + exception);
117 assertFalse(exception, "exception in listener");
/external/stlport/stlport/
H A Dmath.h23 #if !defined (exception) && (!defined (__KCC) || (__KCC_VERSION < 4000)) && \
26 # define exception __math_exception macro
36 # undef exception macro
42 # define _exception exception
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtException.java1 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/clang/test/SemaTemplate/
H A Dinstantiate-try-catch.cpp23 void exception() { function in class:PR10232::Templated
30 template class Templated<int>; // expected-note{{in instantiation of member function 'PR10232::Templated<int>::exception' requested here}}
/external/emma/core/java12/com/vladium/util/exception/
H A DICodedException.java9 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
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
H A D7.4.3-16-n.js50 var exception = "No exception thrown"; variable
57 exception = e.toString();
63 " (threw " + exception +")",
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
H A Dboolean-001.js22 var exception = "No exception thrown"; variable
33 exception = e.toString();
39 "(threw " +exception +")",
H A Dboolean-002.js25 var exception = "No exception thrown"; variable
36 exception = e.toString();
42 "(threw " +exception +")",
H A Dexpression-005.js23 var exception = "No exception thrown"; variable
29 exception = e.toString();
34 "result= new Math() (threw " + exception + ")",
H A Dexpression-007.js22 var exception = "No exception thrown"; variable
30 exception = e.toString();
36 " (threw " + exception +")",
H A Dexpression-015.js20 var exception = "No exception thrown"; variable
27 exception = e.toString();
33 " (threw " + exception +")",
H A Dexpression-016.js20 var exception = "No exception thrown"; variable
27 exception = e.toString();
33 " (threw " + exception +")",
H A Dexpression-017.js20 var exception = "No exception thrown"; variable
27 exception = e.toString();
33 " (threw " + exception +")",
H A Dglobal-001.js26 var exception = "No exception thrown"; variable
33 exception = e.toString();
39 " (threw " + exception +")",
H A Dglobal-002.js26 var exception = "No exception thrown"; variable
33 exception = e.toString();
39 " (threw " + exception +")",
H A Dlexical-001.js33 var exception = "No exception thrown"; variable
39 exception = e.toString();
45 " (threw " + exception +")",

Completed in 271 milliseconds

1234567891011>>