HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 226 - 250 of 2577) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
exception 19 // the native header <exception>.
40 * call to the native exception header:
43 # include_next <exception>
47 # include <../include/exception>
49 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception)
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
exception 19 // the native header <exception>.
40 * call to the native exception header:
43 # include_next <exception>
47 # include <../include/exception>
49 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 32 def error(self, exception):
34 raise exception
36 def fatalError(self, exception):
38 raise exception
40 def warning(self, exception):
42 print exception
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 32 def error(self, exception):
34 raise exception
36 def fatalError(self, exception):
38 raise exception
40 def warning(self, exception):
42 print exception
  /art/test/407-arrays/src/
Main.java 99 ArrayIndexOutOfBoundsException exception = null; local
103 exception = e;
106 assertNotNull(exception);
107 assertTrue(exception.toString().contains(Integer.toString(index)));
109 exception = null;
113 exception = e;
116 assertNotNull(exception);
117 assertTrue(exception.toString().contains(Integer.toString(index)));
  /external/chromium_org/chrome/browser/
chrome_browser_application_mac.h 50 // Returns the histogram bin for |exception| if it is one we track
53 size_t BinForException(NSException* exception);
55 // Use UMA to track exception occurance. Exposed for testing purposes.
56 void RecordExceptionWithUma(NSException* exception);
  /external/chromium_org/chrome/browser/resources/options/
content_settings.css 13 .exception-pattern {
19 .exception-setting {
24 select.exception-setting {
28 #exception-column-headers {
34 #exception-column-headers > div {
38 #exception-pattern-column {
42 .exception-value-column-header {
97 .exception-setting.media-audio-setting {
101 .exception-setting.media-video-setting {
  /external/chromium_org/net/data/proxy_resolver_v8_tracing_unittest/
error.js 5 return x.split('-'); // Throws exception.
  /external/chromium_org/testing/gtest/test/
gtest-death-test_ex_test.cc 47 # include <exception> // For std::exception.
53 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw 1, ""), "threw an exception");
55 FAIL() << "An exception escaped a death test macro invocation "
61 class TestException : public std::exception {
67 // Verifies that the exception message is quoted in the failure text.
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebContentDecryptionModuleResult.cpp 24 void WebContentDecryptionModuleResult::completeWithError(WebContentDecryptionModuleException exception, unsigned long systemCode, const WebString& errorMessage)
26 m_impl->completeWithError(exception, systemCode, errorMessage);
  /external/gtest/test/
gtest-death-test_ex_test.cc 47 # include <exception> // For std::exception.
53 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw 1, ""), "threw an exception");
55 FAIL() << "An exception escaped a death test macro invocation "
61 class TestException : public std::exception {
67 // Verifies that the exception message is quoted in the failure text.
  /external/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {};
74 struct bad_cast : exception {};
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
InvalidPropertiesFormatExceptionTest.java 29 public void test_Serialization() throws Exception {
44 InvalidPropertiesFormatException exception = new InvalidPropertiesFormatException( local
47 throwable, exception.getCause());
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {};
74 struct bad_cast : exception {};
  /ndk/sources/third_party/googletest/googletest/test/
gtest-death-test_ex_test.cc 47 # include <exception> // For std::exception.
53 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw 1, ""), "threw an exception");
55 FAIL() << "An exception escaped a death test macro invocation "
61 class TestException : public std::exception {
67 // Verifies that the exception message is quoted in the failure text.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/exception/
exception.hpp 140 class exception;
185 char const * get_diagnostic_information( exception const &, char const * );
187 void copy_boost_exception( exception *, exception const * );
208 exception class in namespace:boost
212 exception(): function in class:boost::exception
220 //On HP aCC, this protected copy constructor prevents throwing boost::exception.
222 exception( exception const & x ) throw(): function in class:boost::exception
231 virtual ~exception() throw(
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {};
74 struct bad_cast : exception {};
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {};
74 struct bad_cast : exception {};
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {};
74 struct bad_cast : exception {};
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {};
74 struct bad_cast : exception {};
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {};
74 struct bad_cast : exception {};
  /external/droiddriver/src/com/google/android/droiddriver/helpers/
BaseDroidDriverTest.java 48 // Prevent crash by uncaught exception.
70 protected void setUp() throws Exception {
80 protected void tearDown() throws Exception {
168 Throwable exception = null; local
173 exception = runException;
176 onFailure(exception);
181 if (exception == null) {
182 exception = tearDownException;
186 if (exception != null) {
187 throw exception;
234 Throwable exception = e.getTargetException(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
IntegerTest.java 94 boolean exception = false;
99 exception = true;
102 exception);
104 exception = false;
109 exception = true;
111 assertTrue("Failed to throw exception for MAX_VALUE + 1", exception);
113 exception = false;
118 exception = true;
120 assertTrue("Failed to throw exception for MIN_VALUE - 1", exception)
    [all...]
  /external/chromium_org/v8/test/webkit/resources/
standalone-pre.js 101 var exception;
106 exception = e;
110 if (exception)
111 testFailed(_a + " should be " + _bv + ". Threw exception " + exception);
135 var exception;
140 exception = e;
143 if (exception)
144 testFailed(_a + " should be undefined. Threw exception " + exception);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMErrorImpl.java 48 // The platform related exception
49 private Exception fException = null;
54 // The location of the exception
83 * @param exception
86 Exception exception) {
90 fException = exception;
97 * @param exception
102 Exception exception, Object relatedData, DOMLocatorImpl location) {
    [all...]

Completed in 1183 milliseconds

1 2 3 4 5 6 7 8 91011>>