Home
last modified time | relevance | path

Searched refs:c1 (Results 151 – 175 of 231) sorted by relevance

12345678910

/PHP-7.4/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.4/ext/mysqli/tests/
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 D045.phpt31 mysqli_stmt_bind_result($stmt, $c1, $c2);
34 $test = array ($c1,$c2);
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);
H A D011.phpt20 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8);
H A D046.phpt23 mysqli_stmt_bind_param($stmt, "i", $c1);
25 $c1 = 2;
H A D060.phpt25 mysqli_query($link,"CREATE TABLE test_fetch(c1 smallint unsigned,
59 ["c1"]=>
H A D043.phpt24 mysqli_stmt_bind_param($stmt, "sii", $c1, $c2, $c3);
26 $c1 = "Rasmus";
H A D048.phpt29 $stmt->bind_result($c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8, $c9, $c10, $c11);
34 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8,$c9,$c10,$c11);
/PHP-7.4/ext/oci8/tests/
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');
H A Dimp_res_5.phpt26 c1 sys_refcursor;
28 open c1 for select 1 from dual union select 2 from dual;
29 dbms_sql.return_result (c1);
H A Dimp_res_field.phpt39 c1 sys_refcursor;
41 open c1 for select * from imp_res_field_tab_1 order by 1;
42 dbms_sql.return_result(c1);
44 open c1 for select * from imp_res_field_tab_2 order by 1;
45 dbms_sql.return_result(c1);
47 open c1 for select * from imp_res_field_tab_3 order by 1;
48 dbms_sql.return_result(c1);
H A Dimp_res_4.phpt26 c1 sys_refcursor;
28 open c1 for select 1 from dual union select 2 from dual;
29 dbms_sql.return_result (c1);
H A Drefcur_prefetch_3.phpt31 "create table nescurtest(c1 varchar2(10))"
37 $insert_sql = "INSERT INTO nescurtest (c1) VALUES (:c1)";
44 oci_bind_by_name($s,':c1',$val2);
H A Ddupcolnames.phpt16 "create table dupcolnames_tab1 (c1 number, dupnamecol varchar2(20))",
19 "insert into dupcolnames_tab1 (c1, dupnamecol) values (1, 'chris')",
H A Darray_bind_009.phpt10 var_dump(oci_bind_array_by_name($c, ":c1", $array, 5, 5, SQLT_CHR));
/PHP-7.4/ext/mbstring/libmbfl/filters/
H A Dmbfilter_jis.c123 int c1, s, w; in mbfl_filt_conv_jis_wchar() local
163 c1 = filter->cache; in mbfl_filt_conv_jis_wchar()
165 s = (c1 - 0x21)*94 + c - 0x21; in mbfl_filt_conv_jis_wchar()
173 w = (c1 << 8) | c; in mbfl_filt_conv_jis_wchar()
184 w = (c1 << 8) | c; in mbfl_filt_conv_jis_wchar()
195 w = (c1 << 8) | c; in mbfl_filt_conv_jis_wchar()
294 int c1, s; in mbfl_filt_conv_wchar_jis() local
307 c1 = c & ~MBFL_WCSPLANE_MASK; in mbfl_filt_conv_wchar_jis()
308 if (c1 == MBFL_WCSPLANE_JIS0208) { in mbfl_filt_conv_wchar_jis()
310 } else if (c1 == MBFL_WCSPLANE_JIS0212) { in mbfl_filt_conv_wchar_jis()
/PHP-7.4/tests/classes/
H A Diterators_004.phpt8 class c1 {}
10 $obj = new c1();
H A Dconstants_error_004.phpt7 const c1 = D::hello;
/PHP-7.4/ext/mbstring/tests/
H A Dmb_str_split_ru.phpt70 KOI8-R: d2 c1 ca 20 d2 c1 ca 20 d2 c1 ca 20
/PHP-7.4/ext/gd/tests/
H A Dcreatefromstring.phpt31 $c1 = imagecolorallocate($im, 255,255,255);
33 imagefill($im, 0,0, $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()

Completed in 57 milliseconds

12345678910