/third_party/node/test/parallel/ |
D | test-errors-systemerror.js | 6 const { E, SystemError, codes } = require('internal/errors'); 9 () => { new SystemError(); }, 16 E('ERR_TEST', 'custom message', SystemError);
|
/third_party/python/Lib/test/ |
D | test_getargs2.py | 880 self.assertRaises(SystemError, getargs_s_hash_int, "abc") 881 self.assertRaises(SystemError, getargs_s_hash_int, x=42) 1136 except SystemError as e: 1148 except SystemError as e: 1174 with self.assertRaisesRegex(SystemError, 1185 with self.assertRaisesRegex(SystemError, 1206 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords, 1208 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords, 1210 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords, 1212 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords, [all …]
|
D | test_code.py | 386 self.assertRaises(SystemError, SetExtra, 42, FREE_INDEX, 388 self.assertRaises(SystemError, GetExtra, 42, FREE_INDEX, 393 self.assertRaises(SystemError, SetExtra, f.__code__,
|
D | exception_hierarchy.txt | 47 +-- SystemError
|
D | test_xxlimited.py | 73 with self.assertRaises(SystemError):
|
D | test_mmap.py | 101 except SystemError: 170 except SystemError: # resize is not universally supported 520 except SystemError: 717 except SystemError:
|
D | test_capi.py | 225 with self.assertRaises(SystemError) as cm: 259 with self.assertRaises(SystemError) as cm: 581 self.assertRaises(SystemError, pynumber_tobase, 123, 0)
|
D | test_unicode.py | 2862 self.assertRaises(SystemError, unicode_asucs4, s, l-1, True) 2863 self.assertRaises(SystemError, unicode_asucs4, s, l-2, False) 2934 SystemError, 2958 self.assertRaises(SystemError, unicode_copycharacters, s, 1, s, 0, 5) 2959 self.assertRaises(SystemError, unicode_copycharacters, s, 0, s, 0, -1) 2960 self.assertRaises(SystemError, unicode_copycharacters, s, 0, b'', 0, 0)
|
/third_party/vulkan-headers/include/vulkan/ |
D | vulkan.hpp | 6037 class SystemError class 6042 SystemError( std::error_code ec ) : Error(), std::system_error( ec ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 6043 …SystemError( std::error_code ec, std::string const & what ) : Error(), std::system_error( ec, what… in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 6044 SystemError( std::error_code ec, char const * what ) : Error(), std::system_error( ec, what ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 6045 …SystemError( int ev, std::error_category const & ecat ) : Error(), std::system_error( ev, ecat ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 6046 …SystemError( int ev, std::error_category const & ecat, std::string const & what ) : Error(), std::… in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 6047 …SystemError( int ev, std::error_category const & ecat, char const * what ) : Error(), std::system_… in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 6071 class OutOfHostMemoryError : public SystemError 6074 …OutOfHostMemoryError( std::string const & message ) : SystemError( make_error_code( Result::eError… in OutOfHostMemoryError() 6075 …OutOfHostMemoryError( char const * message ) : SystemError( make_error_code( Result::eErrorOutOfHo… in OutOfHostMemoryError() [all …]
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
D | vulkan.hpp | 5984 class SystemError class 5989 SystemError( std::error_code ec ) : Error(), std::system_error( ec ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 5990 …SystemError( std::error_code ec, std::string const & what ) : Error(), std::system_error( ec, what… in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 5991 SystemError( std::error_code ec, char const * what ) : Error(), std::system_error( ec, what ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 5992 …SystemError( int ev, std::error_category const & ecat ) : Error(), std::system_error( ev, ecat ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 5993 SystemError( int ev, std::error_category const & ecat, std::string const & what ) in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 5996 SystemError( int ev, std::error_category const & ecat, char const * what ) in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError 6022 class OutOfHostMemoryError : public SystemError 6026 : SystemError( make_error_code( Result::eErrorOutOfHostMemory ), message ) in OutOfHostMemoryError() 6029 : SystemError( make_error_code( Result::eErrorOutOfHostMemory ), message ) in OutOfHostMemoryError() [all …]
|
/third_party/python/Doc/c-api/ |
D | function.rst | 82 Raises :exc:`SystemError` and returns ``-1`` on failure. 96 Raises :exc:`SystemError` and returns ``-1`` on failure. 110 Raises :exc:`SystemError` and returns ``-1`` on failure.
|
D | set.rst | 138 :exc:`SystemError` if *set* is not an instance of :class:`set` or its 160 set is empty. Raise a :exc:`SystemError` if *set* is not an instance of
|
D | module.rst | 65 :exc:`SystemError` is raised and ``NULL`` is returned. 76 single: SystemError (built-in exception) 79 or if it is not a string, :exc:`SystemError` is raised and ``NULL`` is returned. 106 single: SystemError (built-in exception) 110 unicode string, raise :exc:`SystemError` and return ``NULL``; otherwise return
|
/third_party/python/Lib/ctypes/test/ |
D | test_memfunctions.py | 14 self.assertRaises((OverflowError, MemoryError, SystemError), 16 self.assertRaises((OverflowError, MemoryError, SystemError),
|
/third_party/node/lib/internal/ |
D | errors.js | 195 class SystemError extends Error { class 300 return class NodeError extends SystemError { 347 if (def === SystemError) { 763 SystemError, property 878 E('ERR_FS_EISDIR', 'Path is a directory', SystemError); 1391 SystemError); 1412 E('ERR_SYSTEM_ERROR', 'A system error occurred', SystemError); 1448 E('ERR_TTY_INIT_FAILED', 'TTY initialization failed', SystemError);
|
/third_party/python/Lib/test/test_importlib/extension/ |
D | test_loader.py | 174 with self.assertRaises(SystemError): 177 with self.assertRaises(SystemError): 259 with self.assertRaises(SystemError):
|
/third_party/python/Lib/sqlite3/test/ |
D | backup.py | 137 raise SystemError('nearly out of space') 139 with self.assertRaises(SystemError) as err:
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a2.rst | 7 PyObject_Call() and PyCFunction_Call() now raise a SystemError if a function 8 returns a result and raises an exception. The SystemError is chained to the 176 much memory and raised SystemError or MemoryError. Original patch by Aleksi
|
D | 3.7.0rc1.rst | 133 raise :exc:`TypeError` instead of :exc:`SystemError` when performed on
|
D | 3.6.3rc1.rst | 57 Raise a TypeError instead of SystemError in case warnings.onceregistry is 188 failing with SystemError. Relative import from non-package now fails with 189 ImportError rather than SystemError.
|
/third_party/python/Lib/encodings/ |
D | __init__.py | 40 class CodecRegistryError(LookupError, SystemError):
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | encoder.py | 595 except SystemError: 605 except SystemError: 614 except SystemError:
|
/third_party/mesa3d/.gitlab-ci/tests/ |
D | test_lava_job_submitter.py | 50 @pytest.mark.parametrize("exception", [RuntimeError, SystemError, KeyError])
|
/third_party/python/Lib/ |
D | _osx_support.py | 244 raise SystemError(
|
/third_party/python/Lib/ctypes/ |
D | __init__.py | 151 raise SystemError("sizeof(%s) wrong: %d instead of %d" % \
|