Home
last modified time | relevance | path

Searched refs:exception_code (Results 1 – 25 of 1301) sorted by relevance

12345678910>>...53

/dports/devel/swig/swig-4.0.2/Lib/
H A Dexception.i94 exception_code = SWIG_JavaOutOfMemoryError; in SWIG_JavaException()
97 exception_code = SWIG_JavaIOException; in SWIG_JavaException()
101 exception_code = SWIG_JavaRuntimeException; in SWIG_JavaException()
117 exception_code = SWIG_JavaUnknownError; in SWIG_JavaException()
143 exception_code = SWIG_OCamlSystemException; in SWIG_OCamlException()
146 exception_code = SWIG_OCamlOutOfMemoryError; in SWIG_OCamlException()
161 exception_code = SWIG_OCamlUnknownError; in SWIG_OCamlException()
191 exception_code = SWIG_CSharpIOException; in SWIG_CSharpException()
226 SWIG_DExceptionCodes exception_code; in SWIG_DThrowException() local
232 exception_code = SWIG_DIOException; in SWIG_DThrowException()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/dom/
H A Ddom_exception.cc155 uint16_t ToLegacyErrorCode(DOMExceptionCode exception_code) { in ToLegacyErrorCode() argument
156 if (DOMExceptionCode::kLegacyErrorCodeMin <= exception_code && in ToLegacyErrorCode()
157 exception_code <= DOMExceptionCode::kLegacyErrorCodeMax) { in ToLegacyErrorCode()
158 return static_cast<uint16_t>(exception_code); in ToLegacyErrorCode()
165 if (exception_code == entry.code) in FindErrorEntry()
189 String DOMException::GetErrorName(DOMExceptionCode exception_code) { in GetErrorName() argument
190 const DOMExceptionEntry* entry = FindErrorEntry(exception_code); in GetErrorName()
201 const DOMExceptionEntry* entry = FindErrorEntry(exception_code); in GetErrorMessage()
210 DOMException::DOMException(DOMExceptionCode exception_code, in DOMException() argument
214 FindErrorEntry(exception_code)->name in DOMException()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/dom/
H A Ddom_exception.cc155 uint16_t ToLegacyErrorCode(DOMExceptionCode exception_code) { in ToLegacyErrorCode() argument
156 if (DOMExceptionCode::kLegacyErrorCodeMin <= exception_code && in ToLegacyErrorCode()
157 exception_code <= DOMExceptionCode::kLegacyErrorCodeMax) { in ToLegacyErrorCode()
158 return static_cast<uint16_t>(exception_code); in ToLegacyErrorCode()
165 if (exception_code == entry.code) in FindErrorEntry()
189 String DOMException::GetErrorName(DOMExceptionCode exception_code) { in GetErrorName() argument
190 const DOMExceptionEntry* entry = FindErrorEntry(exception_code); in GetErrorName()
201 const DOMExceptionEntry* entry = FindErrorEntry(exception_code); in GetErrorMessage()
210 DOMException::DOMException(DOMExceptionCode exception_code, in DOMException() argument
214 FindErrorEntry(exception_code)->name in DOMException()
[all …]
/dports/devel/libepp-nicbr/libepp-nicbr-1.18/unit_test/
H A DTransportExceptionTestClient.cpp63 int exception_code = TransportException::BIO_DO_CONNECT_ERR; in connect_exception_test() local
64 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in connect_exception_test()
82 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in connect_exception_test()
99 int exception_code = TransportException::LOST_CONNECTION; in bio_read_err_exception_test() local
100 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in bio_read_err_exception_test()
125 int exception_code = TransportException::READ_TIMEOUT; in read_timeout_test() local
126 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in read_timeout_test()
153 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in invalid_total_length_exception_test()
180 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in payload_incomplete_exception_test()
197 int exception_code = TransportException::LOST_CONNECTION; in bio_write_exception_test() local
[all …]
H A DXmlExceptionTest.cpp58 int exception_code = XmlException::INVALID_XML_DOCUMENT; in invalid_xml_test() local
59 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in invalid_xml_test()
70 int exception_code = XmlException::INVALID_XML_DOCUMENT; in invalid_xml_test() local
71 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in invalid_xml_test()
98 int exception_code = XmlException::INVALID_XML_DOCUMENT; in invalid_xml_test() local
99 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in invalid_xml_test()
112 int exception_code = XmlException::INVALID_XML_DOCUMENT; in invalid_xml_test() local
113 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in invalid_xml_test()
132 int exception_code = XmlException::INVALID_XML_DOCUMENT; in invalid_xml_test() local
133 CPPUNIT_ASSERT_EQUAL(exception_code, e.get_code()); in invalid_xml_test()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/bindings/
H A Dexception_state.cc49 void ExceptionState::ThrowException(ExceptionCode exception_code, in ThrowException() argument
58 switch (static_cast<ESErrorType>(exception_code)) { in ThrowException()
79 if (IsDOMExceptionCode(exception_code)) { in ThrowException()
91 SetException(exception_code, processed_message, exception); in ThrowException()
98 DCHECK_NE(exception_code, DOMExceptionCode::kSecurityError); in ThrowDOMException()
130 ThrowDOMException(exception_code, String(message)); in ThrowDOMException()
161 CHECK(exception_code); in SetException()
163 code_ = exception_code; in SetException()
229 DOMExceptionCode exception_code, in ThrowDOMException() argument
253 DOMExceptionCode exception_code, in ThrowDOMException() argument
[all …]
H A Dexception_code.h115 inline bool IsDOMExceptionCode(ExceptionCode exception_code) { in IsDOMExceptionCode() argument
116 return static_cast<ExceptionCode>(1) <= exception_code && in IsDOMExceptionCode()
117 exception_code < in IsDOMExceptionCode()
143 inline ExceptionCode ToExceptionCode(DOMExceptionCode exception_code) { in ToExceptionCode() argument
144 return static_cast<ExceptionCode>(exception_code); in ToExceptionCode()
150 inline ExceptionCode ToExceptionCode(ESErrorType exception_code) { in ToExceptionCode() argument
151 return static_cast<ExceptionCode>(exception_code); in ToExceptionCode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/bindings/
H A Dexception_state.cc50 void ExceptionState::ThrowException(ExceptionCode exception_code, in ThrowException() argument
59 switch (static_cast<ESErrorType>(exception_code)) { in ThrowException()
80 if (IsDOMExceptionCode(exception_code)) { in ThrowException()
92 SetException(exception_code, processed_message, exception); in ThrowException()
99 DCHECK_NE(exception_code, DOMExceptionCode::kSecurityError); in ThrowDOMException()
137 ThrowDOMException(exception_code, String(message)); in ThrowDOMException()
172 CHECK(exception_code); in SetException()
174 code_ = exception_code; in SetException()
279 DOMExceptionCode exception_code, in ThrowDOMException() argument
308 DOMExceptionCode exception_code, in ThrowDOMException() argument
[all …]
H A Dexception_code.h115 inline bool IsDOMExceptionCode(ExceptionCode exception_code) { in IsDOMExceptionCode() argument
116 return static_cast<ExceptionCode>(1) <= exception_code && in IsDOMExceptionCode()
117 exception_code < in IsDOMExceptionCode()
148 inline ExceptionCode ToExceptionCode(DOMExceptionCode exception_code) { in ToExceptionCode() argument
149 return static_cast<ExceptionCode>(exception_code); in ToExceptionCode()
155 inline ExceptionCode ToExceptionCode(ESErrorType exception_code) { in ToExceptionCode() argument
156 return static_cast<ExceptionCode>(exception_code); in ToExceptionCode()
/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/util/cmdline/
H A DCommandLineException.h54 } exception_code; typedef
56 error(exception_code c, const std::string & message) in error()
59 explicit error(exception_code c) in error()
62 static std::string default_message(exception_code c) { in default_message()
77 exception_code m_code;
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/lib/
H A Ddiagnostics_win.cpp1376 exception_code, in diagnostics_dump_generic_exception()
1389 DWORD exception_code = pExPtrs->ExceptionRecord->ExceptionCode; in diagnostics_dump_exception_record() local
1397 switch (exception_code) { in diagnostics_dump_exception_record()
1447 status, exception_code, exception_address, substatus in diagnostics_dump_exception_record()
1466 diagnostics_dump_generic_exception("Divide by Zero", exception_code, exception_address); in diagnostics_dump_exception_record()
1475 diagnostics_dump_generic_exception("Float Overflow", exception_code, exception_address); in diagnostics_dump_exception_record()
1481 … diagnostics_dump_generic_exception("Float Underflow", exception_code, exception_address); in diagnostics_dump_exception_record()
1493 diagnostics_dump_generic_exception("In Page Error", exception_code, exception_address); in diagnostics_dump_exception_record()
1502 diagnostics_dump_generic_exception("Stack Overflow", exception_code, exception_address); in diagnostics_dump_exception_record()
1511 diagnostics_dump_generic_exception("Invalid Handle", exception_code, exception_address); in diagnostics_dump_exception_record()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/crashpad/crashpad/util/misc/
H A Dmetrics.cc90 void Metrics::ExceptionCode(uint32_t exception_code) { in ExceptionCode() argument
92 exception_code); in ExceptionCode()
108 void Metrics::HandlerCrashed(uint32_t exception_code) { in HandlerCrashed() argument
110 "Crashpad.HandlerCrash.ExceptionCode." METRICS_OS_NAME, exception_code); in HandlerCrashed()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/crashpad/crashpad/util/misc/
H A Dmetrics.cc90 void Metrics::ExceptionCode(uint32_t exception_code) { in ExceptionCode() argument
92 exception_code); in ExceptionCode()
108 void Metrics::HandlerCrashed(uint32_t exception_code) { in HandlerCrashed() argument
110 "Crashpad.HandlerCrash.ExceptionCode." METRICS_OS_NAME, exception_code); in HandlerCrashed()
/dports/devel/hyperscan/boost_1_75_0/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/databases/xtrabackup/boost_1_59_0/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/databases/percona57-server/boost_1_59_0/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/boost-1.70.0/include/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/databases/percona57-client/boost_1_59_0/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/devel/boost-libs/boost_1_72_0/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/devel/boost-python-libs/boost_1_72_0/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/boost/archive/iterators/
H A Dbase64_exception.hpp39 } exception_code; typedef in boost::archive::iterators::base64_exception
40 exception_code code;
42 base64_exception(exception_code c = other_exception) : code(c) in base64_exception()

12345678910>>...53