Home
last modified time | relevance | path

Searched refs:source (Results 26 – 50 of 215) sorted by relevance

123456789

/PHP-5.5/ext/zip/lib/
H A Dzip_add_dir.c51 struct zip_source *source; in zip_add_dir() local
76 if ((source=zip_source_buffer(za, NULL, 0, 0)) == NULL) { in zip_add_dir()
81 ret = _zip_replace(za, -1, s ? s : name, source); in zip_add_dir()
85 zip_source_free(source); in zip_add_dir()
/PHP-5.5/ext/xml/tests/
H A Dxml_parser_create_ns_variation1.phpt110 Warning: xml_parser_create_ns(): unsupported source encoding "0" in %s on line %d
115 Warning: xml_parser_create_ns(): unsupported source encoding "1" in %s on line %d
120 Warning: xml_parser_create_ns(): unsupported source encoding "12345" in %s on line %d
125 Warning: xml_parser_create_ns(): unsupported source encoding "-2345" in %s on line %d
130 Warning: xml_parser_create_ns(): unsupported source encoding "10.5" in %s on line %d
135 Warning: xml_parser_create_ns(): unsupported source encoding "-10.5" in %s on line %d
150 Warning: xml_parser_create_ns(): unsupported source encoding "0.5" in %s on line %d
186 Warning: xml_parser_create_ns(): unsupported source encoding "1" in %s on line %d
194 Warning: xml_parser_create_ns(): unsupported source encoding "1" in %s on line %d
208 Warning: xml_parser_create_ns(): unsupported source encoding "string" in %s on line %d
[all …]
H A Dxml_parser_create_variation1.phpt110 Warning: xml_parser_create(): unsupported source encoding "0" in %s on line %d
115 Warning: xml_parser_create(): unsupported source encoding "1" in %s on line %d
120 Warning: xml_parser_create(): unsupported source encoding "12345" in %s on line %d
125 Warning: xml_parser_create(): unsupported source encoding "-2345" in %s on line %d
130 Warning: xml_parser_create(): unsupported source encoding "10.5" in %s on line %d
135 Warning: xml_parser_create(): unsupported source encoding "-10.5" in %s on line %d
150 Warning: xml_parser_create(): unsupported source encoding "0.5" in %s on line %d
186 Warning: xml_parser_create(): unsupported source encoding "1" in %s on line %d
194 Warning: xml_parser_create(): unsupported source encoding "1" in %s on line %d
208 Warning: xml_parser_create(): unsupported source encoding "string" in %s on line %d
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dcopy_variation11.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
14 echo "*** Test copy() function: Trying to create a copy of source file as a dir ***\n";
23 echo "Size of source before copy operation => ";
24 var_dump( filesize($file) ); //size of source before copy
42 var_dump( filesize($file) ); //size of source after copy
55 *** Test copy() function: Trying to create a copy of source file as a dir ***
56 Size of source before copy operation => int(300)
H A Dcopy_variation5-win32.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
35 echo "Size of the source file before copy operation => ";
39 echo "\n-- Now applying copy() on source file to create copies --";
56 echo "Size of source file => ";
84 Size of the source file before copy operation => int(1500)
86 -- Now applying copy() on source file to create copies --
91 Size of source file => int(1500)
98 Size of source file => int(1500)
105 Size of source file => int(1500)
H A Dcopy_variation3-win32.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
36 echo "Size of the source file before copy operation => ";
40 echo "\n-- Now applying copy() on source file to create copies --";
58 echo "Size of source file => ";
81 Size of the source file before copy operation => int(1500)
83 -- Now applying copy() on source file to create copies --
88 Size of source file => int(1500)
95 Size of source file => int(1500)
H A Dcopy_variation17.phpt2 Test copy() function: usage variations - wildcard chars in source
5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
10 /* Test copy(): Trying to copy the source file which is given with the combination of wild-card cha…
14 echo "*** Test copy() function: With source file names containing wild-card chars ***\n";
56 *** Test copy() function: With source file names containing wild-card chars ***
H A Dcopy_variation4.phpt13 /* Prototype: bool copy ( string $source, string $dest );
14 Description: Makes a copy of the file source to dest.
42 echo "Size of the source file before copy operation => ";
65 echo "Size of source file => ";
99 Size of source file => int(1500)
111 Size of source file => int(1500)
127 Size of source file => int(1500)
141 Size of source file => int(1500)
153 Size of source file => int(1500)
163 Size of source file => int(1500)
[all …]
H A Dcopy_variation7.phpt11 /* Prototype: bool copy ( string $source, string $dest );
12 Description: Makes a copy of the file source to dest.
32 echo "Size of source files => \n";
38 echo "-- Now applying copy() on source link to create copies --\n";
70 Size of source files =>
73 -- Now applying copy() on source link to create copies --
H A Dcopy_basic.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 * Description: Makes a copy of the file source to dest.
10 echo "*** Testing copy() function: to copy file from source to destination --\n";
46 *** Testing copy() function: to copy file from source to destination --
/PHP-5.5/ext/tokenizer/tests/
H A Dtoken_get_all_variation7.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different increment/decrement operators to test them for token
18 echo "*** Testing token_get_all() : 'source' string with different increment/decrement operators **…
21 $source = '<?php
27 var_dump( token_get_all($source));
32 *** Testing token_get_all() : 'source' string with different increment/decrement operators ***
H A Dtoken_get_all_variation6.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different bitwise operators to test them for token
18 echo "*** Testing token_get_all() : 'source' string with different bitwise operators ***\n";
21 $source = '<?php
28 var_dump( token_get_all($source));
33 *** Testing token_get_all() : 'source' string with different bitwise operators ***
H A Dtoken_get_all_variation2.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different arithmetic operators to test them for token
18 echo "*** Testing token_get_all() : 'source' string with different arithmetic operators ***\n";
21 $source = array (
27 for($count = 0; $count < count($source); $count++) {
29 var_dump( token_get_all($source[$count]));
34 *** Testing token_get_all() : 'source' string with different arithmetic operators ***
H A Dtoken_get_all_error.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
20 $source = '<?php ?>';
22 var_dump( token_get_all($source, $extra_arg));
H A Dtoken_get_all_variation1.phpt2 Test token_get_all() function : usage variations - unexpected values for 'source' argument
7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing different scalar/non-scalar values in place of 'source' argument
17 echo "*** Testing token_get_all() : unexpected values for 'source' argument ***\n";
35 // different scalar/nonscalar values for 'source'
94 *** Testing token_get_all() : unexpected values for 'source' argument ***
H A Dtoken_get_all_variation9.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different style of comments
19 echo "*** Testing token_get_all() : 'source' string with different comments ***\n";
23 $source = '<?php
42 var_dump( token_get_all($source));
47 *** Testing token_get_all() : 'source' string with different comments ***
H A Dtoken_get_all_variation3.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different logical operators to test them for tokens
21 echo "*** Testing token_get_all() : 'source' string with different logical operators ***\n";
24 $source = array (
31 for($count = 0; $count < count($source); $count++) {
33 var_dump( token_get_all($source[$count]));
39 *** Testing token_get_all() : 'source' string with different logical operators ***
H A Dtoken_get_all_variation12.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP language tokens
26 $source = "<?php
29 var_dump( token_get_all($source));
33 $source = '<?php
42 var_dump( token_get_all($source));
46 $source = '<?php
50 var_dump( token_get_all($source));
/PHP-5.5/ext/sockets/tests/
H A Dmcast_ipv4_recv.phpt84 echo "blocking source\n";
88 "source" => $sblock,
97 echo "unblocking source\n";
101 "source" => $sblock,
120 echo "joining source group\n";
124 "source" => $sblock,
135 "source" => $sblock,
175 blocking source
180 unblocking source
189 joining source group
[all …]
/PHP-5.5/ext/intl/tests/
H A Duconverter_oop_callback.phpt9 * Called during conversion from source encoding to internal UChar representation
11 public function toUCallback($reason, $source, $codeUnits, &$error) {
13 return parent::toUCallback($reason, $source, $codeUnits, $error);
19 public function fromUCallback($reason, $source, $codePoint, &$error) {
21 return parent::fromUCallback($reason, $source, $codePoint, $error);
/PHP-5.5/Zend/
H A Dzend_ts_hash.c269 begin_read(source); in zend_ts_hash_copy()
271 zend_hash_copy(TS_HASH(target), TS_HASH(source), pCopyConstructor, tmp, size); in zend_ts_hash_copy()
273 end_read(source); in zend_ts_hash_copy()
278 begin_read(source); in zend_ts_hash_copy_to_hash()
279 zend_hash_copy(target, TS_HASH(source), pCopyConstructor, tmp, size); in zend_ts_hash_copy_to_hash()
280 end_read(source); in zend_ts_hash_copy_to_hash()
285 begin_read(source); in zend_ts_hash_merge()
287 zend_hash_merge(TS_HASH(target), TS_HASH(source), pCopyConstructor, tmp, size, overwrite); in zend_ts_hash_merge()
289 end_read(source); in zend_ts_hash_merge()
294 begin_read(source); in zend_ts_hash_merge_ex()
[all …]
/PHP-5.5/ext/sockets/
H A Dmulticast.h90 struct sockaddr *source,
99 struct sockaddr *source,
108 struct sockaddr *source,
117 struct sockaddr *source,
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug36226-2.phpt79 public $source;
83 …function __construct($version, $activityId, $messageId, $source, $logOnEvent=NULL, $logOffEvent=NU…
87 $this->source = $source;
96 …ENV:Body><ns1:ivrEvents version="1.0" activityId="101" messageId="12345" source="IVR"><ns1:logOffE…
105 ["source"]=>
/PHP-5.5/ext/xmlreader/
H A Dphp_xmlreader.c246 source += 8; in _xmlreader_get_valid_file_path()
248 source += 7; in _xmlreader_get_valid_file_path()
253 source += 17; in _xmlreader_get_valid_file_path()
255 source += 16; in _xmlreader_get_valid_file_path()
260 file_dest = source; in _xmlreader_get_valid_file_path()
263 if (!VCWD_REALPATH(source, resolved_path) && !expand_filepath(source, resolved_path TSRMLS_CC)) { in _xmlreader_get_valid_file_path()
496 char *source; in php_xmlreader_set_relaxng_schema() local
511 if (source) { in php_xmlreader_set_relaxng_schema()
957 char *source; in PHP_METHOD() local
1263 ZEND_ARG_INFO(0, source)
[all …]
/PHP-5.5/Zend/tests/
H A Dbug54585.phpt7 function testing($source) {
8 unset($source[$cos]);

Completed in 55 milliseconds

123456789