Home
last modified time | relevance | path

Searched refs:length (Results 51 – 75 of 588) sorted by path

12345678910>>...24

/PHP-7.4/ext/dom/tests/
H A DDOMComment_replaceData_basic.phpt17 // Replaces rest of string if count is greater than length of existing string
H A DDOMNamedNodeMap_count.phpt20 var_dump($root->attributes->length);
H A DDOMNode_cloneNode_basic.phpt42 $len = $children->length;
43 for ($index = $children->length - 1; $index >=0; $index--) {
70 for ($index = 0; $index < $children->length; $index++) {
H A DDOMNode_normalize_basic.phpt37 var_dump($title->childNodes->length);
44 var_dump($title->childNodes->length);
50 var_dump($title->childNodes->length);
57 var_dump($title->childNodes->length);
H A DDOMNode_removeChild_basic.phpt41 $len = $children->length;
43 for ($index = $children->length - 1; $index >=0; $index--) {
52 $len = $children->length;
54 for ($index = 0; $index < $children->length; $index++) {
H A DDOMText_appendData_basic.phpt21 echo "Text Length (one append): " . $textnode->length . "\n";
24 echo "Text Length (two appends): " . $textnode->length . "\n";
H A DDomNodeList_count.phpt20 var_dump($root->childNodes->length);
H A Dbug35342.phpt2 Bug #35342 (isset(DOMNodeList->length) returns false)
12 var_dump($nodelist->length, isset($nodelist->length), isset($nodelist->foo));
13 var_dump(empty($nodelist->length), empty($nodelist->foo));
H A Dbug42082.phpt2 Bug #42082 (NodeList length zero should be empty)
11 var_dump($nodes->length);
12 $length = $nodes->length;
13 var_dump(empty($nodes->length), empty($length));
H A Dbug43364.phpt13 if($node->childNodes->length > 0) {
H A Dbug46335.phpt10 $length = 3;
19 $matched->splitText($length);
28 $matched->splitText($length);
H A Dbug49490.phpt13 echo($xp->query('//prefix:root', null, false)->length . "\n");
H A Dbug67474.phpt12 var_dump($list->length);
14 var_dump($list->length);
H A Dbug69846.phpt22 var_dump($dataNodes->length);
41 ["length"]=>
131 ["length"]=>
H A Dbug76738.phpt46 $nodes_idx = ($nodes != FALSE) ? $nodes->length : 0;
78 $nodes_idx = ($nodes != FALSE) ? $nodes->length : 0;
87 while($body->childNodes->length > 0)
169 while($html->childNodes->length > 0)
181 while($body->childNodes->length > 0)
208 $nodes_idx = ($nodes != FALSE) ? $nodes->length : 0;
214 while($node->childNodes->length > 0)
H A Dbug78221.phpt14 var_dump($p->childNodes->length);
H A Dbug79271.phpt15 ["length"]=>
H A Ddom007.phpt46 $length = $nots->length;
47 echo "Length: ".$length."\n";
53 for($x=0; $x < $length; $x++) {
64 $length = $ents->length;
65 echo "Length: ".$length."\n";
78 for($x=0; $x < $length; $x++) {
H A Ddom_comment_basic.phpt23 for ($index = 0; $index < $children->length; $index++) {
H A Ddom_comment_variation.phpt20 for ($index = 0; $index < $children->length; $index++) {
H A Ddom_test.inc28 $child_count = $node->childNodes->length;
H A Ddomchardata.phpt25 echo "Comment Length: ".$comment->length."\n";
28 echo "New Comment Length: ".$comment->length."\n";
H A Ddomelement.phpt54 echo "Row Count: ".$rows->length."\n";
62 $mylen = $myelements->length;
/PHP-7.4/ext/dom/
H A Dtext.c145 int length; in PHP_FUNCTION() local
162 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
164 if (ZEND_LONG_INT_OVFL(offset) || (int)offset > length || offset < 0) { in PHP_FUNCTION()
170 second = xmlUTF8Strsub(cur, (int)offset, (int)(length - offset)); in PHP_FUNCTION()
/PHP-7.4/ext/exif/
H A Dexif.c2153 if (length < 0) { in exif_iif_add_value()
2164 info_data->length = length; in exif_iif_add_value()
2175 length = (int)php_strnlen(value, length); in exif_iif_add_value()
2177 info_data->length = length; in exif_iif_add_value()
2194 if (!length) in exif_iif_add_value()
2203 length = (int) php_strnlen(value, length); in exif_iif_add_value()
2208 info_data->length = length; in exif_iif_add_value()
2226 if (length>1) { in exif_iif_add_value()
2373 info_data->length = length; in exif_iif_add_buffer()
3291 size_t length; in exif_process_IFD_TAG_impl() local
[all …]

Completed in 41 milliseconds

12345678910>>...24