Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 2545) sorted by relevance

12345678910>>...102

/php-src/ext/reflection/tests/
H A DReflectionClass_getDefaultProperties_001.phpt98 [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 Dflock_variation.phpt66 -- 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 Dtempnam_variation4-0.phpt51 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 Dtempnam_variation4-1.phpt51 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 Dfputcsv_variation12.phpt74 -- file opened in r+ --
81 -- file opened in r+b --
88 -- file opened in r+t --
95 -- file opened in a+ --
116 -- file opened in w+ --
137 -- file opened in x+ --
158 -- file opened in r+ --
179 -- file opened in a+ --
200 -- file opened in w+ --
221 -- file opened in x+ --
[all …]
H A Dfputcsv_variation6.phpt76 -- 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 Dfputcsv_variation11.phpt73 -- 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 Dfputcsv_variation5.phpt73 -- 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 Dfputcsv_variation1.phpt73 -- 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 …]
/php-src/ext/xsl/tests/
H A Dxslt010.phpt33 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 Dxslt010_gt10129.phpt32 month-in-year : 12
35 week-in-year : 1
36 day-in-year : 365
37 day-in-month : 31
38 day-of-week-in-month : 5
39 day-in-week : 2
50 month-in-year : 1
53 week-in-year : 5
56 day-of-week-in-month : 5
57 day-in-week : 6
[all …]
/php-src/ext/dba/libcdb/
H A Duint32.c28 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 Dadd_011.phpt22 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 Dround4_groupG_dimedoc.inc4 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 Dround4_groupG_dimerpc.inc4 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 Dgdtest.c39 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 Dcodepage.h64 #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 DSplFileObject_fputcsv_variation12.phpt71 -- 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 …]
H A DSplFileObject_fputcsv_variation6.phpt73 -- 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 DSplFileObject_fputcsv_variation7.phpt73 -- 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 DSplFileObject_fputcsv_variation8.phpt73 -- 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 DSplFileObject_fputcsv_variation11.phpt70 -- file opened in r+ --
77 -- file opened in r+b --
84 -- file opened in r+t --
91 -- file opened in a+ --
98 -- file opened in a+b --
112 -- file opened in w+ --
133 -- file opened in x+ --
154 -- file opened in r+ --
175 -- file opened in a+ --
196 -- file opened in w+ --
[all …]
H A DSplFileObject_fputcsv_variation5.phpt70 -- file opened in r+ --
77 -- file opened in r+b --
84 -- file opened in r+t --
91 -- file opened in a+ --
98 -- file opened in a+b --
112 -- file opened in w+ --
133 -- file opened in x+ --
154 -- file opened in r+ --
175 -- file opened in a+ --
196 -- file opened in w+ --
[all …]
H A DSplFileObject_fputcsv_variation1.phpt70 -- file opened in r+ --
77 -- file opened in r+b --
84 -- file opened in r+t --
91 -- file opened in a+ --
98 -- file opened in a+b --
112 -- file opened in w+ --
133 -- file opened in x+ --
154 -- file opened in r+ --
175 -- file opened in a+ --
196 -- file opened in w+ --
[all …]
/php-src/Zend/tests/
H A Dcallable_self_parent_static_deprecation.phpt71 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 …]

Completed in 79 milliseconds

12345678910>>...102