Home
last modified time | relevance | path

Searched refs:start (Results 251 – 275 of 431) sorted by relevance

1...<<1112131415161718

/PHP-7.2/ext/curl/tests/
H A Dcurl_copy_handle_basic_002.phpt18 ob_start(); // start output buffering
H A Dcurl_copy_handle_basic_006.phpt19 ob_start(); // start output buffering
H A Dcurl_copy_handle_basic_007.phpt15 ob_start(); // start output buffering
/PHP-7.2/ext/xml/
H A Dcompat.c507 XML_SetElementHandler(XML_Parser parser, XML_StartElementHandler start, XML_EndElementHandler end) in XML_SetElementHandler() argument
509 parser->h_start_element = start; in XML_SetElementHandler()
578 xmlChar start[4]; in XML_Parse() local
586 memcpy(start, parser->parser->input->buf->buffer->content, (size_t)char_count); in XML_Parse()
587 memcpy(start + char_count, data, (size_t)(4 - char_count)); in XML_Parse()
589 if (xmlDetectCharEncoding(&start[0], 4) == XML_CHAR_ENCODING_NONE) { in XML_Parse()
/PHP-7.2/ext/pdo_firebird/tests/
H A Dbug_62024.phpt19 //start actual test
/PHP-7.2/sapi/fpm/tests/
H A Dbug68423-multi-pool-all-pms.phpt38 $tester->start();
/PHP-7.2/ext/reflection/tests/
H A DReflectionGenerator_basic.phpt25 $gen->valid(); // start Generator
/PHP-7.2/ext/standard/tests/strings/
H A Dstrspn_variation8.phpt2 Test strspn() function : usage variations - with heredoc strings, varying start and len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with heredoc string, varying start and len arguments
16 echo "*** Testing strspn() : with different start and len values ***\n";
75 // defining array of different start values
96 // loop through each element of the array for heredoc str, mask str , start values and len values
103 foreach($start_array as $start) {
105 var_dump( strspn($str,$mask,$start,$len) );
115 *** Testing strspn() : with different start and len values ***
H A Dstrcspn_variation8.phpt2 Test strcspn() function : usage variations - with heredoc strings, varying start and len args
5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with heredoc string, varying start and len arguments
16 echo "*** Testing strcspn() : with different start and len values ***\n";
74 // definig array of start values
101 foreach($start_array as $start) {
103 var_dump( strcspn($str,$mask,$start,$len) );
113 *** Testing strcspn() : with different start and len values ***
/PHP-7.2/ext/oci8/tests/
H A Dreflection2.phpt129 Parameter #1 [ <optional> $start ]
138 Parameter #1 [ <optional> $start ]
/PHP-7.2/sapi/cli/tests/
H A Dbug67429.phpt38 // Shutdown the servers or another server may not be able to start
/PHP-7.2/ext/opcache/Optimizer/
H A Dzend_cfg.h47 uint32_t start; /* first opcode number */ member
/PHP-7.2/ext/standard/tests/dir/
H A Drewinddir_error.phpt6 * Description: Rewind dir_handle back to the start
H A Drewinddir_error-win32-mb.phpt12 * Description: Rewind dir_handle back to the start
H A Drewinddir_variation2.phpt6 * Description: Rewind dir_handle back to the start
/PHP-7.2/ext/iconv/tests/
H A Dbug48147.phpt12 // start invalid
/PHP-7.2/ext/session/tests/
H A Dbug74892.phpt2 Bug #74892 Url Rewriting (trans_sid) not working on urls that start with #
/PHP-7.2/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation5.phpt18 //seek to start of file
/PHP-7.2/ext/intl/uchar/
H A Duchar.c185 UChar32 start, UChar32 limit, in enumCharType_callback() argument
194 ZVAL_LONG(&args[0], start); in enumCharType_callback()
292 ZEND_ARG_INFO(0, start)
328 UChar32 start, limit; in IC_METHOD() local
335 (convert_cp(&start, zstart) == FAILURE) || in IC_METHOD()
340 …u_enumCharNames(start, limit, (UEnumCharNamesFn*)enumCharNames_callback, &context, nameChoice, &er… in IC_METHOD()
/PHP-7.2/ext/posix/tests/
H A Dposix_kill_basic.phpt15 // for now start at a low pid and find first pid which does not exist.
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_btree.c230 phpdbg_btree_branch *start = branch; in phpdbg_btree_clean_recursive() local
238 pefree(start, persistent); in phpdbg_btree_clean_recursive()
/PHP-7.2/ext/shmop/tests/
H A D002.phpt40 // warning outputs: start is out of range
92 Warning: shmop_read(): start is out of range in %s on line %d
/PHP-7.2/ext/pdo_mysql/tests/
H A Dpdo_mysql_begintransaction.phpt22 printf("[002] Cannot start a transaction, [%s] [%s]\n",
137 printf("[029] Cannot start a transaction, [%d] %s\n",
153 printf("[031] Cannot start a transaction, [%s] [%s]\n",
166 printf("[035] Cannot start a transaction, [%s] [%s]\n",
/PHP-7.2/ext/date/lib/
H A Dtm2unixtime.c48 static void do_range_limit(timelib_sll start, timelib_sll end, timelib_sll adj, timelib_sll *a, tim… in do_range_limit() argument
50 if (*a < start) { in do_range_limit()
51 *b -= (start - *a - 1) / adj + 1; in do_range_limit()
52 *a += adj * ((start - *a - 1) / adj + 1); in do_range_limit()
/PHP-7.2/
H A Dserver-tests.php1421 $start = strpos($wanted_re, $r, $startOffset);
1422 if ($start !== false) {
1424 $end = strpos($wanted_re, $r, $start+2);
1427 $end = $start = $length;
1431 $start = $end = $length;
1434 $temp = $temp . preg_quote(substr($wanted_re, $startOffset, ($start - $startOffset)), '/');
1436 if ($end > $start) {
1437 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';

Completed in 56 milliseconds

1...<<1112131415161718