Home
last modified time | relevance | path

Searched refs:c (Results 176 – 200 of 3925) sorted by relevance

12345678910>>...157

/PHP-7.4/ext/session/tests/
H A D019.phpt17 public $c;
18 function __construct($c) {
19 $this->c = $c;
22 $this->c++;
52 ["c"]=>
57 ["c"]=>
64 ["c"]=>
69 ["c"]=>
/PHP-7.4/Zend/tests/
H A Dadd_001.phpt9 $c = $a + $b;
10 var_dump($c);
15 $c = $a + $b;
16 var_dump($c);
21 $c = $a + $b;
22 var_dump($c);
25 var_dump($c);
28 var_dump($c);
H A Dbug70685.phpt8 $c = (new ReflectionMethod('SplStack', 'count'))->getClosure(new SplStack);
9 $c = $c->bindTo(new cls);
10 var_dump($c);
12 $c = (new ReflectionMethod('SplStack', 'count'))->getClosure(new SplStack);
13 $c = $c->bindTo(new SplStack, 'cls');
14 var_dump($c);
H A Ddiv_001.phpt11 $c = $d2 / $d1;
12 var_dump($c);
17 $c = $d2 / $d1;
18 var_dump($c);
23 $c = $d2 / $d1;
24 var_dump($c);
H A Dternary_associativity.phpt26 Deprecated: Unparenthesized `a ? b : c ? d : e` is deprecated. Use either `(a ? b : c) ? d : e` or …
28 Deprecated: Unparenthesized `a ?: b ? c : d` is deprecated. Use either `(a ?: b) ? c : d` or `a ?: …
30 Deprecated: Unparenthesized `a ? b : c ?: d` is deprecated. Use either `(a ? b : c) ?: d` or `a ? b…
H A Dlist_005.phpt8 list($a, $b, $c) = $str;
10 var_dump($a, $b, $c);
16 list($a, $b, $c) = $int;
18 var_dump($a, $b, $c);
24 list($a, $b, $c) = $obj;
26 var_dump($a, $b, $c);
32 list($a, $b, $c) = $arr;
34 var_dump($a, $b, $c);
/PHP-7.4/ext/standard/tests/file/
H A Dfopen_variation10-win32.phpt10 if (!is_writable('c:\\')) {
29 mkdir('c:\\'.$rootdir);
33 $paths = array('c:\\',
34 'c:',
35 'c',
40 'c:\\/',
90 --c:\--
93 --c:--
96 --c--
120 --c:adir--
[all …]
H A Dfopen_variation11-win32.phpt9 if (!is_writable('c:\\')) {
28 mkdir('c:\\'.$rootdir);
32 $paths = array('c:\\',
33 'c:',
34 'c',
39 'c:\\/',
88 --c:\--
91 --c:--
94 --c--
118 --c:adir--
[all …]
/PHP-7.4/ext/soap/
H A Dconfig.m414 …PHP_NEW_EXTENSION(soap, soap.c php_encoding.c php_http.c php_packet_soap.c php_schema.c php_sdl.c
H A Dconfig.w3211 …EXTENSION('soap', 'soap.c php_encoding.c php_http.c php_packet_soap.c php_schema.c php_sdl.c php_x…
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug28325.phpt9 public $c;
11 class c {
16 $a->b->c = new c();
17 $a->b->c->d = $a;
24 ["c"]=>
25 object(c)#%d (1) {
H A Dbug64146.phpt23 public function __construct($c)
25 $this->b = new C($c);
41 public $c;
43 public function __construct($c)
45 $this->c = $c;
51 print $a->a[0]->b->c . "\n";
52 print $a->a[1]->b->c . "\n";
/PHP-7.4/ext/mbstring/libmbfl/filters/
H A Dmbfilter_qprint.c80 filter->cache = c; in mbfl_filt_conv_qprintenc()
85 filter->cache = c; in mbfl_filt_conv_qprintenc()
143 return c; in mbfl_filt_conv_qprintenc()
183 if (hex2code_map[c & 0xff] >= 0) { in mbfl_filt_conv_qprintdec()
184 filter->cache = c; in mbfl_filt_conv_qprintdec()
186 } else if (c == 0x0d) { /* soft line feed */ in mbfl_filt_conv_qprintdec()
197 m = hex2code_map[c & 0xff]; in mbfl_filt_conv_qprintdec()
201 n = c; in mbfl_filt_conv_qprintdec()
209 if (c != 0x0a) { /* LF */ in mbfl_filt_conv_qprintdec()
215 if (c == 0x3d) { /* '=' */ in mbfl_filt_conv_qprintdec()
[all …]
/PHP-7.4/ext/date/
H A Dconfig0.m48 timelib_sources="lib/astro.c lib/dow.c lib/parse_date.c lib/parse_tz.c
9 … lib/timelib.c lib/tm2unixtime.c lib/unixtime2tm.c lib/parse_iso_intervals.c lib/interval.c"
11 PHP_NEW_EXTENSION(date, php_date.c $timelib_sources, no,, $PHP_DATE_CFLAGS)
/PHP-7.4/ext/gd/libgd/
H A Dgd_io.c50 (ctx->putC) (ctx, c); in gdPutC()
144 unsigned int c; in gdGetIntLSB() local
147 c = (ctx->getC) (ctx); in gdGetIntLSB()
148 if (c == EOF) { in gdGetIntLSB()
151 r |= (c << 24); in gdGetIntLSB()
155 if (c == EOF) { in gdGetIntLSB()
158 r |= (c << 24); in gdGetIntLSB()
162 if (c == EOF) { in gdGetIntLSB()
165 r |= (c << 24); in gdGetIntLSB()
169 if (c == EOF) { in gdGetIntLSB()
[all …]
H A Dgd_intern.h6 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c))) argument
10 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c))) argument
/PHP-7.4/ext/hash/
H A Dhash_tiger.c38 cc = c;
41 c ^= x; \
60 round(b,c,a,x7,mul)
83 c += cc;
87 pass(a,b,c,5) \
89 pass(c,a,b,7) \
91 pass(b,c,a,9) \
94 pass(a,b,c,9) \
95 tmpa=a; a=c; c=b; b=tmpa; \
125 c = state[2]; \
[all …]
H A Dhash_sha.c177 #define FF(a, b, c, d, e, w) { \ argument
182 #define GG(a, b, c, d, e, w) { \ argument
187 #define HH(a, b, c, d, e, w) { \ argument
192 #define II(a, b, c, d, e, w) { \ argument
226 FF(a, b, c, d, e, x[0]); /* 1 */ in SHA1Transform()
227 FF(e, a, b, c, d, x[1]); /* 2 */ in SHA1Transform()
315 state[2] += c; in SHA1Transform()
499 d = c; c = b; b = a; a = T1 + T2; in SHA256Transform()
504 state[2] += c; in SHA256Transform()
809 d = c; c = b; b = a; a = T1 + T2; in SHA512Transform()
[all …]
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_convert.c168 c = *posix; in convert_posix()
316 *p++ = c; in convert_posix()
340 if (c < 128 && strchr(pcre2_escaped_literals, c) != NULL) in convert_posix()
484 PCRE2_UCHAR c; in convert_glob_parse_class() local
493 if (c < CHAR_a || c > CHAR_z) break; in convert_glob_parse_class()
549 case 4: return c == CHAR_HT || c == CHAR_SPACE; in convert_glob_char_in_class()
558 case 13: return isalnum(c) || c == CHAR_UNDERSCORE; in convert_glob_char_in_class()
730 prev_c = c; in convert_glob_parse_range()
734 c == CHAR_BACKSLASH || c == CHAR_MINUS) in convert_glob_parse_range()
796 PCRE2_UCHAR c; in convert_glob() local
[all …]
H A Dpcre2_study.c57 #define SET_BIT(c) re->start_bitmap[(c)/8] |= (1u << ((c)&7)) argument
805 if (c >= 0xc0) GETUTF8INC(c, p); in set_table_bit()
819 c = UCD_OTHERCASE(c); in set_table_bit()
827 else if (c < 256) SET_BIT(c); in set_table_bit()
869 for (c = 0; c < table_limit; c++) in set_type_bits()
873 for (c = 128; c < 256; c++) in set_type_bits()
910 for (c = 0; c < table_limit; c++) in set_nottype_bits()
913 if (table_limit != 32) for (c = 24; c < 32; c++) re->start_bitmap[c] = 0xff; in set_nottype_bits()
1597 for (c = 0; c < 16; c++) re->start_bitmap[c] |= classmap[c]; in set_start_bits()
1598 for (c = 128; c < 256; c++) in set_start_bits()
[all …]
/PHP-7.4/ext/gd/tests/
H A Dcopypalette.phpt19 $c = imagecolorsforindex($im2, $i);
20 if ($c['red']!=$i || $c['green']!=$i || $c['blue']!=$i) {
34 $c = imagecolorsforindex($im2, 0);
35 if ($c['red']!=0 || $c['green']!=0 || $c['blue']!=0 || $c['alpha']!=100) {
/PHP-7.4/tests/lang/
H A DforeachLoop.004.phpt6 $a=array("a", "b", "c");
15 $a=array("a", "b", "c");
34 string(1) "c"
42 string(1) "c"
46 string(1) "c"
62 string(1) "c"
70 string(1) "c"
75 string(1) "c"
/PHP-7.4/ext/oci8/tests/
H A Dbind_sqltchr_1.phpt23 oci8_test_sql_execute($c, $stmtarray);
25 function check_col($c, $colname, $id)
43 check_col($c, 'varchar2_t10', 241);
53 check_col($c, 'number_t', 242);
62 check_col($c, 'number_t', 243);
71 check_col($c, 'number_t', 244);
80 check_col($c, 'number_t', 245);
89 check_col($c, 'number_t', 246);
98 check_col($c, 'number_t', 247);
107 check_col($c, 'number_t92', 248);
[all …]
/PHP-7.4/ext/standard/tests/strings/
H A Dbug47322.phpt6 sscanf(":59:58","%s:%d:%f", $a, $b, $c);
7 echo "[$a][$b][$c]\n";
9 sscanf("15:01:58.2","%d:%f:%f", $a, $b, $c);
10 echo "[$a][$b][$c]\n";
12 sscanf("15.1111::foo","%f:%d:%s", $a, $b, $c);
13 echo "[$a][$b][$c]\n";
/PHP-7.4/tests/classes/
H A Dmethod_call_variation_001.phpt13 $c = new C;
14 $c->functions[0] = 'foo';
15 $c->functions[1][2][3][4] = 'foo';
17 $c->$name[0](1, 2);
18 $c->$name[1][2][3][4](3, 4);
20 $c->functions[0](5, 6);
21 $c->functions[1][2][3][4](7, 8);

Completed in 127 milliseconds

12345678910>>...157