Home
last modified time | relevance | path

Searched refs:parser (Results 76 – 100 of 128) sorted by relevance

123456

/PHP-7.1/ext/xml/tests/
H A Dxml_get_error_code_variation1.phpt11 /* Prototype : proto int xml_get_error_code(resource parser)
12 * Description: Get XML parser error code
87 // loop through each element of the array for parser
H A Dxml_parser_free_variation1.phpt11 /* Prototype : proto int xml_parser_free(resource parser)
12 * Description: Free an XML parser
87 // loop through each element of the array for parser
H A Dxml_get_current_byte_index_variation1.phpt11 /* Prototype : proto int xml_get_current_byte_index(resource parser)
12 * Description: Get current byte index for an XML parser
87 // loop through each element of the array for parser
H A Dxml_get_current_line_number_variation1.phpt11 /* Prototype : proto int xml_get_current_line_number(resource parser)
12 * Description: Get current line number for an XML parser
87 // loop through each element of the array for parser
H A Dxml_parser_get_option_variation1.phpt11 /* Prototype : proto int xml_parser_get_option(resource parser, int option)
12 * Description: Get options from an XML parser
88 // loop through each element of the array for parser
H A Dxml_parser_set_option_variation1.phpt11 /* Prototype : proto int xml_parser_set_option(resource parser, int option, mixed value)
12 * Description: Set options in an XML parser
88 // loop through each element of the array for parser
H A Dxml_error_string_error.phpt12 * Description: Get XML parser error string
H A Dxml_parse_error.phpt11 /* Prototype : proto int xml_parse(resource parser, string data [, int isFinal])
H A Dxml_parse_into_struct_variation.phpt11 /* Prototype : proto int xml_parse_into_struct(resource parser, string data, array &struct, array …
H A Dxml_set_end_namespace_decl_handler_error.phpt11 /* Prototype : proto int xml_set_end_namespace_decl_handler(resource parser, string hdl)
H A Dxml_set_external_entity_ref_handler_error.phpt11 /* Prototype : proto int xml_set_external_entity_ref_handler(resource parser, string hdl)
H A Dxml_set_character_data_handler_error.phpt11 /* Prototype : proto int xml_set_character_data_handler(resource parser, string hdl)
H A Dxml_set_default_handler_error.phpt11 /* Prototype : proto int xml_set_default_handler(resource parser, string hdl)
H A Dxml_set_element_handler_error.phpt11 /* Prototype : proto int xml_set_element_handler(resource parser, string shdl, string ehdl)
H A Dxml_set_notation_decl_handler_error.phpt11 /* Prototype : proto int xml_set_notation_decl_handler(resource parser, string hdl)
H A Dxml_set_processing_instruction_handler_error.phpt11 /* Prototype : proto int xml_set_processing_instruction_handler(resource parser, string hdl)
H A Dxml_set_start_namespace_decl_handler_error.phpt11 /* Prototype : proto int xml_set_start_namespace_decl_handler(resource parser, string hdl)
H A Dxml_set_unparsed_entity_decl_handler_error.phpt11 /* Prototype : proto int xml_set_unparsed_entity_decl_handler(resource parser, string hdl)
H A Dxml_parse_into_struct_variation1.phpt2 Test xml_parse_into_struct() function : usage variations - different types for parser
11 /* Prototype : proto int xml_parse_into_struct(resource parser, string data, array &struct, array …
88 // loop through each element of the array for parser
H A Dxml_parse_variation1.phpt2 Test xml_parse() function : usage variations - different types of parser
11 /* Prototype : proto int xml_parse(resource parser, string data [, int isFinal])
89 // loop through each element of the array for parser
H A Dxml_set_unparsed_entity_decl_handler_variation1.phpt11 /* Prototype : proto int xml_set_unparsed_entity_decl_handler(resource parser, string hdl)
26 function validHandler(resource $parser ,string $data) {
92 // loop through each element of the array for parser
H A Dxml_set_character_data_handler_variation1.phpt11 /* Prototype : proto int xml_set_character_data_handler(resource parser, string hdl)
26 function validHandler(resource $parser ,string $data) {
92 // loop through each element of the array for parser
/PHP-7.1/ext/dom/
H A Dconfig.w329 CHECK_HEADER_ADD_INCLUDE("libxml/parser.h", "CFLAGS_DOM", PHP_PHP_BUILD + "\\include\\libxml2")
/PHP-7.1/ext/libxml/
H A Dlibxml.c514 xmlParserCtxtPtr parser; in php_libxml_ctx_error_level() local
516 parser = (xmlParserCtxtPtr) ctx; in php_libxml_ctx_error_level()
518 if (parser != NULL && parser->input != NULL) { in php_libxml_ctx_error_level()
519 if (parser->input->filename) { in php_libxml_ctx_error_level()
520 …php_error_docref(NULL, level, "%s in %s, line: %d", msg, parser->input->filename, parser->input->l… in php_libxml_ctx_error_level()
522 php_error_docref(NULL, level, "%s in Entity, line: %d", msg, parser->input->line); in php_libxml_ctx_error_level()
/PHP-7.1/ext/xmlreader/
H A Dphp_xmlreader.c279 xmlRelaxNGParserCtxtPtr parser = NULL; in _xmlreader_get_relaxNG() local
289 parser = xmlRelaxNGNewParserCtxt(valid_file); in _xmlreader_get_relaxNG()
292 parser = xmlRelaxNGNewMemParserCtxt(source, source_len); in _xmlreader_get_relaxNG()
300 if (parser == NULL) { in _xmlreader_get_relaxNG()
305 xmlRelaxNGSetParserErrors(parser, in _xmlreader_get_relaxNG()
308 parser); in _xmlreader_get_relaxNG()
310 sptr = xmlRelaxNGParse(parser); in _xmlreader_get_relaxNG()
311 xmlRelaxNGFreeParserCtxt(parser); in _xmlreader_get_relaxNG()

Completed in 40 milliseconds

123456