dom_documenttype_prop_handlers   96 ext/dom/php_dom.c static HashTable dom_documenttype_prop_handlers;
dom_documenttype_prop_handlers  798 ext/dom/php_dom.c 	zend_hash_init(&dom_documenttype_prop_handlers, 0, NULL, dom_dtor_prop_handler, 1);
dom_documenttype_prop_handlers  799 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_documenttype_prop_handlers, "name", dom_documenttype_name_read, NULL);
dom_documenttype_prop_handlers  800 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_documenttype_prop_handlers, "entities", dom_documenttype_entities_read, NULL);
dom_documenttype_prop_handlers  801 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_documenttype_prop_handlers, "notations", dom_documenttype_notations_read, NULL);
dom_documenttype_prop_handlers  802 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_documenttype_prop_handlers, "publicId", dom_documenttype_public_id_read, NULL);
dom_documenttype_prop_handlers  803 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_documenttype_prop_handlers, "systemId", dom_documenttype_system_id_read, NULL);
dom_documenttype_prop_handlers  804 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_documenttype_prop_handlers, "internalSubset", dom_documenttype_internal_subset_read, NULL);
dom_documenttype_prop_handlers  805 ext/dom/php_dom.c 	zend_hash_merge(&dom_documenttype_prop_handlers, &dom_node_prop_handlers, dom_copy_prop_handler, 0);
dom_documenttype_prop_handlers  806 ext/dom/php_dom.c 	zend_hash_add_ptr(&classes, ce.name, &dom_documenttype_prop_handlers);
dom_documenttype_prop_handlers  953 ext/dom/php_dom.c 	zend_hash_destroy(&dom_documenttype_prop_handlers);