Lines Matching refs:dom_document_prop_handlers

85 static HashTable dom_document_prop_handlers;  variable
681 zend_hash_init(&dom_document_prop_handlers, 0, NULL, dom_dtor_prop_handler, 1); in PHP_MINIT_FUNCTION()
682 dom_register_prop_handler(&dom_document_prop_handlers, "doctype", dom_document_doctype_read, NULL); in PHP_MINIT_FUNCTION()
683 …dom_register_prop_handler(&dom_document_prop_handlers, "implementation", dom_document_implementati… in PHP_MINIT_FUNCTION()
684 …dom_register_prop_handler(&dom_document_prop_handlers, "documentElement", dom_document_document_el… in PHP_MINIT_FUNCTION()
685 …dom_register_prop_handler(&dom_document_prop_handlers, "actualEncoding", dom_document_encoding_rea… in PHP_MINIT_FUNCTION()
686 …dom_register_prop_handler(&dom_document_prop_handlers, "encoding", dom_document_encoding_read, dom… in PHP_MINIT_FUNCTION()
687 …dom_register_prop_handler(&dom_document_prop_handlers, "xmlEncoding", dom_document_encoding_read, … in PHP_MINIT_FUNCTION()
688 …dom_register_prop_handler(&dom_document_prop_handlers, "standalone", dom_document_standalone_read,… in PHP_MINIT_FUNCTION()
689 …dom_register_prop_handler(&dom_document_prop_handlers, "xmlStandalone", dom_document_standalone_re… in PHP_MINIT_FUNCTION()
690 …dom_register_prop_handler(&dom_document_prop_handlers, "version", dom_document_version_read, dom_d… in PHP_MINIT_FUNCTION()
691 …dom_register_prop_handler(&dom_document_prop_handlers, "xmlVersion", dom_document_version_read, do… in PHP_MINIT_FUNCTION()
692 …dom_register_prop_handler(&dom_document_prop_handlers, "strictErrorChecking", dom_document_strict_… in PHP_MINIT_FUNCTION()
693 …dom_register_prop_handler(&dom_document_prop_handlers, "documentURI", dom_document_document_uri_re… in PHP_MINIT_FUNCTION()
694 dom_register_prop_handler(&dom_document_prop_handlers, "config", dom_document_config_read, NULL); in PHP_MINIT_FUNCTION()
695 …dom_register_prop_handler(&dom_document_prop_handlers, "formatOutput", dom_document_format_output_… in PHP_MINIT_FUNCTION()
696 …dom_register_prop_handler(&dom_document_prop_handlers, "validateOnParse", dom_document_validate_on… in PHP_MINIT_FUNCTION()
697 …dom_register_prop_handler(&dom_document_prop_handlers, "resolveExternals", dom_document_resolve_ex… in PHP_MINIT_FUNCTION()
698 …dom_register_prop_handler(&dom_document_prop_handlers, "preserveWhiteSpace", dom_document_preserve… in PHP_MINIT_FUNCTION()
699 …dom_register_prop_handler(&dom_document_prop_handlers, "recover", dom_document_recover_read, dom_d… in PHP_MINIT_FUNCTION()
700 …dom_register_prop_handler(&dom_document_prop_handlers, "substituteEntities", dom_document_substitu… in PHP_MINIT_FUNCTION()
702 zend_hash_merge(&dom_document_prop_handlers, &dom_node_prop_handlers, dom_copy_prop_handler, 0); in PHP_MINIT_FUNCTION()
703 zend_hash_add_ptr(&classes, ce.name, &dom_document_prop_handlers); in PHP_MINIT_FUNCTION()
941 zend_hash_destroy(&dom_document_prop_handlers); in PHP_MSHUTDOWN_FUNCTION()