Home
last modified time | relevance | path

Searched refs:position (Results 51 – 75 of 366) sorted by relevance

12345678910>>...15

/PHP-7.1/ext/standard/tests/array/
H A Darray_change_key_case_variation5.phpt2 Test array_change_key_case() function : usage variations - position of internal pointer
11 * Check the position of the internal array pointer after calling the function
H A Darray_merge_variation10.phpt2 Test array_merge() function : usage variations - position of internal array pointer
11 * Check the position of the internal array pointer after calling array_merge().
H A Dkey_variation4.phpt42 //see if internal pointer is in same position as referenced array
44 // see if internal pointer is in the same position from when accessing this inner array
H A Dbug21998.phpt2 Bug #21998 (array_pop() does not reset the current array position)
H A Dcurrent_variation4.phpt43 //see if internal pointer is in same position as referenced array
45 // see if internal pointer is in the same position from when accessing this inner array
/PHP-7.1/ext/intl/tests/
H A Dgrapheme.phpt615 $res_str .= " starting at byte position $test[2]";
619 $res_str .= " starting at byte position $test[2] with \$next";
684 $res_str .= " starting at byte position $test[2]";
748 $res_str .= " starting at byte position $test[2]";
1105 extract from "abc" "1" graphemes - grapheme_extract starting at byte position 0 = a == a
1106 extract from "abc" "1" graphemes - grapheme_extract starting at byte position 1 = b == b
1107 extract from "abc" "1" graphemes - grapheme_extract starting at byte position 2 = c == c
1108 extract from "abc" "0" graphemes - grapheme_extract starting at byte position 2 = ==
1112 extract from "abc" "0" graphemes - grapheme_extract starting at byte position 0 with $next = == $…
1117 extract from "abc" "0" graphemes - grapheme_extract starting at byte position 2 with $next = == $…
[all …]
/PHP-7.1/ext/standard/tests/file/
H A D007_variation11-win32-mb.phpt24 checking for the file pointer position,
39 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
41 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
44 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the beg…
H A D007_variation11.phpt24 checking for the file pointer position,
39 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
41 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
44 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the beg…
H A D007_variation12-win32.phpt24 checking for the file pointer position,
39 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
41 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
44 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation12.phpt24 checking for the file pointer position,
39 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
41 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
44 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation20.phpt19 checking for the file pointer position,
34 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
36 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
39 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation9.phpt19 checking for the file pointer position,
33 var_dump( ftell($file_handle) ); //Initial position of file pointer
H A D007_variation1.phpt19 checking for the file pointer position,
33 var_dump( ftell($file_handle) ); //Initial position of file pointer
H A D007_variation17.phpt19 checking for the file pointer position,
33 var_dump( ftell($file_handle) ); //Initial position of file pointer
/PHP-7.1/ext/standard/tests/strings/
H A Dstrrpos_variation8.phpt6 * Description: Find position of last occurrence of 'needle' in 'haystack'.
18 /* loop through to consider various offsets in getting the position of the needle in haystack strin…
/PHP-7.1/Zend/tests/
H A Dbug23104.phpt2 Bug #23104 (Hash position not reset for constant arrays)
/PHP-7.1/ext/spl/tests/
H A Dbug45614.phpt32 echo "\n--> Invalidate current position and show the first two items:\n";
51 --> Invalidate current position and show the first two items:
H A Dbug70561.phpt22 Seek position %d is out of range
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_frame.c263 HashPosition position; in phpdbg_dump_backtrace() local
293 zend_hash_internal_pointer_reset_ex(Z_ARRVAL(zbacktrace), &position); in phpdbg_dump_backtrace()
294 tmp = zend_hash_get_current_data_ex(Z_ARRVAL(zbacktrace), &position); in phpdbg_dump_backtrace()
295 while ((tmp = zend_hash_get_current_data_ex(Z_ARRVAL(zbacktrace), &position))) { in phpdbg_dump_backtrace()
311 zend_hash_move_forward_ex(Z_ARRVAL(zbacktrace), &position); in phpdbg_dump_backtrace()
/PHP-7.1/ext/mbstring/tests/
H A Dbug72694.phpt2 Bug #72694 (mb_ereg_search_setpos does not accept a string's last position)
H A Dbug72693.phpt2 Bug #72693 (mb_ereg_search increments search position when a match zero-width)
/PHP-7.1/ext/standard/
H A Dphp_fopen_wrapper.c68 zend_off_t position; member
83 if (!SG(post_read) && SG(read_post_bytes) < (int64_t)(input->position + count)) { in php_stream_input_read()
96 php_stream_seek(input->body, input->position, SEEK_SET); in php_stream_input_read()
103 input->position += read; in php_stream_input_read()
131 *newoffset = (input->body)->position; in php_stream_input_seek()
/PHP-7.1/ext/sqlite3/
H A Dsqlite3.c1068 size_t position; member
1091 sqlite3_stream->position += count; in php_sqlite3_stream_read()
1124 sqlite3_stream->position = 0; in php_sqlite3_stream_seek()
1128 sqlite3_stream->position = sqlite3_stream->position + offset; in php_sqlite3_stream_seek()
1139 sqlite3_stream->position = sqlite3_stream->position + offset; in php_sqlite3_stream_seek()
1151 sqlite3_stream->position = offset; in php_sqlite3_stream_seek()
1152 *newoffs = sqlite3_stream->position; in php_sqlite3_stream_seek()
1162 sqlite3_stream->position = 0; in php_sqlite3_stream_seek()
1167 *newoffs = sqlite3_stream->position; in php_sqlite3_stream_seek()
1172 *newoffs = sqlite3_stream->position; in php_sqlite3_stream_seek()
[all …]
/PHP-7.1/ext/standard/tests/streams/
H A Dbug48309.phpt2 Bug #48309 (stream_copy_to_stream() and fpasstru() do not update stream position)
/PHP-7.1/ext/standard/tests/class_object/
H A Dis_a_error_001.phpt25 echo "\n-- Testing is_a() function with non-boolean in last position --\n";
44 -- Testing is_a() function with non-boolean in last position --

Completed in 108 milliseconds

12345678910>>...15