Home
last modified time | relevance | path

Searched refs:c1 (Results 1 – 25 of 231) sorted by path

12345678910

/PHP-7.4/Zend/tests/
H A Dbug30702.phpt12 public $c1=bar::C1;
27 ["c1"]=>
H A Dbug55825.phpt12 $c1 = new C;
13 $c1->inc();
14 $c1->inc();
H A Dbug69017.phpt6 class c1
17 c1::$a1[] = 1;
18 c1::$a2[] = 1;
19 c1::$a3[] = 1;
21 var_dump(c1::$a1);
22 var_dump(c1::$a2);
23 var_dump(c1::$a3);
H A Dbug76860_2.phpt16 public static $c = "c1";
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_052.phpt10 public Foo\C $c1;
26 ["c1"]=>
/PHP-7.4/Zend/
H A Dzend_operators.c2756 int c1, c2; in zend_binary_strcasecmp() local
2766 if (c1 != c2) { in zend_binary_strcasecmp()
2767 return c1 - c2; in zend_binary_strcasecmp()
2778 int c1, c2; in zend_binary_strncasecmp() local
2787 if (c1 != c2) { in zend_binary_strncasecmp()
2788 return c1 - c2; in zend_binary_strncasecmp()
2799 int c1, c2; in zend_binary_strcasecmp_l() local
2809 if (c1 != c2) { in zend_binary_strcasecmp_l()
2810 return c1 - c2; in zend_binary_strcasecmp_l()
2821 int c1, c2; in zend_binary_strncasecmp_l() local
[all …]
H A Dzend_strtod.c1629 int c1, havedig, udx0, xshift; local
1642 if ((c1 = hexdig[c]))
1643 c = c1 & 0xf;
/PHP-7.4/build/
H A Dconfig.guess830 GUESS=c1-convex-bsd
/PHP-7.4/ext/ctype/tests/
H A Dctype_alnum_basic.phpt16 $c1 = 'abcXYZ';
19 var_dump(ctype_alnum($c1));
H A Dctype_alpha_basic.phpt16 $c1 = 'abcXYZ';
19 var_dump(ctype_alpha($c1));
H A Dctype_cntrl_basic.phpt16 $c1 = "\r\n\t";
19 var_dump(ctype_cntrl($c1));
H A Dctype_digit_basic.phpt16 $c1 = '1234';
19 var_dump(ctype_digit($c1));
H A Dctype_graph_basic.phpt16 $c1 = 'helloWorld!';
19 var_dump(ctype_graph($c1));
H A Dctype_lower_basic.phpt16 $c1 = 'helloworld';
19 var_dump(ctype_lower($c1));
H A Dctype_print_basic.phpt16 $c1 = "Hello, World!";
19 var_dump(ctype_print($c1));
H A Dctype_punct_basic.phpt17 $c1 = '@!$*';
20 var_dump(ctype_punct($c1));
H A Dctype_space_basic.phpt16 $c1 = " \t\r\n";
17 var_dump(ctype_space($c1));
H A Dctype_upper_basic.phpt16 $c1 = 'HELLOWORLD';
19 var_dump(ctype_upper($c1));
H A Dctype_xdigit_basic.phpt15 $c1 = 'abcdefABCDEF0123456789';
18 var_dump(ctype_xdigit($c1));
/PHP-7.4/ext/curl/tests/
H A Dbug79199.phpt11 $c1 = curl_init();
12 $c2 = curl_copy_handle($c1);
14 curl_close($c1);
/PHP-7.4/ext/date/lib/
H A Ddow.c50 timelib_sll c1, y1, m1, dow; in timelib_day_of_week_ex() local
55 c1 = century_value(y / 100); in timelib_day_of_week_ex()
58 dow = positive_mod((c1 + y1 + m1 + (y1 / 4) + d), 7); in timelib_day_of_week_ex()
H A Dtimelib.c237 int c1, c2; in timelib_strcasecmp() local
245 c1 = timelib_tolower(*(unsigned char *)s1++); in timelib_strcasecmp()
247 if (c1 != c2) { in timelib_strcasecmp()
248 return c1 - c2; in timelib_strcasecmp()
260 int c1, c2; in timelib_strncasecmp() local
267 c1 = timelib_tolower(*(unsigned char *)s1++); in timelib_strncasecmp()
269 if (c1 != c2) { in timelib_strncasecmp()
270 return c1 - c2; in timelib_strncasecmp()
/PHP-7.4/ext/dom/tests/
H A Ddom001.phpt203 <row><entry>a1</entry><entry morerows="1">b1</entry><entry>c1</entry></row>
264 <row><entry>a1</entry><entry morerows="1">b1</entry><entry>c1</entry></row>
H A Ddom007.phpt25 <course cid="c1">
H A Ddom_test.inc14 <row><entry>a1</entry><entry morerows='1'>b1</entry><entry>c1</entry></row>

Completed in 53 milliseconds

12345678910