Home
last modified time | relevance | path

Searched refs:c1 (Results 1 – 25 of 215) sorted by relevance

123456789

/PHP-8.3/ext/oci8/tests/
H A Dimp_res_7.phpt28 c1 sys_refcursor;
31 dbms_sql.return_result(c1);
33 dbms_sql.return_result(c1);
35 dbms_sql.return_result(c1);
37 dbms_sql.return_result(c1);
39 dbms_sql.return_result(c1);
41 dbms_sql.return_result(c1);
43 dbms_sql.return_result(c1);
45 dbms_sql.return_result(c1);
47 dbms_sql.return_result(c1);
[all …]
H A Dbug40078.phpt19 PROCEDURE nullbind(c1 OUT ARRTYPE);
26 PROCEDURE nullbind(c1 OUT ARRTYPE) IS
28 c1(1) := 'one';
29 c1(2) := 'two';
30 c1(3) := '';
31 c1(4) := 'four';
32 c1(5) := 'five';
38 $statement = oci_parse($c, "BEGIN bug40078_pkg.nullbind(:c1); END;");
40 oci_bind_array_by_name($statement, ":c1", $array, 5, 20, SQLT_CHR);
H A Dimp_res_2.phpt28 c1 sys_refcursor;
30 open c1 for select * from dual where 1 = 0;
31 dbms_sql.return_result(c1);
35 c1 sys_refcursor;
37 open c1 for select * from dual;
38 dbms_sql.return_result(c1);
40 dbms_sql.return_result(c1);
44 c1 sys_refcursor;
47 dbms_sql.return_result(c1);
48 open c1 for select * from dual;
[all …]
H A Dbug74625.phpt19 PROCEDURE iobind(c1 IN OUT ARRTYPE);
22 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
25 c1(i) := c1(i) * 2;
33 $statement = oci_parse($c, "BEGIN pkg74625.iobind(:c1); END;");
37 oci_bind_array_by_name($statement, ":c1", $array, 5, -1, SQLT_INT);
H A Dconnect_scope1.phpt18 "create table connect_scope1_tab (c1 number)",
22 $c1 = oci_new_connect($user,$password,$dbase);
24 $c1 = oci_new_connect($user,$password);
26 oci8_test_sql_execute($c1, $stmtarray);
49 $s1 = oci_parse($c1, "select * from connect_scope1_tab");
59 $s1 = oci_parse($c1, "select * from connect_scope1_tab");
70 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope2.phpt18 "create table connect_scope2_tab (c1 number)",
22 $c1 = oci_new_connect($user,$password,$dbase);
24 $c1 = oci_new_connect($user,$password);
26 oci8_test_sql_execute($c1, $stmtarray);
49 $s1 = oci_parse($c1, "select * from connect_scope2_tab");
59 $s1 = oci_parse($c1, "select * from connect_scope2_tab");
70 oci8_test_sql_execute($c1, $stmtarray);
H A Dimp_res_get_close_3.phpt28 c1 sys_refcursor;
30 open c1 for select 1 from dual union all select 2 from dual;
31 dbms_sql.return_result(c1);
32 open c1 for select 3 from dual union all select 4 from dual;
33 dbms_sql.return_result(c1);
34 open c1 for select 5 from dual union all select 6 from dual;
35 dbms_sql.return_result(c1);
H A Dimp_res_cursor.phpt28 "create table imp_res_cursor_tab_1 (c1 number, c2 varchar2(10))",
40 c1 sys_refcursor;
42 open c1 for select * from dual;
43 dbms_sql.return_result (c1);
45 … open c1 for select cursor(select c1, c2 from imp_res_cursor_tab_1 order by 1) as curs from dual;
46 dbms_sql.return_result(c1);
48 open c1 for select * from imp_res_cursor_tab_2 where rownum < 3 order by 1;
49 dbms_sql.return_result(c1);
H A Dimp_res_get_cursor.phpt28 "create table imp_res_get_cursor_tab_1 (c1 number, c2 varchar2(10))",
40 c1 sys_refcursor;
42 …open c1 for select cursor(select c1, c2 from imp_res_get_cursor_tab_1 order by 1) as curs from dua…
43 dbms_sql.return_result(c1);
45 open c1 for select * from imp_res_get_cursor_tab_2 where rownum < 3 order by 1;
46 dbms_sql.return_result(c1);
48 open c1 for select * from dual;
49 dbms_sql.return_result (c1);
H A Dimp_res_get_close_1.phpt28 c1 sys_refcursor;
30 open c1 for select 1 from dual union all select 2 from dual;
31 dbms_sql.return_result(c1);
32 open c1 for select 3 from dual union all select 4 from dual;
33 dbms_sql.return_result(c1);
34 open c1 for select 5 from dual union all select 6 from dual;
35 dbms_sql.return_result(c1);
H A Dimp_res_get_close_2.phpt28 c1 sys_refcursor;
30 open c1 for select 1 from dual union all select 2 from dual;
31 dbms_sql.return_result(c1);
32 open c1 for select 3 from dual union all select 4 from dual;
33 dbms_sql.return_result(c1);
34 open c1 for select 5 from dual union all select 6 from dual;
35 dbms_sql.return_result(c1);
H A Dimp_res_lob.phpt28 "create table imp_res_lob_tab (c1 number, c2 clob, c3 varchar2(10))",
35 c1 sys_refcursor;
37 open c1 for select * from imp_res_lob_tab order by 1;
38 dbms_sql.return_result(c1);
39 open c1 for select * from dual;
40 dbms_sql.return_result(c1);
41 open c1 for select c2 from imp_res_lob_tab order by c1;
42 dbms_sql.return_result(c1);
H A Dconnect_scope_try4.phpt20 "create table scope_try4_tab (c1 number)"
24 $c1 = oci_new_connect($user,$password,$dbase);
26 $c1 = oci_new_connect($user,$password);
28 oci8_test_sql_execute($c1, $stmtarray);
55 $s1 = oci_parse($c1, "select * from scope_try4_tab");
66 $s1 = oci_parse($c1, "select * from scope_try4_tab");
77 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try5.phpt20 "create table scope_try5_tab (c1 number)"
24 $c1 = oci_new_connect($user,$password,$dbase);
26 $c1 = oci_new_connect($user,$password);
28 oci8_test_sql_execute($c1, $stmtarray);
55 $s1 = oci_parse($c1, "select * from scope_try5_tab");
66 $s1 = oci_parse($c1, "select * from scope_try5_tab");
77 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try6.phpt20 "create table scope_try6_tab (c1 number)"
24 $c1 = oci_new_connect($user,$password,$dbase);
26 $c1 = oci_new_connect($user,$password);
28 oci8_test_sql_execute($c1, $stmtarray);
55 $s1 = oci_parse($c1, "select * from scope_try6_tab");
66 $s1 = oci_parse($c1, "select * from scope_try6_tab");
77 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try1.phpt20 "create table scope_try1_tab (c1 number)"
24 $c1 = oci_new_connect($user,$password,$dbase);
26 $c1 = oci_new_connect($user,$password);
28 oci8_test_sql_execute($c1, $stmtarray);
55 $s1 = oci_parse($c1, "select * from scope_try1_tab");
66 $s1 = oci_parse($c1, "select * from scope_try1_tab");
77 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try2.phpt20 "create table scope_try2_tab (c1 number)"
24 $c1 = oci_new_connect($user,$password,$dbase);
26 $c1 = oci_new_connect($user,$password);
28 oci8_test_sql_execute($c1, $stmtarray);
55 $s1 = oci_parse($c1, "select * from scope_try2_tab");
66 $s1 = oci_parse($c1, "select * from scope_try2_tab");
77 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try3.phpt20 "create table scope_try3_tab (c1 number)"
24 $c1 = oci_new_connect($user,$password,$dbase);
26 $c1 = oci_new_connect($user,$password);
28 oci8_test_sql_execute($c1, $stmtarray);
55 $s1 = oci_parse($c1, "select * from scope_try3_tab");
66 $s1 = oci_parse($c1, "select * from scope_try3_tab");
77 oci8_test_sql_execute($c1, $stmtarray);
H A Dimp_res_close.phpt28 c1 sys_refcursor;
30 open c1 for select 1 from dual union all select 2 from dual order by 1;
31 dbms_sql.return_result(c1);
32 open c1 for select 3 from dual union all select 4 from dual order by 1;
33 dbms_sql.return_result(c1);
34 open c1 for select 5 from dual union all select 6 from dual order by 1;
35 dbms_sql.return_result(c1);
/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_string_utils.c104 PCRE2_UCHAR c1, c2; in PRIV() local
107 c1 = *str1++; in PRIV()
109 if (c1 != c2) return ((c1 > c2) << 1) - 1; in PRIV()
132 PCRE2_UCHAR c1, c2; in PRIV() local
135 c1 = *str1++; in PRIV()
137 if (c1 != c2) return ((c1 > c2) << 1) - 1; in PRIV()
159 PCRE2_UCHAR c1, c2; in PRIV() local
162 c1 = *str1++; in PRIV()
164 if (c1 != c2) return ((c1 > c2) << 1) - 1; in PRIV()
191 c1 = *str1++; in PRIV()
[all …]
/PHP-8.3/ext/standard/tests/strings/
H A Dstrnatcmp_basic.phpt9 $c1 = "abc15";
19 var_dump(strnatcmp($a1, $c1));
21 var_dump(strnatcmp($b1, $c1));
22 var_dump(strnatcmp($d1, $c1));
37 var_dump(strnatcmp($c1, $a1));
39 var_dump(strnatcmp($c1, $b1));
40 var_dump(strnatcmp($c1, $d1));
43 var_dump(strnatcmp($c1, $a2));
45 var_dump(strnatcmp($c1, $b2));
46 var_dump(strnatcmp($c1, $d2));
/PHP-8.3/ext/standard/tests/array/
H A Dcount_symbol_table.phpt6 $c1 = 0;
10 $c1 = count($GLOBALS);
15 var_dump($c1 - $c2);
17 $c1 = count($GLOBALS);
18 var_dump($c1 - $c2);
/PHP-8.3/Zend/tests/
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);
/PHP-8.3/ext/gd/tests/
H A Dcopy.phpt38 $c1 = imagecolorsforindex($dst_tc, imagecolorat($dst_tc, 3,3));
42 $p1 = $c1['red'] == 0xff && $c1['blue']==0x00 && $c1['green']==0x00;
55 $c1 = imagecolorallocate($src_tc, 0xff, 0x00, 0x00);
59 imagesetpixel($src_tc, 3,3, $c1);
67 $c1 = imagecolorsforindex($dst_tc, imagecolorat($dst_tc, 3,3));
71 $p1 = $c1['red'] == 0xff && $c1['blue']==0x00 && $c1['green']==0x00;
84 $c1 = imagecolorallocate($src_tc, 0xff, 0x00, 0x00);
88 imagesetpixel($src_tc, 3,3, $c1);
/PHP-8.3/ext/mbstring/libmbfl/filters/
H A Dmbfilter_cjk.c1872 if ((c1 == 0x0254 || c1 == 0x028C || c1 == 0x0259 || c1 == 0x025A) && c == 0x0301) { in mbfl_filt_conv_wchar_jis2004()
3578 if (c1 > 0x20 && c1 < 0x35) { in mbfl_filt_conv_2022jpms_wchar()
4045 if (c1 > 0x20 && c1 < 0x47) { in mbfl_filt_conv_2022kr_wchar()
4047 } else if (c1 >= 0x47 && c1 <= 0x7e && c1 != 0x49) { in mbfl_filt_conv_2022kr_wchar()
9918 if (c1 >= 0xa1 && c1 <= 0xc6) { in mbfl_filt_conv_euckr_wchar()
9920 } else if (c1 >= 0xc7 && c1 <= 0xfe && c1 != 0xc9) { in mbfl_filt_conv_euckr_wchar()
10852 s |= (c1 < 0x06 ? c1 + 0xaa : c1 + 0xf2) << 8; in mbfl_filt_conv_wchar_gb18030()
11205 if (((c1 >= 0xaa && c1 <= 0xaf) || (c1 >= 0xf8 && c1 <= 0xfe)) && in mbfl_filt_conv_cp936_wchar()
11295 s |= (c1 < 0x06 ? c1 + 0xaa : c1 + 0xf2) << 8; in mbfl_filt_conv_wchar_cp936()
11462 s |= (c1 < 0x6 ? c1 + 0xAA : c1 + 0xF2) << 8; in mb_wchar_to_cp936()
[all …]

Completed in 68 milliseconds

123456789