dom_document_prop_handlers   82 ext/dom/php_dom.c static HashTable dom_document_prop_handlers;
dom_document_prop_handlers  742 ext/dom/php_dom.c 	zend_hash_init(&dom_document_prop_handlers, 0, NULL, NULL, 1);
dom_document_prop_handlers  743 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "doctype", dom_document_doctype_read, NULL TSRMLS_CC);
dom_document_prop_handlers  744 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "implementation", dom_document_implementation_read, NULL TSRMLS_CC);
dom_document_prop_handlers  745 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "documentElement", dom_document_document_element_read, NULL TSRMLS_CC);
dom_document_prop_handlers  746 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "actualEncoding", dom_document_encoding_read, NULL TSRMLS_CC);
dom_document_prop_handlers  747 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "encoding", dom_document_encoding_read, dom_document_encoding_write TSRMLS_CC);
dom_document_prop_handlers  748 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "xmlEncoding", dom_document_encoding_read, NULL TSRMLS_CC);
dom_document_prop_handlers  749 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "standalone", dom_document_standalone_read, dom_document_standalone_write TSRMLS_CC);
dom_document_prop_handlers  750 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "xmlStandalone", dom_document_standalone_read, dom_document_standalone_write TSRMLS_CC);
dom_document_prop_handlers  751 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "version", dom_document_version_read, dom_document_version_write TSRMLS_CC);
dom_document_prop_handlers  752 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "xmlVersion", dom_document_version_read, dom_document_version_write TSRMLS_CC);
dom_document_prop_handlers  753 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "strictErrorChecking", dom_document_strict_error_checking_read, dom_document_strict_error_checking_write TSRMLS_CC);
dom_document_prop_handlers  754 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "documentURI", dom_document_document_uri_read, dom_document_document_uri_write TSRMLS_CC);
dom_document_prop_handlers  755 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "config", dom_document_config_read, NULL TSRMLS_CC);
dom_document_prop_handlers  756 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "formatOutput", dom_document_format_output_read, dom_document_format_output_write TSRMLS_CC);
dom_document_prop_handlers  757 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "validateOnParse", dom_document_validate_on_parse_read, dom_document_validate_on_parse_write TSRMLS_CC);
dom_document_prop_handlers  758 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "resolveExternals", dom_document_resolve_externals_read, dom_document_resolve_externals_write TSRMLS_CC);
dom_document_prop_handlers  759 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "preserveWhiteSpace", dom_document_preserve_whitespace_read, dom_document_preserve_whitespace_write TSRMLS_CC);
dom_document_prop_handlers  760 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "recover", dom_document_recover_read, dom_document_recover_write TSRMLS_CC);
dom_document_prop_handlers  761 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_document_prop_handlers, "substituteEntities", dom_document_substitue_entities_read, dom_document_substitue_entities_write TSRMLS_CC);
dom_document_prop_handlers  763 ext/dom/php_dom.c 	zend_hash_merge(&dom_document_prop_handlers, &dom_node_prop_handlers, NULL, NULL, sizeof(dom_prop_handler), 0);
dom_document_prop_handlers  764 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_document_prop_handlers, sizeof(dom_document_prop_handlers), NULL);
dom_document_prop_handlers  999 ext/dom/php_dom.c 	zend_hash_destroy(&dom_document_prop_handlers);