Home
last modified time | relevance | path

Searched refs:doc (Results 76 – 100 of 185) sorted by relevance

12345678

/PHP-7.1/ext/dom/tests/
H A Ddomdocumentload_test_method.php4 $doc = new DOMDocument(); variable
8 $result = $doc->load(dirname(__FILE__) . getenv('XML_FILE'), $libxml_options);
H A Ddomdocumentloadxml_test_method.php4 $doc = new DOMDocument(); variable
7 $result = $doc->loadXML(file_get_contents(dirname(__FILE__) . getenv('XML_FILE')),
H A DDOMDocument_relaxNGValidateSource_basic.phpt32 $doc = new DOMDocument();
33 $doc->loadXML($good_xml);
34 $result = $doc->relaxNGValidateSource($rng);
H A DDOMNode_C14NFile_basic.phpt24 $doc = new DOMDocument();
25 $doc->loadXML($xml);
26 $node = $doc->getElementsByTagName('title')->item(0);
H A DDOMImplementation_createDocument_basic.phpt10 $doc = $x->createDocument(null, 'html');
11 echo $doc->saveHTML();
H A DDOMDocument_relaxNGValidateSource_error1.phpt33 $doc = new DOMDocument();
34 $doc->loadXML($bad_xml);
35 $result = $doc->relaxNGValidateSource($rng);
H A DDOMDocument_relaxNGValidateSource_error2.phpt29 $doc = new DOMDocument();
30 $doc->loadXML($xml);
31 $result = $doc->relaxNGValidateSource($rng);
H A DDOMDocument_relaxNGValidate_error2.phpt19 $doc = new DOMDocument();
20 $doc->loadXML($xml);
21 $result = $doc->relaxNGValidate($rng);
H A DDOMDocument_schemaValidate_error5.phpt11 $doc = new DOMDocument;
13 $doc->load(dirname(__FILE__)."/book.xml");
15 $result = $doc->schemaValidate(dirname(__FILE__)."/non-existent-file");
H A Dbug74004.phpt8 $doc=new DOMDocument();
9 $doc->loadHTML("<tag-throw></tag-throw>",LIBXML_NOERROR);
H A DDOMDocument_schemaValidateSource_error1.phpt11 $doc = new DOMDocument;
13 $doc->load(dirname(__FILE__)."/book.xml");
15 $result = $doc->schemaValidateSource('string that is not a schema');
H A DDOMDocument_loadHTML_error1.phpt11 $doc = new DOMDocument();
12 $doc->loadHTML();
H A DDOMDocument_loadHTML_error2.phpt11 $doc = new DOMDocument();
12 $doc->loadHTML('');
H A DDOMDocument_loadHTMLfile.phpt13 $doc = new DOMDocument();
14 $result = $doc->loadHTMLFile(dirname(__FILE__) . "/test.html");
H A Dbug67949.phpt10 $doc = new DOMDocument;
11 $doc->loadHTML($html);
13 $nodes = $doc->getElementsByTagName('div');
46 $anchor = $doc->getElementsByTagName('a')[0];
H A DDOMDocument_schemaValidate_error1.phpt11 $doc = new DOMDocument;
13 $doc->load(dirname(__FILE__)."/book.xml");
15 $result = $doc->schemaValidate(dirname(__FILE__)."/book-not-a-schema.xsd");
H A DDOMDocument_loadHTMLfile_variation2.phpt13 $doc = new DOMDocument();
14 $result = $doc->loadHTMLFile(dirname(__FILE__) . "/not_well.html");
/PHP-7.1/ext/dom/
H A Dnode.c612 docp = nodep->doc; in dom_node_owner_document_read()
901 if (node->doc != nodep->doc) { in _php_dom_insert_fragment()
961 if (child->doc != parentp->doc && child->doc != NULL) { in PHP_FUNCTION()
971 if (child->doc == NULL && parentp->doc != NULL) { in PHP_FUNCTION()
1123 if (newchild->doc != nodep->doc && newchild->doc != NULL) { in PHP_FUNCTION()
1155 if (newchild->doc == NULL && nodep->doc != NULL) { in PHP_FUNCTION()
1259 if (!(child->doc == NULL || child->doc == nodep->doc)) { in PHP_FUNCTION()
1269 if (child->doc == NULL && nodep->doc != NULL) { in PHP_FUNCTION()
1280 if (child->doc == NULL) { in PHP_FUNCTION()
1405 if (node->doc != n->doc) { in PHP_FUNCTION()
[all …]
/PHP-7.1/ext/reflection/tests/
H A DReflectionProperty_getDocComment_basic.phpt18 /**Not a doc comment */
28 /** A doc comment for $b */
30 /** A doc comment for $e */
81 string(%d) "/** A doc comment for $b */"
89 string(%d) "/** A doc comment for $e */"
H A DReflectionFunction_getFileName.002.phpt10 * my doc comment
20 * not a doc comment
/PHP-7.1/ext/soap/tests/interop/Round3/GroupD/
H A Dround3_groupD_compound1.inc8 function echoDocument($doc)
10 return $doc;
/PHP-7.1/Zend/tests/
H A Deval_parse_error_with_doc_comment.phpt2 eval() parse error on function with doc comment
8 /** doc comment */
/PHP-7.1/ext/bcmath/libbcmath/
H A Dconfigure.in2 AC_INIT(doc/bcmath.1)
17 AC_OUTPUT(Makefile src/Makefile doc/Makefile)
/PHP-7.1/ext/xmlreader/tests/
H A Dbug70309.phpt12 $doc = new \XMLReader();
14 $doc->xml('<?xml version="1.0" encoding="UTF-8"?>
37 $doc->setRelaxNGSchema('http://docs.oasis-open.org/docbook/rng/5.0/docbook.rng');
39 while (@$doc->read() !== false);
/PHP-7.1/ext/xsl/tests/
H A Dxslt006.phpt11 $doc = $proc->transformToDoc($dom);
12 print $doc->saveXML();

Completed in 32 milliseconds

12345678