Home
last modified time | relevance | path

Searched refs:end (Results 351 – 375 of 631) sorted by relevance

1...<<11121314151617181920>>...26

/PHP-5.5/ext/interbase/tests/
H A D005.phpt208 echo "end of test\n";
289 end of test
/PHP-5.5/ext/intl/breakiterator/
H A Dbreakiterator_iterators.cpp280 goto end; in IntlPartsIterator_get_method()
287 end: in IntlPartsIterator_get_method()
/PHP-5.5/ext/standard/tests/file/
H A Dfwrite_variation3-win32.phpt15 written or the end of string reached, whichever comes first.
77 } // end of inner foreach loop
78 } // end of outer foreach loop
H A Dfwrite_variation3.phpt15 written or the end of string reached, whichever comes first.
78 } // end of inner foreach loop
79 } // end of outer foreach loop
H A Dfseek_ftell_rewind_basic2-win32.phpt62 var_dump( feof($file_handle) ); //ensure that file pointer is not at end
63 } //end of whence loop
70 } //end of file_mode loop
71 } //end of File content type loop
H A Dfseek_ftell_rewind_basic2.phpt61 var_dump( feof($file_handle) ); //ensure that file pointer is not at end
62 } //end of whence loop
69 } //end of file_mode loop
70 } //end of File content type loop
H A Dfseek_ftell_rewind_basic1.phpt50 var_dump( feof($file_handle) ); //ensure that file pointer is not at end
51 } //end of whence loop
58 } //end of file_modes loop
59 } //end of file_content_types loop
H A Dfwrite_basic-win32.phpt15 written or the end of string reached, whichever comes first.
71 } // end of inner for loop
75 } // end of outer foreach loop
H A Dfwrite_basic.phpt15 written or the end of string reached, whichever comes first.
71 } // end of inner for loop
75 } // end of outer foreach loop
H A Dfgetss_variation1-win32.phpt69 var_dump( feof($file_handle) ); // check if end of file pointer is set
76 } // end of for - mode_counter
H A Dfgetss_variation1.phpt65 var_dump( feof($file_handle) ); // check if end of file pointer is set
72 } // end of for - mode_counter
H A Dfputcsv_variation10.phpt64 } //end of mode loop
65 } // end of foreach
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_result.c1093 goto end; in MYSQLND_METHOD()
1100 goto end; in MYSQLND_METHOD()
1110 goto end; in MYSQLND_METHOD()
1131 goto end; in MYSQLND_METHOD()
1137 goto end; in MYSQLND_METHOD()
1163 goto end; in MYSQLND_METHOD()
1170 goto end; in MYSQLND_METHOD()
1192 goto end; in MYSQLND_METHOD()
1214 end: in MYSQLND_METHOD()
/PHP-5.5/ext/pcre/tests/
H A Dpreg_replace_basic.phpt11 …s shouldn\'t work', $string)); //tries to find '- This is a string' at the end of a string but can…
H A Dpreg_grep_basic.phpt13 … string) not followed by 3 characters that aren't w's then anything to the end of the sttring (mat…
H A Dpreg_replace_edit_basic.phpt15 …houldn\'t work', $string)); //tries to find '- This is a string' at the end of a string but can…
/PHP-5.5/ext/standard/tests/array/
H A Darray_push_variation2.phpt6 * Description: Pushes elements onto the end of the array
/PHP-5.5/Zend/
H A Dzend_operators.h273 zend_memnstr(char *haystack, char *needle, int needle_len, char *end) in zend_memnstr() argument
279 return (char *)memchr(p, *needle, (end-p)); in zend_memnstr()
282 if (needle_len > end-haystack) { in zend_memnstr()
286 end -= needle_len; in zend_memnstr()
288 while (p <= end) { in zend_memnstr()
289 if ((p = (char *)memchr(p, *needle, (end-p+1))) && ne == p[needle_len-1]) { in zend_memnstr()
H A Dmicro_bench.php257 $end = getmicrotime();
259 $last_time = $end-$start;
/PHP-5.5/
H A Dserver-tests.php1437 $end = strpos($wanted_re, $r, $start+2);
1438 if ($end === false) {
1440 $end = $start = $length;
1444 $start = $end = $length;
1449 if ($end > $start) {
1450 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
1452 $startOffset = $end + 2;
/PHP-5.5/ext/standard/tests/streams/
H A Dproc_open_bug51800.phpt15 The smaller the pipe buffer is, the longer it will take. It might even pass at the end,
/PHP-5.5/ext/standard/tests/strings/
H A Dtrim1.phpt7 * Strip whitespace (or other characters) from the beginning and end of a string.
/PHP-5.5/ext/spl/internal/
H A Dsplqueue.inc60 /** Pushes an element at the end of the queue.
/PHP-5.5/ext/spl/tests/
H A DSplFileObject_fputcsv_variation10.phpt55 } //end of mode loop
56 } // end of foreach
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c1764 struct timeval start, end; local
1766 time_t start, end; local
2574 gettimeofday(&end, NULL);
2575 sec = (int)(end.tv_sec - start.tv_sec);
2576 if (end.tv_usec >= start.tv_usec) {
2577 usec = (int)(end.tv_usec - start.tv_usec);
2580 usec = (int)(end.tv_usec + 1000000 - start.tv_usec);
2584 time(&end);
2585 sec = (int)(end - start);

Completed in 104 milliseconds

1...<<11121314151617181920>>...26