Lines Matching refs:options

122 	ZEND_ARG_INFO(0, options)
131 ZEND_ARG_INFO(0, options)
147 ZEND_ARG_INFO(0, options)
152 ZEND_ARG_INFO(0, options)
157 ZEND_ARG_INFO(0, options)
1552 static xmlDocPtr dom_document_parser(zval *id, int mode, char *source, int source_len, int options in dom_document_parser()
1628 if (validate && ! (options & XML_PARSE_DTDVALID)) { in dom_document_parser()
1629 options |= XML_PARSE_DTDVALID; in dom_document_parser()
1631 if (resolve_externals && ! (options & XML_PARSE_DTDATTR)) { in dom_document_parser()
1632 options |= XML_PARSE_DTDATTR; in dom_document_parser()
1634 if (substitute_ent && ! (options & XML_PARSE_NOENT)) { in dom_document_parser()
1635 options |= XML_PARSE_NOENT; in dom_document_parser()
1637 if (keep_blanks == 0 && ! (options & XML_PARSE_NOBLANKS)) { in dom_document_parser()
1638 options |= XML_PARSE_NOBLANKS; in dom_document_parser()
1641 xmlCtxtUseOptions(ctxt, options); in dom_document_parser()
1680 long options = 0; in dom_parse_document() local
1687 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &source, &source_len, &options) == FAI… in dom_parse_document()
1696 newdoc = dom_document_parser(id, mode, source, source_len, options TSRMLS_CC); in dom_parse_document()
1762 long options = 0; in PHP_FUNCTION() local
1764 …MLS_CC, getThis(), "Op|l", &id, dom_document_class_entry, &file, &file_len, &options) == FAILURE) { in PHP_FUNCTION()
1779 if (options & LIBXML_SAVE_NOEMPTYTAG) { in PHP_FUNCTION()
1784 if (options & LIBXML_SAVE_NOEMPTYTAG) { in PHP_FUNCTION()
1808 long options = 0; in PHP_FUNCTION() local
1810 …is(), "O|O!l", &id, dom_document_class_entry, &nodep, dom_node_class_entry, &options) == FAILURE) { in PHP_FUNCTION()
1831 if (options & LIBXML_SAVE_NOEMPTYTAG) { in PHP_FUNCTION()
1836 if (options & LIBXML_SAVE_NOEMPTYTAG) { in PHP_FUNCTION()
1847 if (options & LIBXML_SAVE_NOEMPTYTAG) { in PHP_FUNCTION()
1853 if (options & LIBXML_SAVE_NOEMPTYTAG) { in PHP_FUNCTION()
2186 long options = 0; in dom_load_html() local
2191 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &source, &source_len, &options) == FAI… in dom_load_html()
2215 if (options) { in dom_load_html()
2216 htmlCtxtUseOptions(ctxt, options); in dom_load_html()