Home
last modified time | relevance | path

Searched refs:c1 (Results 101 – 125 of 199) sorted by relevance

12345678

/PHP-5.5/ext/ctype/tests/
H A Dctype_alpha_basic.phpt16 $c1 = 'abcXYZ';
19 var_dump(ctype_alpha($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_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));
H A Dctype_cntrl_basic.phpt16 $c1 = "\r\n\t";
19 var_dump(ctype_cntrl($c1));
H A Dctype_graph_basic.phpt16 $c1 = 'helloWorld!';
19 var_dump(ctype_graph($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-5.5/ext/oci8/tests/
H A Darray_bind_uin.phpt13 $statement = oci_parse($c, "BEGIN ARRAYBINDPKG1.iobind(:c1); END;");
15 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_UIN);
H A Darray_bind_bfloat.phpt14 $statement = oci_parse($c, "BEGIN ARRAYBINDPKG1.iobind(:c1); END;");
16 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_BFLOAT);
H A Darray_bind_bdouble.phpt14 $statement = oci_parse($c, "BEGIN ARRAYBINDPKG1.iobind(:c1); END;");
16 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_BDOUBLE);
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-5.5/ext/mysqli/tests/
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 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 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";
H A D006.phpt21 $rc = mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 int unsigned,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D007.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 smallint unsigned,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D008.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 tinyint,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
/PHP-5.5/ext/gd/tests/
H A Dcolorat.phpt23 $c1 = imagecolorallocate($im, 255,255,255);
26 imagefill($im, 0,0, $c1);
/PHP-5.5/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,…
50 ["c1"]=>
/PHP-5.5/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 71 milliseconds

12345678