Home
last modified time | relevance | path

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

12345

/php-src/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;
20 c1::$a3[] = 1;
25 var_dump(c1::$a1);
26 var_dump(c1::$a2);
27 var_dump(c1::$a3);
H A Dbug76860_2.phpt16 public static $c = "c1";
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_052.phpt10 public Foo\C $c1;
26 ["c1"]=>
/php-src/Zend/
H A Dzend_operators.c3180 int c1, c2; in zend_binary_strcasecmp() local
3190 if (c1 != c2) { in zend_binary_strcasecmp()
3191 return c1 - c2; in zend_binary_strcasecmp()
3202 int c1, c2; in zend_binary_strncasecmp() local
3211 if (c1 != c2) { in zend_binary_strncasecmp()
3212 return c1 - c2; in zend_binary_strncasecmp()
3223 int c1, c2; in zend_binary_strcasecmp_l() local
3233 if (c1 != c2) { in zend_binary_strcasecmp_l()
3234 return c1 - c2; in zend_binary_strcasecmp_l()
3245 int c1, c2; in zend_binary_strncasecmp_l() local
[all …]
H A Dzend_strtod.c1615 int c1, havedig, udx0, xshift; local
1628 if ((c1 = hexdig[c]))
1629 c = c1 & 0xf;
/php-src/build/
H A Dconfig.guess830 GUESS=c1-convex-bsd
H A Dconfig.sub275 convex-c1)
276 basic_machine=c1-convex
/php-src/ext/ctype/tests/
H A Dctype_alnum_basic.phpt11 $c1 = 'abcXYZ';
14 var_dump(ctype_alnum($c1));
H A Dctype_alpha_basic.phpt11 $c1 = 'abcXYZ';
14 var_dump(ctype_alpha($c1));
H A Dctype_cntrl_basic.phpt11 $c1 = "\r\n\t";
14 var_dump(ctype_cntrl($c1));
H A Dctype_digit_basic.phpt11 $c1 = '1234';
14 var_dump(ctype_digit($c1));
H A Dctype_graph_basic.phpt11 $c1 = 'helloWorld!';
14 var_dump(ctype_graph($c1));
H A Dctype_lower_basic.phpt11 $c1 = 'helloworld';
14 var_dump(ctype_lower($c1));
H A Dctype_print_basic.phpt11 $c1 = "Hello, World!";
14 var_dump(ctype_print($c1));
H A Dctype_punct_basic.phpt11 $c1 = '@!$*';
14 var_dump(ctype_punct($c1));
H A Dctype_space_basic.phpt11 $c1 = " \t\r\n";
12 var_dump(ctype_space($c1));
H A Dctype_upper_basic.phpt11 $c1 = 'HELLOWORLD';
14 var_dump(ctype_upper($c1));
H A Dctype_xdigit_basic.phpt10 $c1 = 'abcdefABCDEF0123456789';
13 var_dump(ctype_xdigit($c1));
/php-src/ext/curl/tests/
H A Dbug79199.phpt9 $c1 = curl_init();
10 $c2 = curl_copy_handle($c1);
12 curl_close($c1);
/php-src/ext/date/lib/
H A Ddow.c50 timelib_sll c1, y1, m1, dow; in timelib_day_of_week_ex() local
55 c1 = century_value(positive_mod(y, 400) / 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.c262 int c1, c2; in timelib_strcasecmp() local
270 c1 = timelib_tolower(*(unsigned char *)s1++); in timelib_strcasecmp()
272 if (c1 != c2) { in timelib_strcasecmp()
273 return c1 - c2; in timelib_strcasecmp()
285 int c1, c2; in timelib_strncasecmp() local
292 c1 = timelib_tolower(*(unsigned char *)s1++); in timelib_strncasecmp()
294 if (c1 != c2) { in timelib_strncasecmp()
295 return c1 - c2; in timelib_strncasecmp()
/php-src/ext/dom/tests/
H A Ddom001.phpt198 <row><entry>a1</entry><entry morerows="1">b1</entry><entry>c1</entry></row>
257 <row><entry>a1</entry><entry morerows="1">b1</entry><entry>c1</entry></row>
H A Ddom007.phpt23 <course cid="c1">

Completed in 48 milliseconds

12345