| /PHP_5_3/ext/phar/tests/files/ |
| H A D | pear2coverage.phar.php | 97 * Takes a source file and outputs HTML source highlighting showing the 105 protected $source; 224 * @param PEAR2\Pyrus\Developer\CodeCoverage\SourceFile $source 227 function render(SourceFile $source, $istest = false) 230 if (!$output->openUri($this->manglePath($source->name(), $istest))) { 231 throw new Exception('Cannot render ' . $source->name() . ', opening XML failed'); 239 $output->writeElement('title', 'Code Coverage for ' . $source->shortName() . ' in ' . $istest); 241 $output->writeElement('title', 'Code Coverage for ' . $source->shortName()); 255 $output->writeElement('h2', 'Code Coverage for ' . $source 102 protected $source; variable 358 $source = new SourceFile($name, $agg, $this->testPath, $this->sourcePath); variable 445 $source = new SourceFile\\PerTest($name, $agg, $testpath, $basePath, $test); variable 552 $source = '$xdebug = ' . file_get_contents($path) . ";\\n"; variable 643 protected $source; variable 653 $this->source = file($path); variable 711 function source() function 834 $source = '$xdebug = ' . file_get_contents($path) . ";\\n"; variable [all...] |
| /PHP_5_3/ext/xmlrpc/libxmlrpc/ |
| H A D | base64.c | 52 void base64_encode_xmlrpc(struct buffer_st *b, const char *source, int length) argument 80 c = *(source++); 117 void base64_decode_xmlrpc(struct buffer_st *bfr, const char *source, int length) argument 151 c = *(source++);
|
| H A D | simplestring.c | 55 * patch to make source more windows friendly, contributed by Jeff Lawson 181 * copies n characters from source to target string 184 * source - source string 193 void simplestring_addn(simplestring* target, const char* source, int add_len) { argument 194 if(target && source) { 212 memcpy(target->str + target->len, source, add_len); 227 * appends a string of unknown length from source to target 230 * source - the source strin 238 simplestring_add(simplestring* target, const char* source) argument [all...] |
| H A D | xmlrpc.c | 86 * patch to make source more windows friendly, contributed by Jeff Lawson 1122 static int isDuplicateEntry(XMLRPC_VALUE target, XMLRPC_VALUE source) { argument 1130 * int XMLRPC_AddValueToVector(XMLRPC_VALUE target, XMLRPC_VALUE source) 1135 * source The source value to append 1148 int XMLRPC_AddValueToVector(XMLRPC_VALUE target, XMLRPC_VALUE source) { argument 1149 if(target && source) { 1154 switch(source->type) { 1164 if( !(source->id.len && target->v->type == xmlrpc_vector_array) ) { 1165 if (isDuplicateEntry (target, source) [all...] |
| /PHP_5_3/ext/zip/lib/ |
| H A D | zip_add_dir.c | 8 Redistribution and use in source and binary forms, with or without 11 1. Redistributions of source code must retain the above copyright 53 struct zip_source *source; 78 if ((source=zip_source_buffer(za, NULL, 0, 0)) == NULL) { 83 ret = _zip_replace(za, -1, s ? s : name, source); 87 zip_source_free(source); 51 struct zip_source *source; local
|
| H A D | zip_replace.c | 8 Redistribution and use in source and binary forms, with or without 11 1. Redistributions of source code must retain the above copyright 43 zip_replace(struct zip *za, zip_uint64_t idx, struct zip_source *source) 45 if (idx >= za->nentry || source == NULL) { 50 if (_zip_replace(za, idx, NULL, source) == -1) 64 struct zip_source *source) 85 za->entry[idx].source = source; 41 zip_replace(struct zip *za, zip_uint64_t idx, struct zip_source *source) argument 60 _zip_replace(struct zip *za, zip_uint64_t idx, const char *name, struct zip_source *source) argument
|
| H A D | zipint.h | 11 Redistribution and use in source and binary forms, with or without 14 1. Redistributions of source code must retain the above copyright 167 /* error source for layered sources */ 215 struct zip_source *src; /* data source */ 271 struct zip_source *source; 266 struct zip_source *source; member in struct:zip_entry
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd.h | 98 source color is composited with the destination color 99 based on the alpha channel value of the source color. 259 /* A custom data source. */ 260 /* The source function must return -1 on error, otherwise the number 262 /* context will be passed to your source function. */ 265 int (*source) (void *context, char *buffer, int len); member in struct:__anon122 432 anything up to 256. If the original source image 553 to average the entire set of source pixels that scale down onto the 559 entire set of source pixels that scale down onto the 561 destination pixel each source pixe [all...] |
| /PHP_5_3/ext/intl/msgformat/ |
| H A D | msgformat_helpers.cpp | 5 | This source file is subject to version 3.01 of the PHP license, | 137 U_CFUNC void umsg_parse_helper(UMessageFormat *fmt, int *count, zval ***args, UChar *source, int source_len, UErrorCode *status) argument 139 UnicodeString srcString(source, source_len);
|
| H A D | msgformat_parse.c | 5 | This source file is subject to version 3.01 of the PHP license, | 31 static void msgfmt_do_parse(MessageFormatter_object *mfo, char *source, int src_len, zval *return_value TSRMLS_DC) argument 39 intl_convert_utf8_to_utf16(&usource, &usrc_len, source, src_len, &INTL_DATA_ERROR_CODE(mfo)); 56 /* {{{ proto array MessageFormatter::parse( string $source ) 58 /* {{{ proto array msgfmt_parse( MessageFormatter $nf, string $source ) 63 char *source; local 70 &object, MessageFormatter_ce_ptr, &source, &source_len ) == FAILURE ) 81 msgfmt_do_parse(mfo, source, source_len, return_value TSRMLS_CC); 85 /* {{{ proto array MessageFormatter::formatMessage( string $locale, string $pattern, string $source ) 87 /* {{{ proto array numfmt_parse_message( string $locale, string $pattern, string $source ) 98 char *source = NULL; local [all...] |
| /PHP_5_3/ext/bz2/ |
| H A D | bz2.c | 7 | This source file is subject to version 3.01 of the PHP license, | 78 ZEND_ARG_INFO(0, source) 84 ZEND_ARG_INFO(0, source) 485 /* {{{ proto string bzcompress(string source [, int blocksize100k [, int workfactor]]) 489 char *source; /* Source data to compress */ local 497 int source_len; /* Length of the source data */ 502 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|ll", &source, &source_len, &zblock_size, &zwork_factor) == FAILURE) { 524 error = BZ2_bzBuffToBuffCompress(dest, &dest_len, source, source_len, block_size, 0, work_factor); 538 /* {{{ proto string bzdecompress(string source [, int small]) 542 char *source, *des local [all...] |
| /PHP_5_3/ext/com_dotnet/ |
| H A D | com_com.c | 7 | This source file is subject to version 3.01 of the PHP license, | 351 char *source = NULL, *desc = NULL, *msg = NULL; local 357 source = php_com_olestring_to_string(e.bstrSource, &source_len, obj->code_page TSRMLS_CC); 366 source ? source : "Unknown", 370 source ? source : "Unknown", 376 if (source) { 377 efree(source); 722 /* Now hook it up to the source */ [all...] |
| /PHP_5_3/ext/dom/ |
| H A D | document.c | 7 | This source file is subject to version 3.01 of the PHP license, | 108 ZEND_ARG_OBJ_INFO(0, source, DOMNode, 0) 121 ZEND_ARG_INFO(0, source) 130 ZEND_ARG_INFO(0, source) 151 ZEND_ARG_INFO(0, source) 155 ZEND_ARG_INFO(0, source) 170 ZEND_ARG_INFO(0, source) 178 ZEND_ARG_INFO(0, source) 1409 /* {{{ proto DOMNode dom_document_adopt_node(DOMNode source); 1497 char *_dom_get_valid_file_path(char *source, cha argument 1545 dom_document_parser(zval *id, int mode, char *source, int source_len, int options TSRMLS_DC) argument 1667 char *source; local 1974 char *source = NULL, *valid_file = NULL; local 2063 char *source = NULL, *valid_file = NULL; local 2157 char *source; local [all...] |
| /PHP_5_3/ext/hash/ |
| H A D | hash_whirlpool.c | 7 | This source file is subject to version 3.01 of the PHP license, | 278 int sourcePos = 0; /* index of leftmost source unsigned char containing data (1 to 8 bits). */ 279 int sourceGap = (8 - ((int)sourceBits & 7)) & 7; /* space on source[sourcePos]. */ 281 const unsigned char *source = input; local 303 /* N.B. at least source[sourcePos] and source[sourcePos+1] contain data. */ 305 * take a byte from the source: 307 b = ((source[sourcePos] << sourceGap) & 0xff) | 308 ((source[sourcePos + 1] & 0xff) >> (8 - sourceGap)); 333 * furthermore, all data (if any is left) is in source[sourcePo [all...] |
| /PHP_5_3/ext/mcrypt/ |
| H A D | mcrypt.c | 7 | This source file is subject to version 3.01 of the PHP license, | 236 ZEND_ARG_INFO(0, source) 1371 /* {{{ proto string mcrypt_create_iv(int size, int source) 1376 long source = RANDOM; local 1380 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|l", &size, &source) == FAILURE) { 1391 if (source == RANDOM || source == URANDOM) { 1405 fd = open(source == RANDOM ? "/dev/random" : "/dev/urandom", O_RDONLY); 1408 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot open source device");
|
| /PHP_5_3/ext/mssql/ |
| H A D | php_mssql.c | 7 | This source file is subject to version 3.01 of the PHP license, | 1213 char *source = NULL; local 1228 source = (char *)dbcolsource(mssql_ptr->link,i+1); 1229 if (source) { 1230 result->fields[i].column_source = estrdup(source);
|
| /PHP_5_3/ext/pdo_dblib/ |
| H A D | php_pdo_dblib_int.h | 7 | This source file is subject to version 3.01 of the PHP license, | 120 char *source; member in struct:__anon129
|
| /PHP_5_3/ext/soap/ |
| H A D | php_sdl.h | 7 | This source file is subject to version 3.01 of the PHP license, | 63 char *source; member in struct:_sdl
|
| /PHP_5_3/ext/tokenizer/ |
| H A D | tokenizer.c | 7 | This source file is subject to version 3.01 of the PHP license, | 40 ZEND_ARG_INFO(0, source) 161 /* {{{ proto array token_get_all(string source) 165 char *source = NULL; local 171 if (zend_parse_parameters(argc TSRMLS_CC, "s", &source, &source_len) == FAILURE) 174 ZVAL_STRINGL(&source_z, source, source_len, 1);
|
| /PHP_5_3/ext/xmlreader/ |
| H A D | php_xmlreader.c | 7 | This source file is subject to version 3.01 of the PHP license, | 229 char *_xmlreader_get_valid_file_path(char *source, char *resolved_path, int resolved_path_len TSRMLS_DC) { argument 236 escsource = xmlURIEscapeStr((xmlChar *)source, (xmlChar *)":"); 242 if (strncasecmp(source, "file:///",8) == 0) { 245 source += 8; 247 source += 7; 249 } else if (strncasecmp(source, "file://localhost/",17) == 0) { 252 source += 17; 254 source += 16; 259 file_dest = source; 277 _xmlreader_get_relaxNG(char *source, int source_len, int type, xmlRelaxNGValidityErrorFunc error_func, xmlRelaxNGValidityWarningFunc warn_func TSRMLS_DC) argument 496 char *source; local 870 char *source, *valid_file = NULL; local 959 char *source; local 1053 char *source, *uri = NULL, *encoding = NULL; local [all...] |
| /PHP_5_3/ext/xmlwriter/ |
| H A D | php_xmlwriter.c | 7 | This source file is subject to version 3.01 of the PHP license, | 604 static char *_xmlwriter_get_valid_file_path(char *source, char *resolved_path, int resolved_path_len TSRMLS_DC) { argument 611 escsource = xmlURIEscapeStr((xmlChar *)source, (xmlChar *) ":"); 617 if (strncasecmp(source, "file:///", 8) == 0) { 618 if (source[sizeof("file:///") - 1] == '\0') { 624 source += 8; 626 source += 7; 628 } else if (strncasecmp(source, "file://localhost/",17) == 0) { 629 if (source[sizeof("file://localhost/") - 1] == '\0') { 636 source 1750 char *source; local [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_constants.c | 7 | This source file is subject to version 2.00 of the Zend license, | 48 void zend_copy_constants(HashTable *target, HashTable *source) argument 52 zend_hash_copy(target, source, (copy_ctor_func_t) copy_zend_constant, &tmp_constant, sizeof(zend_constant));
|
| H A D | zend_hash.c | 7 | This source file is subject to version 2.00 of the Zend license, | 772 ZEND_API void zend_hash_copy(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size) argument 778 IS_CONSISTENT(source); 782 p = source->pListHead; 784 if (setTargetPointer && source->pInternalPointer == p) { 803 ZEND_API void _zend_hash_merge(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size, int overwrite ZEND_FILE_LINE_DC) argument 809 IS_CONSISTENT(source); 812 p = source->pListHead; 840 ZEND_API void zend_hash_merge_ex(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, uint size, merge_checker_func_t pMergeSource, void *pParam) argument 845 IS_CONSISTENT(source); [all...] |
| H A D | zend_ts_hash.c | 7 | This source file is subject to version 2.00 of the Zend license, | 267 ZEND_API void zend_ts_hash_copy(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size) argument 269 begin_read(source); 271 zend_hash_copy(TS_HASH(target), TS_HASH(source), pCopyConstructor, tmp, size); 273 end_read(source); 276 ZEND_API void zend_ts_hash_copy_to_hash(HashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size) argument 278 begin_read(source); 279 zend_hash_copy(target, TS_HASH(source), pCopyConstructor, tmp, size); 280 end_read(source); 283 ZEND_API void zend_ts_hash_merge(TsHashTable *target, TsHashTable *source, copy_ctor_func_ argument 292 zend_ts_hash_merge_ex(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, uint size, merge_checker_func_t pMergeSource, void *pParam) argument [all...] |
| /PHP_5_3/ext/phar/ |
| H A D | stream.c | 7 | This source file is subject to version 3.01 of the PHP license, | 864 phar_entry_info new, *source; local 870 php_error_docref(NULL TSRMLS_CC, E_WARNING, "phar error: cannot rename \"%s\" to \"%s\" from extracted phar archive, source has been deleted", url_from, url_to); 880 source = entry; 886 if (FAILURE == phar_copy_entry_fp(source, entry, &error TSRMLS_CC)) { 904 php_error_docref(NULL TSRMLS_CC, E_WARNING, "phar error: cannot rename \"%s\" to \"%s\" from extracted phar archive, source does not exist", url_from, url_to);
|