Lines Matching refs:dom_document_prop_handlers
70 static HashTable dom_document_prop_handlers; variable
641 zend_hash_init(&dom_document_prop_handlers, 0, NULL, dom_dtor_prop_handler, 1); in PHP_MINIT_FUNCTION()
642 …dom_register_prop_handler(&dom_document_prop_handlers, "doctype", sizeof("doctype")-1, dom_documen… in PHP_MINIT_FUNCTION()
643 …dom_register_prop_handler(&dom_document_prop_handlers, "implementation", sizeof("implementation")-… in PHP_MINIT_FUNCTION()
644 …dom_register_prop_handler(&dom_document_prop_handlers, "documentElement", sizeof("documentElement"… in PHP_MINIT_FUNCTION()
645 …dom_register_prop_handler(&dom_document_prop_handlers, "actualEncoding", sizeof("actualEncoding")-… in PHP_MINIT_FUNCTION()
646 …dom_register_prop_handler(&dom_document_prop_handlers, "encoding", sizeof("encoding")-1, dom_docum… in PHP_MINIT_FUNCTION()
647 …dom_register_prop_handler(&dom_document_prop_handlers, "xmlEncoding", sizeof("xmlEncoding")-1, dom… in PHP_MINIT_FUNCTION()
648 …dom_register_prop_handler(&dom_document_prop_handlers, "standalone", sizeof("standalone")-1, dom_d… in PHP_MINIT_FUNCTION()
649 …dom_register_prop_handler(&dom_document_prop_handlers, "xmlStandalone", sizeof("xmlStandalone")-1,… in PHP_MINIT_FUNCTION()
650 …dom_register_prop_handler(&dom_document_prop_handlers, "version", sizeof("version")-1, dom_documen… in PHP_MINIT_FUNCTION()
651 …dom_register_prop_handler(&dom_document_prop_handlers, "xmlVersion", sizeof("xmlVersion")-1, dom_d… in PHP_MINIT_FUNCTION()
652 …dom_register_prop_handler(&dom_document_prop_handlers, "strictErrorChecking", sizeof("strictErrorC… in PHP_MINIT_FUNCTION()
653 …dom_register_prop_handler(&dom_document_prop_handlers, "documentURI", sizeof("documentURI")-1, dom… in PHP_MINIT_FUNCTION()
654 …dom_register_prop_handler(&dom_document_prop_handlers, "config", sizeof("config")-1, dom_document_… in PHP_MINIT_FUNCTION()
655 …dom_register_prop_handler(&dom_document_prop_handlers, "formatOutput", sizeof("formatOutput")-1, d… in PHP_MINIT_FUNCTION()
656 …dom_register_prop_handler(&dom_document_prop_handlers, "validateOnParse", sizeof("validateOnParse"… in PHP_MINIT_FUNCTION()
657 …dom_register_prop_handler(&dom_document_prop_handlers, "resolveExternals", sizeof("resolveExternal… in PHP_MINIT_FUNCTION()
658 …dom_register_prop_handler(&dom_document_prop_handlers, "preserveWhiteSpace", sizeof("preserveWhite… in PHP_MINIT_FUNCTION()
659 …dom_register_prop_handler(&dom_document_prop_handlers, "recover", sizeof("recover")-1, dom_documen… in PHP_MINIT_FUNCTION()
660 …dom_register_prop_handler(&dom_document_prop_handlers, "substituteEntities", sizeof("substituteEnt… in PHP_MINIT_FUNCTION()
662 …dom_register_prop_handler(&dom_document_prop_handlers, "firstElementChild", sizeof("firstElementCh… in PHP_MINIT_FUNCTION()
663 …dom_register_prop_handler(&dom_document_prop_handlers, "lastElementChild", sizeof("lastElementChil… in PHP_MINIT_FUNCTION()
664 …dom_register_prop_handler(&dom_document_prop_handlers, "childElementCount", sizeof("childElementCo… in PHP_MINIT_FUNCTION()
666 zend_hash_merge(&dom_document_prop_handlers, &dom_node_prop_handlers, dom_copy_prop_handler, 0); in PHP_MINIT_FUNCTION()
667 zend_hash_add_ptr(&classes, ce.name, &dom_document_prop_handlers); in PHP_MINIT_FUNCTION()
882 zend_hash_destroy(&dom_document_prop_handlers); in PHP_MSHUTDOWN_FUNCTION()