| /PHP_5_3/ext/intl/formatter/ |
| 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_3/ext/date/lib/ |
| H A D | timelib_structs.h | 176 int position; member in struct:timelib_error_message
|
| /PHP_5_3/ext/mbstring/ |
| H A D | php_mbregex.c | 1326 Get search start position */ 1333 /* {{{ proto bool mb_ereg_search_setpos(int position) 1334 Set search start position */ 1337 long position; local 1339 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &position) == FAILURE) { 1343 if (position < 0 || (MBREX(search_str) != NULL && Z_TYPE_P(MBREX(search_str)) == IS_STRING && position >= Z_STRLEN_P(MBREX(search_str)))) { 1349 MBREX(search_pos) = position;
|
| /PHP_5_3/ext/pdo/ |
| H A D | pdo_stmt.c | 132 int position = 0; local 152 position++; 160 param->paramno = position; 1629 bind an input parameter to the value of a PHP variable. $paramno is the 1-based position of the placeholder in the SQL statement (but can be the parameter name for drivers that support named placeholders). It should be called prior to execute(). */ 1669 bind a parameter to a PHP variable. $paramno is the 1-based position of the placeholder in the SQL statement (but can be the parameter name for drivers that support named placeholders). This isn't supported by all drivers. It should be called prior to execute(). */
|
| /PHP_5_3/ext/reflection/ |
| H A D | php_reflection.c | 1996 int position; local 2098 position= Z_LVAL_PP(parameter); 2099 if (position < 0 || (zend_uint)position >= fptr->common.num_args) { 2115 position= -1; 2119 position= i; 2123 if (position == -1) { 2139 if (arg_info[position].name) { 2140 ZVAL_STRINGL(name, arg_info[position].name, arg_info[position] [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | php_encoding.c | 2748 xmlAttrPtr position = get_attribute(trav->properties,"position"); local 2751 if (position != NULL && position->children && position->children->content) { 2752 char* tmp = strrchr((char*)position->children->content, '['); 2754 tmp = (char*)position->children->content; 2777 /* Increment position */
|
| /PHP_5_3/ext/sqlite3/ |
| H A D | sqlite3.c | 1067 size_t position; member in struct:__anon207 1082 if (sqlite3_stream->position + count >= sqlite3_stream->size) { 1083 count = sqlite3_stream->size - sqlite3_stream->position; 1087 if (sqlite3_blob_read(sqlite3_stream->blob, buf, count, sqlite3_stream->position) != SQLITE_OK) { 1090 sqlite3_stream->position += count; 1122 if (sqlite3_stream->position < (size_t)(-offset)) { 1123 sqlite3_stream->position = 0; 1127 sqlite3_stream->position = sqlite3_stream->position + offset; 1128 *newoffs = sqlite3_stream->position; [all...] |
| /PHP_5_3/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 | 428 off_t position; local 430 position = php_stream_tell(stream); 431 if (position >= 0 && desiredpos > position) { 433 seek_res = php_stream_seek(stream, desiredpos - position, SEEK_CUR); 434 } else if (desiredpos < position) { 435 /* desired position before position or error on tell */ 441 "Failed to seek to position %ld in the stream", desiredpos); 478 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position [all...] |
| /PHP_5_3/main/ |
| H A D | php_streams.h | 216 off_t position; /* of underlying stream */ member in struct:_php_stream
|
| /PHP_5_3/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...] |
| /PHP_5_3/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 | phar_object.c | 176 off_t position; local 224 position = 0; 228 got = php_stream_read(fp, buf, MIN(8192, info->uncompressed_filesize - position)); 231 position += got; 232 if (position == (off_t) info->uncompressed_filesize) {
|
| H A D | util.c | 124 int phar_seek_efp(phar_entry_info *entry, off_t offset, int whence, off_t position, int follow_links TSRMLS_DC) /* {{{ */ argument 152 temp = eoffset + position + offset; 663 (*ret)->position = 0; 712 (*ret)->position = 0; 838 ret->position = ret->zero = 0;
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_array.c | 840 spl_array_rewind(intern TSRMLS_CC); /* because deletion might invalidate position */ 909 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Array was modified outside object and internal position is no longer valid"); 956 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "ArrayIterator::valid(): Array was modified outside object and internal position is no longer valid"); 996 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "ArrayIterator::current(): Array was modified outside object and internal position is no longer valid"); 1021 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "ArrayIterator::next(): Array was modified outside object and internal position is no longer valid"); 1299 /* {{{ proto void ArrayIterator::seek(int $position) 1300 Seek to position. */ 1303 long opos, position; local 1309 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &position) == FAILURE) { 1318 opos = position; [all...] |