Home
last modified time | relevance | path

Searched refs:SystemError (Results 1 – 25 of 64) sorted by relevance

123

/third_party/node/test/parallel/
Dtest-errors-systemerror.js6 const { E, SystemError, codes } = require('internal/errors');
9 () => { new SystemError(); },
16 E('ERR_TEST', 'custom message', SystemError);
/third_party/python/Lib/test/
Dtest_getargs2.py880 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 …]
Dtest_code.py386 self.assertRaises(SystemError, SetExtra, 42, FREE_INDEX,
388 self.assertRaises(SystemError, GetExtra, 42, FREE_INDEX,
393 self.assertRaises(SystemError, SetExtra, f.__code__,
Dexception_hierarchy.txt47 +-- SystemError
Dtest_xxlimited.py73 with self.assertRaises(SystemError):
Dtest_mmap.py101 except SystemError:
170 except SystemError: # resize is not universally supported
520 except SystemError:
717 except SystemError:
Dtest_capi.py225 with self.assertRaises(SystemError) as cm:
259 with self.assertRaises(SystemError) as cm:
581 self.assertRaises(SystemError, pynumber_tobase, 123, 0)
Dtest_unicode.py2862 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/
Dvulkan.hpp6037 class SystemError class
6042 SystemError( std::error_code ec ) : Error(), std::system_error( ec ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
6043SystemError( 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
6045SystemError( int ev, std::error_category const & ecat ) : Error(), std::system_error( ev, ecat ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
6046SystemError( int ev, std::error_category const & ecat, std::string const & what ) : Error(), std::… in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
6047SystemError( 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/
Dvulkan.hpp5984 class SystemError class
5989 SystemError( std::error_code ec ) : Error(), std::system_error( ec ) {} in SystemError() function in VULKAN_HPP_NAMESPACE::SystemError
5990SystemError( 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
5992SystemError( 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/
Dfunction.rst82 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.
Dset.rst138 :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
Dmodule.rst65 :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/
Dtest_memfunctions.py14 self.assertRaises((OverflowError, MemoryError, SystemError),
16 self.assertRaises((OverflowError, MemoryError, SystemError),
/third_party/node/lib/internal/
Derrors.js195 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/
Dtest_loader.py174 with self.assertRaises(SystemError):
177 with self.assertRaises(SystemError):
259 with self.assertRaises(SystemError):
/third_party/python/Lib/sqlite3/test/
Dbackup.py137 raise SystemError('nearly out of space')
139 with self.assertRaises(SystemError) as err:
/third_party/python/Misc/NEWS.d/
D3.5.0a2.rst7 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
D3.7.0rc1.rst133 raise :exc:`TypeError` instead of :exc:`SystemError` when performed on
D3.6.3rc1.rst57 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__.py40 class CodecRegistryError(LookupError, SystemError):
/third_party/protobuf/python/google/protobuf/internal/
Dencoder.py595 except SystemError:
605 except SystemError:
614 except SystemError:
/third_party/mesa3d/.gitlab-ci/tests/
Dtest_lava_job_submitter.py50 @pytest.mark.parametrize("exception", [RuntimeError, SystemError, KeyError])
/third_party/python/Lib/
D_osx_support.py244 raise SystemError(
/third_party/python/Lib/ctypes/
D__init__.py151 raise SystemError("sizeof(%s) wrong: %d instead of %d" % \

123