dom_attr_prop_handlers   90 ext/dom/php_dom.c static HashTable dom_attr_prop_handlers;
dom_attr_prop_handlers  735 ext/dom/php_dom.c 	zend_hash_init(&dom_attr_prop_handlers, 0, NULL, dom_dtor_prop_handler, 1);
dom_attr_prop_handlers  736 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_attr_prop_handlers, "name", dom_attr_name_read, NULL);
dom_attr_prop_handlers  737 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_attr_prop_handlers, "specified", dom_attr_specified_read, NULL);
dom_attr_prop_handlers  738 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_attr_prop_handlers, "value", dom_attr_value_read, dom_attr_value_write);
dom_attr_prop_handlers  739 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_attr_prop_handlers, "ownerElement", dom_attr_owner_element_read, NULL);
dom_attr_prop_handlers  740 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_attr_prop_handlers, "schemaTypeInfo", dom_attr_schema_type_info_read, NULL);
dom_attr_prop_handlers  741 ext/dom/php_dom.c 	zend_hash_merge(&dom_attr_prop_handlers, &dom_node_prop_handlers, dom_copy_prop_handler, 0);
dom_attr_prop_handlers  742 ext/dom/php_dom.c 	zend_hash_add_ptr(&classes, ce.name, &dom_attr_prop_handlers);
dom_attr_prop_handlers  947 ext/dom/php_dom.c 	zend_hash_destroy(&dom_attr_prop_handlers);