Searched refs:exception (Results 1 - 25 of 1179) sorted by relevance

1234567891011>>

/external/stlport/test/unit/
H A Dexception_header_test.cpp8 #include <exception>
/external/chromium_org/v8/test/mjsunit/regress/
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-1130.js33 var exception = false; variable
37 exception = true;
40 assertTrue(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-1327557.js31 var exception = false; variable
35 exception = true;
38 assertTrue(exception);
H A Dregress-crbug-100859.js32 var exception = false; variable
37 exception = true;
39 assertTrue(exception);
H A Dregress-1365.js56 var exception = false;
57 try { valueOf(); } catch(e) { exception = true; }
58 assertTrue(exception);
59 exception = false;
60 try { hasOwnProperty(); } catch(e) { exception = true; }
61 assertTrue(exception);
66 var exception = false;
67 try { f(); } catch(e) { exception = true; }
68 assertTrue(exception);
74 var exception
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/mac/
H A DBlockExceptions.mm31 void ReportBlockedObjCException(NSException *exception)
34 ASSERT_WITH_MESSAGE(0, "Uncaught exception - %@", exception);
36 NSLog(@"*** WebKit discarding exception: <%@> %@", [exception name], [exception reason]);
/external/libcxxabi/src/
H A Dexception.cpp1 //===---------------------------- exception.cpp ---------------------------===//
10 #include <exception>
17 // exception
19 exception::~exception() _NOEXCEPT
23 const char* exception::what() const _NOEXCEPT
25 return "std::exception";
/external/chromium_org/third_party/icu/source/common/
H A Dutypeinfo.h13 // Windows header <typeinfo> does not define 'exception' in 'std' namespace.
16 // include <exception> explicilty and add using statement below.
20 // with exception disabled, you have to suppress warning 4275.
22 #include <exception>
23 using std::exception;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DFailure.java23 private final Throwable exception; field in class:Failure
27 this.exception = builder.exception;
34 public Throwable exception() { method in class:Failure
35 return exception;
40 private Throwable exception; field in class:Failure.Builder
47 public Builder exception(Throwable exception) { argument
48 this.exception = exception;
[all...]
/external/chromium_org/tools/idl_parser/test_parser/
H A Dexception_web.idl36 exception MyExc { };
42 exception MyExcInherit : Foo {};
44 /* ERROR Unexpected keyword "exception" after keyword "partial". */
45 partial exception MyExcPartial { };
57 exception MyExcBig {
64 /* ERROR Unexpected "{" after keyword "exception". */
65 exception {
71 exception ForParent NoColon {
81 exception MyExcConst {
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DPrivateScriptRunner.js25 var exception = new PrivateScriptException();
26 exception.code = code;
27 exception.message = message;
28 exception.name = "PrivateScriptException";
29 throw exception;
107 domExceptions.forEach(function (exception) {
108 global.PrivateScriptDOMException[exception] = code;
113 jsErrors.forEach(function (exception) {
114 global.PrivateScriptJSError[exception] = code;
/external/chromium_org/v8/test/mjsunit/
H A Dstrict-mode-eval.js45 var exception = false;
49 exception = true;
52 assertTrue(exception);
55 var exception = false;
59 exception = true;
62 assertTrue(exception);
65 var exception = false;
69 exception = true;
72 assertTrue(exception);
75 var exception
[all...]
/external/libcxx/test/language.support/support.exception/exception/
H A DAndroid.mk17 test_makefile := external/libcxx/test/language.support/support.exception/exception/Android.mk
19 test_name := language.support/support.exception/exception/exception
20 test_src := exception.pass.cpp
H A Dexception.pass.cpp10 // test exception
12 #include <exception>
18 static_assert(std::is_polymorphic<std::exception>::value,
19 "std::is_polymorphic<std::exception>::value");
20 std::exception b;
21 std::exception b2 = b;
/external/fdlibm/
H A Ds_matherr.c17 int ieee_matherr(struct exception *x)
20 struct exception *x;
/external/icu/icu4c/source/common/
H A Dutypeinfo.h13 // Windows header <typeinfo> does not define 'exception' in 'std' namespace.
16 // include <exception> explicilty and add using statement below.
20 // with exception disabled, you have to suppress warning 4275.
22 #include <exception>
23 using std::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/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/libcxx/test/depr/exception.unexpected/unexpected.handler/
H A Dunexpected_handler.pass.cpp12 #include <exception>
/external/libcxx/test/language.support/support.exception/exception.terminate/terminate.handler/
H A Dterminate_handler.pass.cpp12 #include <exception>
/external/libcxx/test/language.support/support.exception/
H A Dversion.pass.cpp10 // <exception>
12 #include <exception>
/external/chromium_org/ppapi/c/dev/
H A Dppp_class_deprecated.h46 struct PP_Var* exception);
50 * If the method does not exist, return false and don't set the exception.
52 * if you need to throw an exception, still return false.
56 struct PP_Var* exception);
62 * exception and return a var of type Void. A property does not exist if
67 struct PP_Var* exception);
86 struct PP_Var* exception);
95 struct PP_Var* exception);
103 struct PP_Var* exception);
115 struct PP_Var* exception);
[all...]
/external/clang/test/CodeGenCXX/
H A D2006-03-06-C++RecurseCrash.cpp3 class exception { }; class in namespace:std
18 class recursive_init: public std::exception {

Completed in 516 milliseconds

1234567891011>>