Home
last modified time | relevance | path

Searched refs:position (Results 101 – 125 of 281) sorted by relevance

12345678910>>...12

/php-src/Zend/tests/type_declarations/variance/
H A Dparent_in_class_failure2.phpt6 // Illegal: B4::parent == A4 is subclass of A4::parent == P4 in contravariant position
H A Dparent_in_class_success.phpt15 // Legal: B3::parent == A3 is subclass of A3::parent == P3 in covariant position
/php-src/Zend/tests/stack_limit/
H A Dstack_limit_009.phpt24 ["position"]=>
H A Dstack_limit_012.phpt35 ["position"]=>
H A Dstack_limit_004.phpt49 ["position"]=>
H A Dstack_limit_007.phpt39 ["position"]=>
/php-src/ext/spl/
H A Dspl_observer.c765 zend_long position; in PHP_METHOD() local
768 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &position) == FAILURE) { in PHP_METHOD()
772 if (position < 0 || position >= zend_hash_num_elements(&intern->storage)) { in PHP_METHOD()
773 …on_ex(spl_ce_OutOfBoundsException, 0, "Seek position " ZEND_LONG_FMT " is out of range", position); in PHP_METHOD()
777 if (position == 0) { in PHP_METHOD()
781 } else if (position > intern->index) { in PHP_METHOD()
786 } while (position > intern->index); in PHP_METHOD()
787 } else if (position < intern->index) { in PHP_METHOD()
789 if (intern->index - position > position) { in PHP_METHOD()
795 } while (position > intern->index); in PHP_METHOD()
[all …]
/php-src/ext/mbstring/tests/
H A Dbug72693.phpt2 Bug #72693 (mb_ereg_search increments search position when a match zero-width)
/php-src/ext/intl/tests/
H A Dformatter_parse.phpt25 // Test specifying non-zero parsing start position.
H A Dut_common.inc149 function ut_nfmt_parse( $fmt, $string, $type = NumberFormatter::TYPE_DOUBLE, &$position = null )
151 if(is_null($position)) {
154 …ALS['oo-mode'] ? $fmt->parse( $string, $type, $position ) : numfmt_parse( $fmt, $string, $type, $p…
161 function ut_nfmt_parse_currency( $fmt, $string, &$currency, &$position = null )
163 if(is_null($position)) {
166 …fmt->parseCurrency( $string, $currency, $position ) : numfmt_parse_currency( $fmt, $string, $curre…
/php-src/ext/spl/tests/SplFileObject/
H A DSplFileObject_ftruncate_error_001.phpt8 public $position;
H A DSplFileObject_fflush_basic_001.phpt16 public $position;
/php-src/ext/xmlreader/tests/
H A D003-move-errors.phpt40 // Ensure that node pointer has not changed position
47 // Ensure that node pointer has not changed position
/php-src/ext/standard/tests/file/
H A D007_variation21.phpt8 checking for the file pointer position,
25 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation5.phpt8 checking for the file pointer position,
25 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation13-win32.phpt13 checking for the file pointer position,
30 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation13.phpt13 checking for the file pointer position,
30 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
/php-src/ext/standard/tests/array/
H A Darray_shift_variation7.phpt2 Test array_shift() function : usage variations - position of internal pointer
H A Darray_values_variation5.phpt6 * Test the position of the internal array pointer after a call to array_values
/php-src/ext/standard/tests/strings/
H A Dbug69751.phpt2 Bug #69751: Change Error message of sprintf/printf for missing/typo position specifier.
/php-src/ext/date/tests/
H A Dbug45866.phpt26 …: DateTime::modify(): Failed to parse time string (£61538461538 day) at position 0 (%s): Unexpecte…
/php-src/ext/snmp/tests/
H A Dbug64124.phpt21 # Should be checked with IPv6 since IPv4 processing code do not alter pointer position
/php-src/main/streams/
H A Dstreams.c783 stream->position += didread; in _php_stream_read()
988 stream->position += cpysz; in _php_stream_get_line()
1144 stream->position += delim_len; in php_stream_get_record()
1162 stream->ops->seek(stream, stream->position, SEEK_SET, &stream->position); in _php_stream_write_buffer()
1190 stream->position += justwrote; in _php_stream_write_buffer()
1337 return stream->position; in _php_stream_tell()
1358 stream->position += offset; in _php_stream_seek()
1367 stream->position = offset; in _php_stream_seek()
1648 src->position += nbytes; in _php_stream_copy_to_stream_ex()
1649 dest->position += nbytes; in _php_stream_copy_to_stream_ex()
[all …]
/php-src/ext/spl/tests/
H A Ddit_006.phpt47 Seek position %d is out of range
/php-src/ext/phar/
H A Dstream.c390 php_stream_seek(data->fp, data->position + data->zero, SEEK_SET); in phar_stream_read()
392 …hp_stream_read(data->fp, buf, MIN(count, (size_t)(entry->uncompressed_filesize - data->position))); in phar_stream_read()
393 data->position = php_stream_tell(data->fp) - data->zero; in phar_stream_read()
394 stream->eof = (data->position == (zend_off_t) entry->uncompressed_filesize); in phar_stream_read()
421 temp = data->zero + data->position + offset; in phar_stream_seek()
439 data->position = *newoffset; in phar_stream_seek()
451 php_stream_seek(data->fp, data->position, SEEK_SET); in phar_stream_write()
456 data->position = php_stream_tell(data->fp); in phar_stream_write()
457 if (data->position > (zend_off_t)data->internal_file->uncompressed_filesize) { in phar_stream_write()
458 data->internal_file->uncompressed_filesize = data->position; in phar_stream_write()

Completed in 69 milliseconds

12345678910>>...12