/php-src/ext/reflection/tests/ |
H A D | ReflectionClass_getDefaultProperties_001.phpt | 98 [pubC] => pubC in A 99 [protC] => protC in A 100 [privC] => privC in A 101 [pubA] => pubA in A 132 [pubC] => pubC in B 135 [pubB] => pubB in B 138 [pubA] => pubA in A 166 [pubC] => pubC in C 169 [pubB] => pubB in B 171 [pubA] => pubA in A [all …]
|
/php-src/ext/standard/tests/file/ |
H A D | flock_variation.phpt | 66 -- Inner iteration 0 in 0 -- 68 -- Inner iteration 1 in 0 -- 70 -- Inner iteration 2 in 0 -- 72 -- Inner iteration 3 in 0 -- 74 -- Inner iteration 4 in 0 -- 76 -- Inner iteration 5 in 0 -- 78 -- Inner iteration 6 in 0 -- 80 -- Inner iteration 7 in 0 -- 82 -- Inner iteration 8 in 0 -- 84 -- Inner iteration 9 in 0 -- [all …]
|
H A D | tempnam_variation4-0.phpt | 51 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 54 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 57 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 60 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 63 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 66 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 69 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 72 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 75 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 78 Notice: tempnam(): file created in the system's temporary directory in %s on line %d [all …]
|
H A D | tempnam_variation4-1.phpt | 51 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 54 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 57 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 60 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 63 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 66 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 69 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 72 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 75 Notice: tempnam(): file created in the system's temporary directory in %s on line %d 78 Notice: tempnam(): file created in the system's temporary directory in %s on line %d [all …]
|
H A D | fputcsv_variation6.phpt | 76 -- file opened in r+ -- 83 -- file opened in r+b -- 90 -- file opened in r+t -- 97 -- file opened in a+ -- 118 -- file opened in w+ -- 139 -- file opened in x+ -- 160 -- file opened in r+ -- 181 -- file opened in a+ -- 202 -- file opened in w+ -- 223 -- file opened in x+ -- [all …]
|
H A D | fputcsv_variation11.phpt | 73 -- file opened in r+ -- 80 -- file opened in r+b -- 87 -- file opened in r+t -- 94 -- file opened in a+ -- 115 -- file opened in w+ -- 136 -- file opened in x+ -- 157 -- file opened in r+ -- 178 -- file opened in a+ -- 199 -- file opened in w+ -- 220 -- file opened in x+ -- [all …]
|
H A D | fputcsv_variation5.phpt | 73 -- file opened in r+ -- 80 -- file opened in r+b -- 87 -- file opened in r+t -- 94 -- file opened in a+ -- 115 -- file opened in w+ -- 136 -- file opened in x+ -- 157 -- file opened in r+ -- 178 -- file opened in a+ -- 199 -- file opened in w+ -- 220 -- file opened in x+ -- [all …]
|
H A D | fputcsv_variation1.phpt | 73 -- file opened in r+ -- 80 -- file opened in r+b -- 87 -- file opened in r+t -- 94 -- file opened in a+ -- 101 -- file opened in a+b -- 115 -- file opened in w+ -- 136 -- file opened in x+ -- 157 -- file opened in r+ -- 178 -- file opened in a+ -- 199 -- file opened in w+ -- [all …]
|
H A D | fputcsv_variation7.phpt | 76 -- file opened in r+ -- 83 -- file opened in r+b -- 90 -- file opened in r+t -- 97 -- file opened in a+ -- 118 -- file opened in w+ -- 139 -- file opened in x+ -- 160 -- file opened in r+ -- 181 -- file opened in a+ -- 202 -- file opened in w+ -- 223 -- file opened in x+ -- [all …]
|
/php-src/ext/xsl/tests/ |
H A D | xslt010.phpt | 33 month-in-year : 12 36 week-in-year : 1 38 day-in-month : 31 39 day-of-week-in-month : 5 40 day-in-week : 2 51 month-in-year : 1 54 week-in-year : 5 57 day-of-week-in-month : 5 58 day-in-week : 6 69 month-in-year : 2 [all …]
|
H A D | xslt010_gt10129.phpt | 33 month-in-year : 12 36 week-in-year : 1 37 day-in-year : 365 38 day-in-month : 31 39 day-of-week-in-month : 5 40 day-in-week : 2 51 month-in-year : 1 54 week-in-year : 5 57 day-of-week-in-month : 5 58 day-in-week : 6 [all …]
|
/php-src/ext/dba/libcdb/ |
H A D | uint32.c | 28 void uint32_pack(char *out, uint32 in) in uint32_pack() argument 30 out[0] = in&0xff; in>>=8; in uint32_pack() 31 out[1] = in&0xff; in>>=8; in uint32_pack() 32 out[2] = in&0xff; in>>=8; in uint32_pack() 33 out[3] = in&0xff; in uint32_pack() 38 void uint32_unpack(const char *in, uint32 *out) in uint32_unpack() argument 40 *out = (((uint32)(unsigned char)in[3])<<24) | in uint32_unpack() 41 (((uint32)(unsigned char)in[2])<<16) | in uint32_unpack() 42 (((uint32)(unsigned char)in[1])<<8) | in uint32_unpack() 43 (((uint32)(unsigned char)in[0])); in uint32_unpack()
|
/php-src/ext/opcache/tests/jit/ |
H A D | add_011.phpt | 22 Warning: Undefined variable $u in %sadd_011.php on line 5 25 Warning: Undefined variable $u in %sadd_011.php on line 5 28 Warning: Undefined variable $u in %sadd_011.php on line 5 31 Warning: Undefined variable $u in %sadd_011.php on line 5 34 Warning: Undefined variable $u in %sadd_011.php on line 5 37 Warning: Undefined variable $u in %sadd_011.php on line 5 40 Warning: Undefined variable $u in %sadd_011.php on line 5 43 Warning: Undefined variable $u in %sadd_011.php on line 5 46 Warning: Undefined variable $u in %sadd_011.php on line 5 49 Warning: Undefined variable $u in %sadd_011.php on line 5 [all …]
|
/php-src/ext/soap/tests/interop/Round4/GroupG/ |
H A D | round4_groupG_dimedoc.inc | 4 function EchoBase64AsAttachment($in) { 5 return $in; 8 function EchoAttachmentAsBase64($in) { 9 return $in; 12 function EchoAttachment($in) { 13 return $in; 16 function EchoAttachments($in) { 17 return $in; 21 return $in; 24 function EchoUnrefAttachments($in) { [all …]
|
H A D | round4_groupG_dimerpc.inc | 4 function EchoBase64AsAttachment($in) { 5 return $in; 8 function EchoAttachmentAsBase64($in) { 9 return $in; 12 function EchoAttachment($in) { 13 return $in; 16 function EchoAttachments($in) { 17 return $in; 21 return $in; 24 function EchoUnrefAttachments($in) { [all …]
|
/php-src/ext/gd/libgd/ |
H A D | gdtest.c | 39 if (!in) in main() 46 rewind (in); in main() 65 if (!in) in main() 97 if (!in) in main() 132 if (!in) in main() 190 if (!in) in main() 209 if (!in) in main() 219 if (!in) in main() 236 if (!in) in main() 259 if (!in) in main() [all …]
|
/php-src/win32/ |
H A D | codepage.h | 64 #define php_win32_cp_utf8_to_w(in) php_win32_cp_conv_utf8_to_w(in, PHP_WIN32_CP_IGNORE_LEN, PHP_WIN… argument 66 #define php_win32_cp_cur_to_w(in) php_win32_cp_conv_cur_to_w(in, PHP_WIN32_CP_IGNORE_LEN, PHP_WIN32… argument 68 #define php_win32_cp_ascii_to_w(in) php_win32_cp_conv_ascii_to_w(in, PHP_WIN32_CP_IGNORE_LEN, PHP_W… argument 71 #define php_win32_cp_w_to_utf8(in) php_win32_cp_conv_w_to_utf8(in, PHP_WIN32_CP_IGNORE_LEN, PHP_WIN… argument 73 #define php_win32_cp_w_to_cur(in) php_win32_cp_conv_w_to_cur(in, PHP_WIN32_CP_IGNORE_LEN, PHP_WIN32… argument 89 ret = php_win32_cp_conv_ascii_to_w(in, in_len, out_len); in php_win32_cp_conv_any_to_w() 93 ret = php_win32_cp_conv_utf8_to_w(in, in_len, out_len); in php_win32_cp_conv_any_to_w() 110 ret = php_win32_cp_conv_cur_to_w(in, in_len, out_len); in php_win32_cp_conv_any_to_w() 115 #define php_win32_cp_any_to_w(in) php_win32_cp_conv_any_to_w(in, PHP_WIN32_CP_IGNORE_LEN, PHP_WIN32… argument 122 return php_win32_cp_conv_w_to_cur(in, in_len, out_len); in php_win32_cp_conv_w_to_any() [all …]
|
/php-src/ext/spl/tests/SplFileObject/ |
H A D | SplFileObject_fputcsv_variation12.phpt | 73 -- file opened in r+ -- 80 -- file opened in r+b -- 87 -- file opened in r+t -- 94 -- file opened in a+ -- 115 -- file opened in w+ -- 136 -- file opened in x+ -- 157 -- file opened in r+ -- 178 -- file opened in a+ -- 199 -- file opened in w+ -- 220 -- file opened in x+ -- [all …]
|
H A D | SplFileObject_fputcsv_variation6.phpt | 75 -- file opened in r+ -- 82 -- file opened in r+b -- 89 -- file opened in r+t -- 96 -- file opened in a+ -- 117 -- file opened in w+ -- 138 -- file opened in x+ -- 159 -- file opened in r+ -- 180 -- file opened in a+ -- 201 -- file opened in w+ -- 222 -- file opened in x+ -- [all …]
|
H A D | SplFileObject_fputcsv_variation7.phpt | 75 -- file opened in r+ -- 82 -- file opened in r+b -- 89 -- file opened in r+t -- 96 -- file opened in a+ -- 117 -- file opened in w+ -- 138 -- file opened in x+ -- 159 -- file opened in r+ -- 180 -- file opened in a+ -- 201 -- file opened in w+ -- 222 -- file opened in x+ -- [all …]
|
H A D | SplFileObject_fputcsv_variation8.phpt | 75 -- file opened in r+ -- 82 -- file opened in r+b -- 89 -- file opened in r+t -- 96 -- file opened in a+ -- 117 -- file opened in w+ -- 138 -- file opened in x+ -- 159 -- file opened in r+ -- 180 -- file opened in a+ -- 201 -- file opened in w+ -- 222 -- file opened in x+ -- [all …]
|
H A D | SplFileObject_fputcsv_variation11.phpt | 72 -- file opened in r+ -- 79 -- file opened in r+b -- 86 -- file opened in r+t -- 93 -- file opened in a+ -- 100 -- file opened in a+b -- 114 -- file opened in w+ -- 135 -- file opened in x+ -- 156 -- file opened in r+ -- 177 -- file opened in a+ -- 198 -- file opened in w+ -- [all …]
|
H A D | SplFileObject_fputcsv_variation5.phpt | 72 -- file opened in r+ -- 79 -- file opened in r+b -- 86 -- file opened in r+t -- 93 -- file opened in a+ -- 100 -- file opened in a+b -- 114 -- file opened in w+ -- 135 -- file opened in x+ -- 156 -- file opened in r+ -- 177 -- file opened in a+ -- 198 -- file opened in w+ -- [all …]
|
H A D | SplFileObject_fputcsv_variation1.phpt | 71 -- file opened in r+ -- 78 -- file opened in r+b -- 85 -- file opened in r+t -- 92 -- file opened in a+ -- 99 -- file opened in a+b -- 113 -- file opened in w+ -- 134 -- file opened in x+ -- 155 -- file opened in r+ -- 176 -- file opened in a+ -- 197 -- file opened in w+ -- [all …]
|
/php-src/Zend/tests/ |
H A D | callable_self_parent_static_deprecation.phpt | 71 Deprecated: Use of "self" in callables is deprecated in %s on line %d 74 Deprecated: Use of "parent" in callables is deprecated in %s on line %d 77 Deprecated: Use of "static" in callables is deprecated in %s on line %d 80 Deprecated: Use of "self" in callables is deprecated in %s on line %d 83 Deprecated: Use of "parent" in callables is deprecated in %s on line %d 86 Deprecated: Use of "static" in callables is deprecated in %s on line %d 115 Deprecated: Use of "self" in callables is deprecated in %s on line %d 124 Deprecated: Use of "self" in callables is deprecated in %s on line %d 159 Deprecated: Use of "self" in callables is deprecated in %s on line %d 168 Deprecated: Use of "self" in callables is deprecated in %s on line %d [all …]
|