Home
last modified time | relevance | path

Searched refs:ErrorHandler (Results 1 – 25 of 40) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
Dyaml2obj.h47 using ErrorHandler = llvm::function_ref<void(const Twine &Msg)>; variable
49 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
50 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
51 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH);
53 ErrorHandler EH);
54 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
56 bool convertYAML(Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,
62 ErrorHandler ErrHandler);
/third_party/python/Lib/xml/sax/
D__init__.py23 from .handler import ContentHandler, ErrorHandler
29 def parse(source, handler, errorHandler=ErrorHandler()):
35 def parseString(string, handler, errorHandler=ErrorHandler()):
38 errorHandler = ErrorHandler()
Dhandler.py22 class ErrorHandler: class
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DErrorHandling.cpp42 static fatal_error_handler_t ErrorHandler = nullptr; variable
69 assert(!ErrorHandler && "Error handler already registered!\n"); in install_fatal_error_handler()
70 ErrorHandler = handler; in install_fatal_error_handler()
78 ErrorHandler = nullptr; in remove_fatal_error_handler()
103 handler = ErrorHandler; in report_fatal_error()
134 assert(!ErrorHandler && "Bad alloc error handler already registered!\n"); in install_bad_alloc_error_handler()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DErrorHandling.cpp43 static fatal_error_handler_t ErrorHandler = nullptr; variable
51 assert(!ErrorHandler && "Error handler already registered!\n"); in install_fatal_error_handler()
52 ErrorHandler = handler; in install_fatal_error_handler()
58 ErrorHandler = nullptr; in remove_fatal_error_handler()
81 handler = ErrorHandler; in report_fatal_error()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClBitcodeParser.h377 class ErrorHandler : public NaClBitstreamCursor::ErrorHandler {
381 ErrorHandler(NaClBitcodeParser *Parser, NaClBitstreamCursor &Cursor) in ErrorHandler() function
382 : NaClBitstreamCursor::ErrorHandler(Cursor), Parser(Parser) {} in ErrorHandler()
388 ~ErrorHandler() override {} in ~ErrorHandler()
398 std::unique_ptr<NaClBitstreamCursor::ErrorHandler> ErrHandler( in NaClBitcodeParser()
399 new ErrorHandler(this, Cursor)); in NaClBitcodeParser()
DNaClBitstreamReader.h388 class ErrorHandler {
389 ErrorHandler(const ErrorHandler &) = delete;
390 ErrorHandler &operator=(const ErrorHandler &) = delete;
393 explicit ErrorHandler(NaClBitstreamCursor &Cursor) : Cursor(Cursor) {} in ErrorHandler() function
396 virtual ~ErrorHandler() {} in ~ErrorHandler()
408 std::unique_ptr<ErrorHandler> ErrHandler;
485 NaClBitstreamCursor() : ErrHandler(new ErrorHandler(*this)) { init(nullptr); } in NaClBitstreamCursor()
488 : ErrHandler(new ErrorHandler(*this)) { in NaClBitstreamCursor()
514 void setErrorHandler(std::unique_ptr<ErrorHandler> &NewHandler) { in setErrorHandler()
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/calc7/
Dcompiler.hpp55 template <typename ErrorHandler>
56 compiler(client::code_gen::program& program, ErrorHandler& error_handler_) in compiler()
63 error_handler = function<ErrorHandler>(error_handler_)( in compiler()
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/calc8/
Dcompiler.hpp56 template <typename ErrorHandler>
57 compiler(client::code_gen::program& program, ErrorHandler& error_handler_) in compiler()
64 error_handler = function<ErrorHandler>(error_handler_)( in compiler()
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/mini_c/
Dcompiler.hpp64 template <typename ErrorHandler>
65 compiler(ErrorHandler& error_handler_) in compiler()
72 error_handler = function<ErrorHandler>(error_handler_)( in compiler()
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure2/
Dcompiler.hpp64 template <typename ErrorHandler>
65 compiler(ErrorHandler& error_handler_) in compiler()
72 error_handler = function<ErrorHandler>(error_handler_)( in compiler()
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure1/
Dcompiler.hpp64 template <typename ErrorHandler>
65 compiler(ErrorHandler& error_handler_) in compiler()
72 error_handler = function<ErrorHandler>(error_handler_)( in compiler()
/third_party/libxml2/python/tests/
DvalidDTD.py7 class ErrorHandler: class
30 e = ErrorHandler()
DvalidRNG.py7 class ErrorHandler: class
45 e = ErrorHandler()
DvalidSchemas.py7 class ErrorHandler: class
49 e = ErrorHandler()
Dthread2.py15 class ErrorHandler: class
49 eh = ErrorHandler()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
Dyaml2obj.cpp21 bool convertYAML(yaml::Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler, in convertYAML()
58 ErrorHandler ErrHandler) { in yaml2ObjectFile()
/third_party/boost/libs/spirit/example/x3/calc/calc8/
Dcompiler.hpp54 template <typename ErrorHandler>
57 , ErrorHandler const& error_handler) in compiler()
/third_party/boost/libs/spirit/example/x3/calc/calc9/
Dcompiler.hpp55 template <typename ErrorHandler>
58 , ErrorHandler const& error_handler) in compiler()
/third_party/boost/libs/spirit/example/support/utree/
Dsexpr_parser.hpp151 template <typename Iterator, typename ErrorHandler = error_handler<Iterator> >
175 px::function<ErrorHandler> const
182 parser::base_type(start), error(ErrorHandler(source_file)) in parser()
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/
Dcompiler.hpp251 template <typename ErrorHandler>
252 compiler(vmachine& vm, ErrorHandler& error_handler_) in compiler()
259 error_handler = function<ErrorHandler>(error_handler_)( in compiler()
/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())
105 :class:`~xml.sax.handler.ErrorHandler` interface
120 :class:`~xml.sax.handler.ErrorHandler` interface to provide information
Dxml.sax.handler.rst44 .. class:: ErrorHandler
387 ErrorHandler Objects
401 .. method:: ErrorHandler.error(exception)
409 .. method:: ErrorHandler.fatalError(exception)
415 .. method:: ErrorHandler.warning(exception)
/third_party/python/Lib/test/
Dtest_wsgiref.py530 class ErrorHandler(BaseCGIHandler): class
545 class TestHandler(ErrorHandler):
689 h = ErrorHandler()
697 h = ErrorHandler()
714 h = ErrorHandler()
794 h = ErrorHandler()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
Dmtl_common.h539 class ErrorHandler in ANGLE_GL_OBJECTS_X()
542 virtual ~ErrorHandler() {} in ANGLE_GL_OBJECTS_X()
555 class Context : public ErrorHandler in ANGLE_GL_OBJECTS_X()

12