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

1234567891011

/external/chromium_org/v8/test/mjsunit/regress/
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-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-opt-after-debug-deopt.js43 exception = e;
48 var exception = null; variable
76 assertNull(exception);
H A Dregress-1327557.js31 var exception = false; variable
35 exception = true;
38 assertTrue(exception);
H A Dregress-debug-deopt-while-recompile.js37 exception = e;
42 var exception = null; variable
84 assertNull(exception);
H A Dregress-119609.js32 var exception = false; variable
52 exception = e.toString() + e.stack;
71 assertFalse(exception);
H A Dregress-131994.js35 var exception = false; variable
46 exception = e;
69 assertFalse(exception);
H A Dregress-1412.js53 var exception = false; variable
57 exception = true;
59 assertTrue(exception);
H A Dregress-1639.js32 var exception = false; variable
62 exception = true;
91 assertFalse(exception);
/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);
/external/chromium_org/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/v8/test/mjsunit/
H A Ddebug-set-script-source.js34 var exception = null; variable
44 exception = e;
62 assertEquals("illegal access", exception);
/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

Completed in 297 milliseconds

1234567891011