Home
last modified time | relevance | path

Searched refs:c (Results 501 – 525 of 4053) sorted by relevance

1...<<21222324252627282930>>...163

/PHP-7.4/ext/standard/tests/array/
H A Darray_chunk_variation22.phpt5 $array = array ("b" => 1, "c" => 2);
19 ["c"]=>
48 ["c"]=>
80 ["c"]=>
/PHP-7.4/Zend/tests/
H A Dbug43200.phpt14 abstract class c {
18 class x extends c implements a, b {
26 Class [ <user> class x extends c implements a, b ] {
46 Method [ <user, inherits c, prototype a> public method bar ] {
H A Dbug72101.phpt35 public function bar(&$a, &$b, $c) {
36 Legacy::bar($a, $b, $c);
38 public function callback(&$a, &$b, $c) {
51 public function bar(&$a, &$b, $c) {
52 $arguments = array($a, $b, $c);
74 $a = $b = $c = 0;
75 $foo->bar($a, $b, $c);
/PHP-7.4/ext/oci8/tests/
H A Dlob_027.phpt21 $statement = oci_parse($c,$ora_sql);
22 $blob = oci_new_descriptor($c,OCI_D_LOB);
31 oci_commit($c);
34 $s = oci_parse($c, $select_sql);
38 oci_commit($c);
43 $s = oci_parse($c, $select_sql);
50 oci_commit($c);
54 $s = oci_parse($c, $select_sql);
62 oci_commit($c);
H A Dlob_041.phpt21 oci8_test_sql_execute($c, $stmtarray);
25 $s = oci_parse($c, "SELECT C1 FROM lob_041_tab");
26 $desc = oci_new_descriptor($c, OCI_DTYPE_LOB);
36 $s = oci_parse($c, "SELECT C1 FROM lob_041_tab");
37 $desc = oci_new_descriptor($c, OCI_DTYPE_LOB);
48 $s = oci_parse($c, "SELECT C1 FROM lob_041_tab");
63 oci8_test_sql_execute($c, $stmtarray);
H A Dxmltype_01.phpt37 oci8_test_sql_execute($c, str_replace("\r", "", $stmtarray));
39 function do_query($c)
41 $s = oci_parse($c, 'select XMLType.getClobVal(xt_spec)
52 $data = do_query($c);
60 $s = oci_parse($c, 'update xtt
63 $lob = oci_new_descriptor($c, OCI_D_LOB);
71 $data = do_query($c);
79 oci8_test_sql_execute($c, $stmtarray);
H A Ddefine2.phpt18 oci8_test_sql_execute($c, $stmtarray);
20 $stmt = oci_parse ($c, "insert into phptestrawtable (id, fileimage) values (:id, :fileimage)");
29 oci_commit($c);
32 $stmt = oci_parse($c, "SELECT fileimage FROM phptestrawtable");
42 $stmt = oci_parse($c, "SELECT fileimage FROM phptestrawtable");
52 $stmt = oci_parse($c, "SELECT fileimage FROM phptestrawtable");
62 $stmt = oci_parse($c, "SELECT fileimage FROM phptestrawtable");
77 oci8_test_sql_execute($c, $stmtarray);
/PHP-7.4/Zend/tests/assert/
H A Dexpect_015.phpt10 static $c, $d = 0;
12 $x = isset($a) && !empty($b) || eval($c);
13 $x = $a ? $b : $c;
14 $x = $a ?: $c;
16 list($a, $b, $c) = [1, 2=>'x', 'z'=>'c'];
29 protected $c;
151 static $c;
155 $x = $a ? $b : $c;
156 $x = $a ?: $c;
158 [$a, $b, $c] = [1, 2 => 'x', 'z' => 'c'];
[all …]
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_internal.h187 #define memcmp(s,c,n) _memcmp(s,c,n) argument
190 #define memset(s,c,n) _memset(s,c,n) argument
198 #define memmove(a, b, c) PRIV(memmove)(a, b, c) argument
255 #define HASUTF8EXTRALEN(c) ((c) >= 0xc0) argument
269 c = ((c & 0x1fu) << 6) | (eptr[1] & 0x3fu); \
273 c = ((c & 0x07u) << 18) | ((eptr[1] & 0x3fu) << 12) | \
291 c = ((c & 0x1fu) << 6) | (*eptr++ & 0x3fu); \
299 c = ((c & 0x07u) << 18) | ((*eptr & 0x3fu) << 12) | \
305 c = ((c & 0x03u) << 24) | ((*eptr & 0x3fu) << 18) | \
312 c = ((c & 0x01u) << 30) | ((*eptr & 0x3fu) << 24) | \
[all …]
/PHP-7.4/ext/phar/tests/
H A Drename_dir_and_mount.phpt22 Phar::mount("$pname/a/c", __DIR__);
28 var_dump(file_exists($pname . '/a/c'));
29 var_dump(file_exists($pname . '/a/c/'.basename(__FILE__)));
36 var_dump(file_exists($pname . '/a/c'));
37 var_dump(file_exists($pname . '/a/c/'.basename(__FILE__)));
42 var_dump(file_exists($pname . '/b/c'));
43 var_dump(file_exists($pname . '/b/c/'.basename(__FILE__)));
/PHP-7.4/tests/classes/
H A Diterators_002.phpt45 class c implements IteratorAggregate {
58 $t = new c();
72 c::getIterator
78 c::getIterator
89 c::getIterator
100 c::getIterator
110 c::__destruct
H A Dinheritance.phpt22 public $c;
27 echo "c = ".$this->c."\n";
43 $bar1->c = 12;
55 c = 12
H A Dimplicit_instantiation_001.phpt17 $c = new C;
18 foreach($c as $name => $value) {
19 echo "\n\n---( \$c->$name )---";
21 $c->$name->prop++;
33 var_dump($c);
37 ---( $c->boolFalse )---
55 ---( $c->emptyString )---
73 ---( $c->null )---
91 ---( $c->boolTrue )---
105 ---( $c->nonEmptyString )---
[all …]
H A Dproperty_recreate_private.phpt41 $c = new C;
42 $c->unsetPrivate();
43 $c->setPrivate();
44 var_dump($c);
47 $c = new C;
48 $c->unsetPrivate();
49 $c->p = 'this will fail';
50 var_dump($c);
/PHP-7.4/ext/mbstring/tests/
H A Doverload02.phpt22 foreach($ngchars as $c) {
23 $c = mb_convert_encoding($c, 'Shift_JIS');
24 …$replaced = mb_convert_encoding(str_replace($c, '!!', $converted_str), mb_internal_encoding(), 'Sh…
/PHP-7.4/ext/mbstring/
H A Dphp_unicode.c310 static int convert_case_filter(int c, void *void_data) in convert_case_filter() argument
318 if (UNEXPECTED((unsigned) c > 0xffffff)) { in convert_case_filter()
319 (*data->next_filter->filter_function)(c, data->next_filter); in convert_case_filter()
325 out[0] = php_unicode_toupper_simple(c, data->no_encoding); in convert_case_filter()
330 len = php_unicode_toupper_full(c, data->no_encoding, out); in convert_case_filter()
334 out[0] = php_unicode_tolower_simple(c, data->no_encoding); in convert_case_filter()
339 len = php_unicode_tolower_full(c, data->no_encoding, out); in convert_case_filter()
343 len = php_unicode_tofold_full(c, data->no_encoding, out); in convert_case_filter()
347 out[0] = php_unicode_tofold_simple(c, data->no_encoding); in convert_case_filter()
369 if (!php_unicode_is_case_ignorable(c)) { in convert_case_filter()
[all …]
/PHP-7.4/ext/spl/tests/
H A Dfixedarray_007.phpt15 foreach ($a as $c) {
16 if ($c) {
17 echo $c->getSize(), "\n";
/PHP-7.4/ext/standard/tests/strings/
H A Dbug24208.phpt5 $a = $b = $c = "oops";
6 parse_str("a=1&b=2&c=3");
7 var_dump($a, $b, $c);
/PHP-7.4/ext/gd/libgd/
H A Dgd.c350 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c))) argument
354 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c))) argument
571 int c; in gdImageColorResolveAlpha() local
581 for (c = 0; c < im->colorsTotal; c++) in gdImageColorResolveAlpha()
1471 c = ASC (c); in gdImageChar()
1499 c = ASC (c); in gdImageCharUp()
1861 if ((c != border) && (c != color)) { in gdImageFillToBorder()
1878 if ((c != border) && (c != color)) { in gdImageFillToBorder()
2321 nc = gdImageColorResolveAlpha (dst, src->red[c], src->green[c], src->blue[c], src->alpha[c]); in gdImageCopy()
3130 *(dst_row + x) = gdTrueColorAlpha(src->red[c], src->green[c], src->blue[c], src->alpha[c]); in gdImagePaletteToTrueColor()
[all …]
/PHP-7.4/ext/standard/tests/serialize/
H A Dserialization_objects_002.phpt9 * Source code: ext/standard/var.c
34 $this->c = TRUE;
48 $this->c = $y;
96 ["c"]=>
146 ["c"]=>
165 ["c"]=>
184 ["c"]=>
203 ["c"]=>
234 ["c"]=>
276 ["c"]=>
[all …]
/PHP-7.4/ext/zlib/
H A Dconfig0.m414 …PHP_NEW_EXTENSION(zlib, zlib.c zlib_fopen_wrapper.c zlib_filter.c, $ext_shared,, -DZEND_ENABLE_STA…
/PHP-7.4/ext/mbstring/libmbfl/filters/
H A Dmk_emoji_tbl.pl21 my @c = unpack("C*", pack("H4", $_[0]));
24 $c[0] = (($c[0]-($c[0]<160?112:176))<<1)-($c[1]<159?1:0);
25 $c[1] -= ($c[1]<159?($c[1]>127?32:31):126);
27 $s = ($c[0] - 0x21)*94 + $c[1]-0x21;
33 my @c = @_;
35 for ($i=0; $i<=$#c; $i++) {#
36 if ($c[$i]) {
37 @v = split(' ',$c[$i]);
/PHP-7.4/ext/intl/tests/
H A Dcalendar_fieldDifference_error.phpt13 $c = new IntlGregorianCalendar(NULL, 'pt_PT');
15 var_dump($c->fieldDifference($c, 2, 3));
16 var_dump($c->fieldDifference(INF, 2));
17 var_dump($c->fieldDifference(1));
19 var_dump(intlcal_field_difference($c, 0, 1, 2));
/PHP-7.4/ext/phar/tests/tar/
H A Dopen_for_write_existing_b.phpt23 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
32 $fp = fopen($alias . '/b/c.php', 'wb');
36 include $alias . '/b/c.php';
44 Warning: fopen(phar://%sopen_for_write_existing_b.phar.tar/b/c.php): failed to open stream: phar er…
49 This is b/c
H A Dopen_for_write_existing_c.phpt23 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
32 $fp = fopen($alias . '/b/c.php', 'wb');
36 include $alias . '/b/c.php';
44 Warning: fopen(phar://%sopen_for_write_existing_c.phar.tar/b/c.php): failed to open stream: phar er…
49 This is b/c

Completed in 115 milliseconds

1...<<21222324252627282930>>...163