Home
last modified time | relevance | path

Searched refs:error_handler (Results 1 – 25 of 28) sorted by relevance

12

/third_party/python/Lib/distutils/command/
Dcheck.py18 debug=0, encoding='ascii', error_handler='replace'): argument
21 debug, encoding, error_handler)
138 error_handler=settings.error_encoding_error_handler)
/third_party/json/include/nlohmann/detail/output/
Dserializer.hpp64 , error_handler(error_handler_) in serializer()
498 switch (error_handler)
524 if (error_handler == error_handler_t::replace)
593 switch (error_handler)
952 const error_handler_t error_handler; member in nlohmann::detail::serializer
/third_party/json/doc/mkdocs/docs/api/basic_json/
Ddump.md7 const error_handler_t error_handler = error_handler_t::strict) const;
26 `error_handler` (in)
/third_party/python/Objects/stringlib/
Dcodecs.h265 _Py_error_handler error_handler, in STRINGLIB()
316 if (error_handler == _Py_ERROR_UNKNOWN) { in STRINGLIB()
317 error_handler = _Py_GetErrorHandler(errors); in STRINGLIB()
329 switch (error_handler) in STRINGLIB()
/third_party/python/Lib/test/
Dtest_codecs.py844 for data, error_handler, expected in (
850 with self.subTest(data=data, error_handler=error_handler,
852 self.assertEqual(data.decode(self.encoding, error_handler),
3224 for data, error_handler, expected in (
3232 with self.subTest(data=data, error_handler=error_handler,
3234 self.assertEqual(data.encode('ascii', error_handler),
3246 for data, error_handler, expected in (
3252 with self.subTest(data=data, error_handler=error_handler,
3254 self.assertEqual(data.decode('ascii', error_handler),
3268 for data, error_handler, expected in (
[all …]
/third_party/mesa3d/src/glx/apple/
Dapple_glx_drawable.c352 error_handler(Display * dpy, XErrorEvent * err) in error_handler() function
374 old_handler = XSetErrorHandler(error_handler); in apple_glx_garbage_collect_drawables()
/third_party/alsa-utils/seq/aconnect/
Daconnect.c32 static void error_handler(const char *file, int line, const char *function, int err, const char *fm… in error_handler() function
327 snd_lib_error_set_handler(error_handler); in main()
/third_party/python/Doc/library/
Dxml.sax.rst51 .. function:: parse(filename_or_stream, handler, error_handler=handler.ErrorHandler())
56 *error_handler* is given, it must be a SAX :class:`~handler.ErrorHandler`
62 .. function:: parseString(string, handler, error_handler=handler.ErrorHandler())
Dcodecs.rst387 .. function:: register_error(name, error_handler)
389 Register the error handling function *error_handler* under the name *name*.
390 The *error_handler* argument will be called during encoding and decoding
393 For encoding, *error_handler* will be called with a :exc:`UnicodeEncodeError`
/third_party/alsa-utils/alsactl/
Dalsactl.h24 void error_handler(const char *file, int line, const char *function, int err, const char *fmt, ...);
Dutils.c180 void error_handler(const char *file, int line, const char *function, int err, const char *fmt, ...) in error_handler() function
Dalsactl.c437 snd_lib_error_set_handler(error_handler); in main()
/third_party/python/Objects/
Dunicodeobject.c304 unicode_encode_utf8(PyObject *unicode, _Py_error_handler error_handler,
308 _Py_error_handler error_handler, const char *errors,
3799 unicode_encode_locale(PyObject *unicode, _Py_error_handler error_handler, in unicode_encode_locale() argument
3818 current_locale, error_handler); in unicode_encode_locale()
3851 _Py_error_handler error_handler = _Py_GetErrorHandler(errors); in PyUnicode_EncodeLocale() local
3852 return unicode_encode_locale(unicode, error_handler, 1); in PyUnicode_EncodeLocale()
3862 fs_codec->error_handler, in PyUnicode_EncodeFSDefault()
4073 _Py_error_handler error_handler = _Py_GetErrorHandler(errors); in PyUnicode_DecodeLocaleAndSize() local
4074 return unicode_decode_locale(str, len, error_handler, 1); in PyUnicode_DecodeLocaleAndSize()
4081 _Py_error_handler error_handler = _Py_GetErrorHandler(errors); in PyUnicode_DecodeLocale() local
[all …]
/third_party/python/Include/internal/
Dpycore_interp.h53 _Py_error_handler error_handler; member
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/x11/
Dgstglwindow_x11.c632 error_handler (Display * xdpy, XErrorEvent * error) in error_handler() function
647 old_error_handler = XSetErrorHandler (error_handler); in gst_gl_window_x11_trap_x_errors()
/third_party/skia/third_party/externals/spirv-cross/
Dmain.cpp73 function<void()> error_handler; member
118 if (cbs.error_handler) in parse()
120 cbs.error_handler(); in parse()
1688 cbs.error_handler = [] { print_help(); }; in main_inner()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
Dittnotify_config.h344 void* error_handler; member
/third_party/python/Lib/email/
D_header_value_parser.py2954 error_handler = 'strict'
2962 error_handler = 'surrogateescape'
2967 value, safe='', errors=error_handler)
2993 partial, safe='', errors=error_handler)
/third_party/node/test/fixtures/wpt/resources/
Dtestharness.js3351 var error_handler = function(e) { function
3381 addEventListener("error", error_handler, false);
3382 addEventListener("unhandledrejection", function(e){ error_handler(e.reason); }, false);
/third_party/skia/third_party/externals/libpng/contrib/tools/
Dpngfix.c3169 error_handler(png_structp png_ptr, png_const_charp message) in error_handler() function
3587 error_handler, warning_handler); in read_png()
/third_party/flutter/skia/third_party/externals/libpng/contrib/tools/
Dpngfix.c3169 error_handler(png_structp png_ptr, png_const_charp message) in error_handler() function
3587 error_handler, warning_handler); in read_png()
/third_party/python/Modules/
D_testcapimodule.c5259 _Py_error_handler error_handler = _Py_GetErrorHandler(errors); in encode_locale_ex() local
5266 current_locale, error_handler); in encode_locale_ex()
5303 _Py_error_handler error_handler = _Py_GetErrorHandler(errors); in decode_locale_ex() local
5310 current_locale, error_handler); in decode_locale_ex()
/third_party/json/include/nlohmann/
Djson.hpp2421 const error_handler_t error_handler = error_handler_t::strict) const in dump() argument
2424 serializer s(detail::output_adapter<char, string_t>(result), indent_char, error_handler); in dump()
/third_party/json/single_include/nlohmann/
Djson.hpp16389 , error_handler(error_handler_) in serializer()
16823 switch (error_handler)
16849 if (error_handler == error_handler_t::replace)
16918 switch (error_handler)
17277 const error_handler_t error_handler; member in nlohmann::detail::serializer
19822 const error_handler_t error_handler = error_handler_t::strict) const in dump() argument
19825 serializer s(detail::output_adapter<char, string_t>(result), indent_char, error_handler); in dump()
/third_party/typescript/tests/baselines/reference/
DcomplexNarrowingWithAny.types38 // import * as import28 from '@angular/core/src/error_handler';

12