Lines Matching refs:doc_prop
227 libxml_doc_props const* doc_prop = dom_get_doc_props_read_only(obj->document); in dom_document_strict_error_checking_read() local
228 ZVAL_BOOL(retval, doc_prop->stricterror); in dom_document_strict_error_checking_read()
235 dom_doc_propsptr doc_prop = dom_get_doc_props(obj->document); in dom_document_strict_error_checking_write() local
236 doc_prop->stricterror = zend_is_true(newval); in dom_document_strict_error_checking_write()
249 libxml_doc_props const* doc_prop = dom_get_doc_props_read_only(obj->document); in dom_document_format_output_read() local
250 ZVAL_BOOL(retval, doc_prop->formatoutput); in dom_document_format_output_read()
257 dom_doc_propsptr doc_prop = dom_get_doc_props(obj->document); in dom_document_format_output_write() local
258 doc_prop->formatoutput = zend_is_true(newval); in dom_document_format_output_write()
270 libxml_doc_props const* doc_prop = dom_get_doc_props_read_only(obj->document); in dom_document_validate_on_parse_read() local
271 ZVAL_BOOL(retval, doc_prop->validateonparse); in dom_document_validate_on_parse_read()
278 dom_doc_propsptr doc_prop = dom_get_doc_props(obj->document); in dom_document_validate_on_parse_write() local
279 doc_prop->validateonparse = zend_is_true(newval); in dom_document_validate_on_parse_write()
291 libxml_doc_props const* doc_prop = dom_get_doc_props_read_only(obj->document); in dom_document_resolve_externals_read() local
292 ZVAL_BOOL(retval, doc_prop->resolveexternals); in dom_document_resolve_externals_read()
299 dom_doc_propsptr doc_prop = dom_get_doc_props(obj->document); in dom_document_resolve_externals_write() local
300 doc_prop->resolveexternals = zend_is_true(newval); in dom_document_resolve_externals_write()
312 libxml_doc_props const* doc_prop = dom_get_doc_props_read_only(obj->document); in dom_document_preserve_whitespace_read() local
313 ZVAL_BOOL(retval, doc_prop->preservewhitespace); in dom_document_preserve_whitespace_read()
320 dom_doc_propsptr doc_prop = dom_get_doc_props(obj->document); in dom_document_preserve_whitespace_write() local
321 doc_prop->preservewhitespace = zend_is_true(newval); in dom_document_preserve_whitespace_write()
333 libxml_doc_props const* doc_prop = dom_get_doc_props_read_only(obj->document); in dom_document_recover_read() local
334 ZVAL_BOOL(retval, doc_prop->recover); in dom_document_recover_read()
341 dom_doc_propsptr doc_prop = dom_get_doc_props(obj->document); in dom_document_recover_write() local
342 doc_prop->recover = zend_is_true(newval); in dom_document_recover_write()
354 libxml_doc_props const* doc_prop = dom_get_doc_props_read_only(obj->document); in dom_document_substitute_entities_read() local
355 ZVAL_BOOL(retval, doc_prop->substituteentities); in dom_document_substitute_entities_read()
362 dom_doc_propsptr doc_prop = dom_get_doc_props(obj->document); in dom_document_substitute_entities_write() local
363 doc_prop->substituteentities = zend_is_true(newval); in dom_document_substitute_entities_write()
1480 dom_doc_propsptr doc_prop = NULL; in php_dom_finish_loading_document() local
1487 doc_prop = intern->document->doc_props; in php_dom_finish_loading_document()
1496 intern->document->doc_props = doc_prop; in php_dom_finish_loading_document()