| /PHP_5_5/ext/phar/tests/zip/files/ |
| H A D | corrupt_zipmaker.php.inc | 39 * @var int Current position in the writer
|
| /PHP_5_5/ext/spl/internal/ |
| H A D | limititerator.inc | 51 /** Seek to specified position 52 * @param position offset to seek to (relative to beginning not offset 54 * @throw exception when position is invalid 56 function seek($position) { 57 if ($position < $this->offset) { 58 throw new exception('Cannot seek to '.$position.' which is below offset '.$this->offset); 60 if ($position > $this->offset + $this->count && $this->count != -1) { 61 throw new exception('Cannot seek to '.$position.' which is behind offset '.$this->offset.' plus count '.$this->count); 64 $this->it->seek($position); 65 $this->pos = $position; [all...] |
| H A D | multipleiterator.inc | 33 /** keys are created from sub iterators position */
|
| H A D | seekableiterator.inc | 23 /** Seek to an absolute position 25 * \param $index position to seek to 29 * the given position. Typically this exception should be of type 34 $position = 0; 35 while($position < $index && $this->valid()) { 37 $position++; 40 throw new OutOfBoundsException('Invalid seek position');
|
| H A D | splfileobject.inc | 133 * @return current file position 141 * @param pos new file position
|
| /PHP_5_5/ext/spl/ |
| H A D | spl.php | 826 /** @param $position offset to seek to 827 * @throw OutOfBoundsException if $position is invalid 829 function seek($position) {/**/}
|
| H A D | spl_array.c | 671 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%sArray was modified outside object and internal position is no longer valid", msg_prefix); 886 spl_array_rewind(intern TSRMLS_CC); /* because deletion might invalidate position */ 955 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Array was modified outside object and internal position is no longer valid"); 1055 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "ArrayIterator::next(): Array was modified outside object and internal position is no longer valid"); 1333 /* {{{ proto void ArrayIterator::seek(int $position) 1334 Seek to position. */ 1337 long opos, position; local 1343 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &position) == FAILURE) { 1352 opos = position; 1354 if (position > [all...] |
| /PHP_5_5/ext/sqlite3/tests/ |
| H A D | stream_test.inc | 5 private $position; 11 $this->position = 0; 17 $ret = substr(self::$string, $this->position, $count); 18 $this->position += strlen($ret); 34 return $this->position; 39 return ($this->position >= self::$string_length);
|
| /PHP_5_5/ext/intl/dateformat/ |
| H A D | dateformat_class.c | 124 ZEND_ARG_INFO(1, position)
|
| /PHP_5_5/ext/intl/doc/ |
| H A D | formatter_api.php | 191 * @param [integer] $position On input, the position to start parsing, default is 0; 196 public function parse($string, $type, &$position) {} 216 * @param [integer] $position On input, the position within text to match, default is 0; 217 * on output, the position after the last matched character; 221 public function parseCurrency($string, &$currency, &$position) {} 363 * @param [integer] $position String position after the end of parsed data. 366 function numfmt_parse($formatter, $string, $type, &$position) {} [all...] |
| /PHP_5_5/ext/intl/formatter/ |
| H A D | formatter_class.c | 118 ZEND_ARG_INFO(1, position) 124 ZEND_ARG_INFO(1, position)
|
| H A D | formatter_parse.c | 32 /* {{{ proto mixed NumberFormatter::parse( string $str[, int $type, int &$position ]) 34 /* {{{ proto mixed numfmt_parse( NumberFormatter $nf, string $str[, int $type, int &$position ]) 44 int32_t val32, position = 0; local 71 position = (int32_t)Z_LVAL_P( zposition ); 72 position_p = &position; 106 ZVAL_LONG(zposition, position); 117 /* {{{ proto double NumberFormatter::parseCurrency( string $str, string $¤cy[, int $&position] ) 119 /* {{{ proto double numfmt_parse_currency( NumberFormatter $nf, string $str, string $¤cy[, int $&position] ) 133 int32_t position = 0; local 156 position [all...] |
| /PHP_5_5/ext/date/lib/ |
| H A D | timelib_structs.h | 176 int position; member in struct:timelib_error_message
|
| H A D | parse_iso_intervals.re | 109 s->errors->warning_messages[s->errors->warning_count - 1].position = s->tok ? s->tok - s->str : 0; 118 s->errors->error_messages[s->errors->error_count - 1].position = s->tok ? s->tok - s->str : 0;
|
| /PHP_5_5/ext/standard/ |
| H A D | php_fopen_wrapper.c | 74 off_t *position = (off_t*)stream->abstract; local 79 read_bytes = SG(request_info).raw_post_data_length - *position; 86 memcpy(buf, SG(request_info).raw_post_data + *position, read_bytes); 101 *position += read_bytes;
|
| H A D | streamsfuncs.c | 421 off_t position; local 423 position = php_stream_tell(stream); 424 if (position >= 0 && desiredpos > position) { 426 seek_res = php_stream_seek(stream, desiredpos - position, SEEK_CUR); 427 } else if (desiredpos < position) { 428 /* desired position before position or error on tell */ 434 "Failed to seek to position %ld in the stream", desiredpos); 467 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position [all...] |
| /PHP_5_5/main/streams/ |
| H A D | cast.c | 71 static fpos_t stream_cookie_seeker(void *cookie, off_t position, int whence) argument 75 return (fpos_t)php_stream_seek((php_stream *)cookie, position, whence); 105 static int stream_cookie_seeker(void *cookie, __off64_t *position, int whence) argument 109 *position = php_stream_seek((php_stream *)cookie, (off_t)*position, whence); 111 if (*position == -1) { 117 static int stream_cookie_seeker(void *cookie, off_t position, int whence) argument 121 return php_stream_seek((php_stream *)cookie, position, whence); 203 stream->ops->seek(stream, stream->position, SEEK_SET, &dummy TSRMLS_CC); 245 /* If the stream position i [all...] |
| H A D | plain_wrapper.c | 253 stream->position = lseek(self->fd, 0, SEEK_CUR); 255 if (stream->position == (off_t)-1 && errno == ESPIPE) { 256 stream->position = 0; 292 stream->position = ftell(file);
|
| H A D | streams.c | 763 stream->position += didread; 947 stream->position += cpysz; 1103 stream->position += delim_len; 1115 * current stream->position. This means invalidating the read buffer and then 1120 stream->ops->seek(stream, stream->position, SEEK_SET, &stream->position TSRMLS_CC); 1140 stream->position += justwrote; 1266 return stream->position; 1282 stream->position += offset; 1288 if (offset > stream->position [all...] |
| /PHP_5_5/ext/phar/ |
| H A D | phar_internal.h | 281 /* position in the manifest */ 484 /* stream position proxy, allows multiple open streams referring to the same fp */ 485 off_t position; member in struct:_phar_entry_data 659 int phar_seek_efp(phar_entry_info *entry, off_t offset, int whence, off_t position, int follow_links TSRMLS_DC);
|
| H A D | stream.c | 376 /* use our proxy position */ 377 php_stream_seek(data->fp, data->position + data->zero, SEEK_SET); 379 got = php_stream_read(data->fp, buf, MIN(count, entry->uncompressed_filesize - data->position)); 380 data->position = php_stream_tell(data->fp) - data->zero; 381 stream->eof = (data->position == (off_t) entry->uncompressed_filesize); 408 temp = data->zero + data->position + offset; 426 data->position = *newoffset; 438 php_stream_seek(data->fp, data->position, SEEK_SET); 443 data->position = php_stream_tell(data->fp); 444 if (data->position > (off_ [all...] |
| /PHP_5_5/ext/sqlite3/ |
| H A D | sqlite3.c | 1075 size_t position; member in struct:__anon1 1090 if (sqlite3_stream->position + count >= sqlite3_stream->size) { 1091 count = sqlite3_stream->size - sqlite3_stream->position; 1095 if (sqlite3_blob_read(sqlite3_stream->blob, buf, count, sqlite3_stream->position) != SQLITE_OK) { 1098 sqlite3_stream->position += count; 1130 if (sqlite3_stream->position < (size_t)(-offset)) { 1131 sqlite3_stream->position = 0; 1135 sqlite3_stream->position = sqlite3_stream->position + offset; 1136 *newoffs = sqlite3_stream->position; [all...] |
| /PHP_5_5/ext/intl/ |
| H A D | php_intl.c | 165 ZEND_ARG_INFO(1, position) 172 ZEND_ARG_INFO(1, position) 241 ZEND_ARG_INFO(1, position)
|
| /PHP_5_5/ext/mbstring/ |
| H A D | php_mbregex.c | 1390 Get search start position */ 1397 /* {{{ proto bool mb_ereg_search_setpos(int position) 1398 Set search start position */ 1401 long position; local 1403 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &position) == FAILURE) { 1407 if (position < 0 || (MBREX(search_str) != NULL && Z_TYPE_P(MBREX(search_str)) == IS_STRING && position >= Z_STRLEN_P(MBREX(search_str)))) { 1413 MBREX(search_pos) = position;
|
| /PHP_5_5/ext/reflection/ |
| H A D | php_reflection.c | 2148 int position; local 2250 position= Z_LVAL_PP(parameter); 2251 if (position < 0 || (zend_uint)position >= fptr->common.num_args) { 2267 position= -1; 2271 position= i; 2275 if (position == -1) { 2291 if (arg_info[position].name) { 2292 ZVAL_STRINGL(name, arg_info[position].name, arg_info[position] [all...] |