Home
last modified time | relevance | path

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

12345

/PHP-5.5/ext/xml/tests/
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_end_namespace_decl_handler_error.phpt11 /* Prototype : proto int xml_set_end_namespace_decl_handler(resource parser, string hdl)
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_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_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
H A Dxml_set_processing_instruction_handler_variation1.phpt11 /* Prototype : proto int xml_set_processing_instruction_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_end_namespace_decl_handler_variation1.phpt11 /* Prototype : proto int xml_set_end_namespace_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_external_entity_ref_handler_variation1.phpt11 /* Prototype : proto int xml_set_external_entity_ref_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_notation_decl_handler_variation1.phpt11 /* Prototype : proto int xml_set_notation_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_start_namespace_decl_handler_variation1.phpt11 /* Prototype : proto int xml_set_start_namespace_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_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_parse_into_struct_error.phpt11 /* Prototype : proto int xml_parse_into_struct(resource parser, string data, array &struct, array …
H A Dxml_set_object_variation1.phpt11 /* Prototype : proto int xml_set_object(resource parser, object &obj)
88 // loop through each element of the array for parser
H A Dxml_error_string_variation1.phpt12 * Description: Get XML parser error string
/PHP-5.5/
H A D.gitignore62 configuration-parser.c
63 configuration-parser.h
64 configuration-parser.output
/PHP-5.5/ext/xmlreader/
H A Dphp_xmlreader.c283 xmlRelaxNGParserCtxtPtr parser = NULL; in _xmlreader_get_relaxNG() local
293 parser = xmlRelaxNGNewParserCtxt(valid_file); in _xmlreader_get_relaxNG()
296 parser = xmlRelaxNGNewMemParserCtxt(source, source_len); in _xmlreader_get_relaxNG()
304 if (parser == NULL) { in _xmlreader_get_relaxNG()
309 xmlRelaxNGSetParserErrors(parser, in _xmlreader_get_relaxNG()
312 parser); in _xmlreader_get_relaxNG()
314 sptr = xmlRelaxNGParse(parser); in _xmlreader_get_relaxNG()
315 xmlRelaxNGFreeParserCtxt(parser); in _xmlreader_get_relaxNG()
/PHP-5.5/ext/dom/
H A Ddocument.c1988 xmlSchemaParserCtxtPtr parser; in _dom_document_schema_validate() local
2016 parser = xmlSchemaNewParserCtxt(valid_file); in _dom_document_schema_validate()
2027 xmlSchemaSetParserErrors(parser, in _dom_document_schema_validate()
2030 parser); in _dom_document_schema_validate()
2031 sptr = xmlSchemaParse(parser); in _dom_document_schema_validate()
2032 xmlSchemaFreeParserCtxt(parser); in _dom_document_schema_validate()
2088 xmlRelaxNGParserCtxtPtr parser; in _dom_document_relaxNG_validate() local
2127 xmlRelaxNGSetParserErrors(parser, in _dom_document_relaxNG_validate()
2130 parser); in _dom_document_relaxNG_validate()
2131 sptr = xmlRelaxNGParse(parser); in _dom_document_relaxNG_validate()
[all …]
/PHP-5.5/ext/pdo_mysql/tests/
H A Dbug_50323.phpt21 // no real parser - any excotic setting can fool us
/PHP-5.5/ext/xml/
H A Dphp_xml.h49 XML_Parser parser; local
H A Dexpat_compat.h70 xmlParserCtxtPtr parser; member
/PHP-5.5/ext/json/
H A DREADME8 is handled by a parser based on JSON_checker[1] by Douglas Crockford.
/PHP-5.5/ext/wddx/
H A Dwddx.c1146 XML_Parser parser; in php_wddx_deserialize_ex() local
1151 parser = XML_ParserCreate("UTF-8"); in php_wddx_deserialize_ex()
1153 XML_SetUserData(parser, &stack); in php_wddx_deserialize_ex()
1154 XML_SetElementHandler(parser, php_wddx_push_element, php_wddx_pop_element); in php_wddx_deserialize_ex()
1155 XML_SetCharacterDataHandler(parser, php_wddx_process_data); in php_wddx_deserialize_ex()
1157 XML_Parse(parser, value, vallen, 1); in php_wddx_deserialize_ex()
1159 XML_ParserFree(parser); in php_wddx_deserialize_ex()
/PHP-5.5/sapi/tux/
H A DREADME19 web-root through the parser; so be careful what you put

Completed in 74 milliseconds

12345