dom_node_prop_handlers   83 ext/dom/php_dom.c static HashTable dom_node_prop_handlers;
dom_node_prop_handlers  706 ext/dom/php_dom.c 	zend_hash_init(&dom_node_prop_handlers, 0, NULL, NULL, 1);
dom_node_prop_handlers  707 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "nodeName", dom_node_node_name_read, NULL TSRMLS_CC);
dom_node_prop_handlers  708 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "nodeValue", dom_node_node_value_read, dom_node_node_value_write TSRMLS_CC);
dom_node_prop_handlers  709 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "nodeType", dom_node_node_type_read, NULL TSRMLS_CC);
dom_node_prop_handlers  710 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "parentNode", dom_node_parent_node_read, NULL TSRMLS_CC);
dom_node_prop_handlers  711 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "childNodes", dom_node_child_nodes_read, NULL TSRMLS_CC);
dom_node_prop_handlers  712 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "firstChild", dom_node_first_child_read, NULL TSRMLS_CC);
dom_node_prop_handlers  713 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "lastChild", dom_node_last_child_read, NULL TSRMLS_CC);
dom_node_prop_handlers  714 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "previousSibling", dom_node_previous_sibling_read, NULL TSRMLS_CC);
dom_node_prop_handlers  715 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "nextSibling", dom_node_next_sibling_read, NULL TSRMLS_CC);
dom_node_prop_handlers  716 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "attributes", dom_node_attributes_read, NULL TSRMLS_CC);
dom_node_prop_handlers  717 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "ownerDocument", dom_node_owner_document_read, NULL TSRMLS_CC);
dom_node_prop_handlers  718 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "namespaceURI", dom_node_namespace_uri_read, NULL TSRMLS_CC);
dom_node_prop_handlers  719 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "prefix", dom_node_prefix_read, dom_node_prefix_write TSRMLS_CC);
dom_node_prop_handlers  720 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "localName", dom_node_local_name_read, NULL TSRMLS_CC);
dom_node_prop_handlers  721 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "baseURI", dom_node_base_uri_read, NULL TSRMLS_CC);
dom_node_prop_handlers  722 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_node_prop_handlers, "textContent", dom_node_text_content_read, dom_node_text_content_write TSRMLS_CC);
dom_node_prop_handlers  723 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_node_prop_handlers, sizeof(dom_node_prop_handlers), NULL);
dom_node_prop_handlers  739 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_node_prop_handlers, sizeof(dom_node_prop_handlers), NULL);
dom_node_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_node_prop_handlers  791 ext/dom/php_dom.c 	zend_hash_merge(&dom_characterdata_prop_handlers, &dom_node_prop_handlers, NULL, NULL, sizeof(dom_prop_handler), 0);
dom_node_prop_handlers  802 ext/dom/php_dom.c 	zend_hash_merge(&dom_attr_prop_handlers, &dom_node_prop_handlers, NULL, NULL, sizeof(dom_prop_handler), 0);
dom_node_prop_handlers  810 ext/dom/php_dom.c 	zend_hash_merge(&dom_element_prop_handlers, &dom_node_prop_handlers, NULL, NULL, sizeof(dom_prop_handler), 0);
dom_node_prop_handlers  866 ext/dom/php_dom.c 	zend_hash_merge(&dom_documenttype_prop_handlers, &dom_node_prop_handlers, NULL, NULL, sizeof(dom_prop_handler), 0);
dom_node_prop_handlers  874 ext/dom/php_dom.c 	zend_hash_merge(&dom_notation_prop_handlers, &dom_node_prop_handlers, NULL, NULL, sizeof(dom_prop_handler), 0);
dom_node_prop_handlers  886 ext/dom/php_dom.c 	zend_hash_merge(&dom_entity_prop_handlers, &dom_node_prop_handlers, NULL, NULL, sizeof(dom_prop_handler), 0);
dom_node_prop_handlers  891 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_node_prop_handlers, sizeof(dom_entity_prop_handlers), NULL);
dom_node_prop_handlers  898 ext/dom/php_dom.c 	zend_hash_merge(&dom_processinginstruction_prop_handlers, &dom_node_prop_handlers, NULL, NULL, sizeof(dom_prop_handler), 0);
dom_node_prop_handlers 1000 ext/dom/php_dom.c 	zend_hash_destroy(&dom_node_prop_handlers);