Home
last modified time | relevance | path

Searched refs:c1 (Results 126 – 150 of 233) sorted by relevance

12345678910

/PHP-7.1/ext/ctype/tests/
H A Dctype_xdigit_basic.phpt15 $c1 = 'abcdefABCDEF0123456789';
18 var_dump(ctype_xdigit($c1));
H A Dctype_graph_basic.phpt16 $c1 = 'helloWorld!';
19 var_dump(ctype_graph($c1));
H A Dctype_cntrl_basic.phpt16 $c1 = "\r\n\t";
19 var_dump(ctype_cntrl($c1));
H A Dctype_space_basic.phpt16 $c1 = " \t\r\n";
17 var_dump(ctype_space($c1));
H A Dctype_punct_basic.phpt17 $c1 = '@!$*';
20 var_dump(ctype_punct($c1));
/PHP-7.1/ext/gd/tests/
H A Dbug38179.phpt11 $c1 = imagecolorallocatealpha($src, 255,0,0,70);
14 imagefill($src, 0,0, $c1);
H A Dbug39273.phpt10 $c1 = imagecolorallocatealpha($small, 255,0,0,50);
13 imagefilledrectangle($small, 0,0, 6,6, $c1);
H A Dcolorat.phpt23 $c1 = imagecolorallocate($im, 255,255,255);
26 imagefill($im, 0,0, $c1);
/PHP-7.1/ext/oci8/tests/
H A Dimp_res_get_cancel.phpt24 c1 sys_refcursor;
27 open c1 for select 1 from dual union all select 2 from dual;
28 dbms_sql.return_result(c1);
H A Dimp_res_get_exec.phpt23 c1 sys_refcursor;
25 open c1 for select 1 from dual union all select 2 from dual;
26 dbms_sql.return_result(c1);
H A Dimp_res_get_4.phpt26 "create table imp_res_get_4_tab_1 (c1 number, c2 varchar2(10))",
38 c1 sys_refcursor;
40 open c1 for select * from imp_res_get_4_tab_1 order by 1;
41 dbms_sql.return_result(c1);
43 open c1 for select * from imp_res_get_4_tab_2 order by 1;
44 dbms_sql.return_result(c1);
H A Dimp_res_6.phpt26 "create table imp_res_6_tab (c1 number, c2 varchar2(10))",
35 c1 sys_refcursor;
37 open c1 for select * from imp_res_6_tab order by 1;
38 dbms_sql.return_result(c1);
H A Darray_bind_bdouble.phpt14 $statement = oci_parse($c, "BEGIN array_bind_bdouble_pkg.iobind(:c1); END;");
16 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_BDOUBLE);
H A Darray_bind_bfloat.phpt14 $statement = oci_parse($c, "BEGIN array_bind_bfloat_pkg.iobind(:c1); END;");
16 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_BFLOAT);
H A Dimp_res_cancel.phpt24 c1 sys_refcursor;
27 open c1 for select 1 from dual union all select 2 from dual;
28 dbms_sql.return_result(c1);
H A Dimp_res_func_error.phpt26 c1 sys_refcursor;
28 open c1 for select * from dual;
29 dbms_sql.return_result(c1);
H A Dbug41069.phpt30 c1 number(20),
45 "insert into bug41069_tab (c1, c2, c5, c6, c9, c10, c12, c15) values
48 "insert into bug41069_tab (c1, c2, c3, c4, c5, c6, c7, c9, c10, c12, c13, c15) values
51 "insert into bug41069_tab (c1, c2, c3, c4, c5, c6, c7, c9, c10, c12, c15) values
61 $stid = oci_parse($c, 'select * from bug41069_tab order by c1');
67 $stid = oci_parse($c, 'select * from bug41069_tab@bug41069_dblink order by c1');
/PHP-7.1/ext/mysqli/tests/
H A D021.phpt18 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 char(10), c2 text)");
28 mysqli_stmt_bind_result($stmt, $c1, $c2);
32 $test = array($c1,$c2);
H A D022.phpt18 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 char(10), c2 text)");
31 mysqli_stmt_bind_result($stmt, $c1, $c2);
35 $test[] = $c1;
H A D019.phpt31 mysqli_stmt_bind_param($stmt, "issd", $c1, $c2, $c3, $c4);
33 $c1 = 1;
44 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8, $c9, $c10, $c11);
49 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8,$c9,$c10,$c11);
H A D005.phpt18 if (!mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 char(10), c2 text) ENGINE=" . $engine))
26 mysqli_stmt_bind_result($stmt, $c1, $c2);
30 $test[] = $c1;
H A D012.phpt20 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
34 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8);
38 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8);
H A D026.phpt19 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 varchar(10), c2 text)");
22 mysqli_stmt_bind_param($stmt, "sb", $c1, $c2);
24 $c1 = "Hello World";
/PHP-7.1/ext/pdo_oci/tests/
H A Dpecl_bug_6364.phpt17 $dbh->exec ("create table bug_6364_t (c1 varchar2(10), c2 varchar2(10), c3 varchar2(10), c4 varchar…
19 …rchar2, p4 OUT varchar2, p5 OUT varchar2) as begin insert into bug_6364_t (c1, c2, c3) values (p1,…
49 ["c1"]=>
/PHP-7.1/ext/mbstring/libmbfl/filters/
H A Dmbfilter_jis.c119 int c1, s, w; in mbfl_filt_conv_jis_wchar() local
159 c1 = filter->cache; in mbfl_filt_conv_jis_wchar()
161 s = (c1 - 0x21)*94 + c - 0x21; in mbfl_filt_conv_jis_wchar()
169 w = (c1 << 8) | c; in mbfl_filt_conv_jis_wchar()
180 w = (c1 << 8) | c; in mbfl_filt_conv_jis_wchar()
191 w = (c1 << 8) | c; in mbfl_filt_conv_jis_wchar()
290 int c1, s; in mbfl_filt_conv_wchar_jis() local
303 c1 = c & ~MBFL_WCSPLANE_MASK; in mbfl_filt_conv_wchar_jis()
304 if (c1 == MBFL_WCSPLANE_JIS0208) { in mbfl_filt_conv_wchar_jis()
306 } else if (c1 == MBFL_WCSPLANE_JIS0212) { in mbfl_filt_conv_wchar_jis()

Completed in 36 milliseconds

12345678910