Home
last modified time | relevance | path

Searched refs:c1 (Results 26 – 50 of 229) sorted by relevance

12345678910

/PHP-5.6/ext/mbstring/libmbfl/filters/
H A Dmbfilter_euc_jp.c105 int c1, s, w; in mbfl_filt_conv_eucjp_wchar() local
127 c1 = filter->cache; in mbfl_filt_conv_eucjp_wchar()
129 s = (c1 - 0xa1)*94 + c - 0xa1; in mbfl_filt_conv_eucjp_wchar()
144 w = (c1 << 8) | c; in mbfl_filt_conv_eucjp_wchar()
177 c1 = filter->cache; in mbfl_filt_conv_eucjp_wchar()
178 if (c1 > 0xa0 && c1 < 0xff && c > 0xa0 && c < 0xff) { in mbfl_filt_conv_eucjp_wchar()
179 s = (c1 - 0xa1)*94 + c - 0xa1; in mbfl_filt_conv_eucjp_wchar()
194 w = (c1 << 8) | c | 0x8f0000; in mbfl_filt_conv_eucjp_wchar()
215 int c1, s; in mbfl_filt_conv_wchar_eucjp() local
228 c1 = c & ~MBFL_WCSPLANE_MASK; in mbfl_filt_conv_wchar_eucjp()
[all …]
/PHP-5.6/ext/gd/tests/
H A Dcopy.phpt40 $c1 = imagecolorsforindex($dst_tc, imagecolorat($dst_tc, 3,3));
44 $p1 = $c1['red'] == 0xff && $c1['blue']==0x00 && $c1['green']==0x00;
57 $c1 = imagecolorallocate($src_tc, 0xff, 0x00, 0x00);
61 imagesetpixel($src_tc, 3,3, $c1);
69 $c1 = imagecolorsforindex($dst_tc, imagecolorat($dst_tc, 3,3));
73 $p1 = $c1['red'] == 0xff && $c1['blue']==0x00 && $c1['green']==0x00;
86 $c1 = imagecolorallocate($src_tc, 0xff, 0x00, 0x00);
90 imagesetpixel($src_tc, 3,3, $c1);
/PHP-5.6/ext/oci8/tests/
H A Dconnect_scope1.phpt14 "create table connect_scope1_tab (c1 number)",
18 $c1 = oci_new_connect($user,$password,$dbase);
20 $c1 = oci_new_connect($user,$password);
22 oci8_test_sql_execute($c1, $stmtarray);
45 $s1 = oci_parse($c1, "select * from connect_scope1_tab");
55 $s1 = oci_parse($c1, "select * from connect_scope1_tab");
66 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope2.phpt14 "create table connect_scope2_tab (c1 number)",
18 $c1 = oci_new_connect($user,$password,$dbase);
20 $c1 = oci_new_connect($user,$password);
22 oci8_test_sql_execute($c1, $stmtarray);
45 $s1 = oci_parse($c1, "select * from connect_scope2_tab");
55 $s1 = oci_parse($c1, "select * from connect_scope2_tab");
66 oci8_test_sql_execute($c1, $stmtarray);
H A Dimp_res_get_close_3.phpt26 c1 sys_refcursor;
28 open c1 for select 1 from dual union all select 2 from dual;
29 dbms_sql.return_result(c1);
30 open c1 for select 3 from dual union all select 4 from dual;
31 dbms_sql.return_result(c1);
32 open c1 for select 5 from dual union all select 6 from dual;
33 dbms_sql.return_result(c1);
H A Dimp_res_cursor.phpt26 "create table imp_res_cursor_tab_1 (c1 number, c2 varchar2(10))",
38 c1 sys_refcursor;
40 open c1 for select * from dual;
41 dbms_sql.return_result (c1);
43 … open c1 for select cursor(select c1, c2 from imp_res_cursor_tab_1 order by 1) as curs from dual;
44 dbms_sql.return_result(c1);
46 open c1 for select * from imp_res_cursor_tab_2 where rownum < 3 order by 1;
47 dbms_sql.return_result(c1);
H A Dimp_res_get_cursor.phpt26 "create table imp_res_get_cursor_tab_1 (c1 number, c2 varchar2(10))",
38 c1 sys_refcursor;
40 …open c1 for select cursor(select c1, c2 from imp_res_get_cursor_tab_1 order by 1) as curs from dua…
41 dbms_sql.return_result(c1);
43 open c1 for select * from imp_res_get_cursor_tab_2 where rownum < 3 order by 1;
44 dbms_sql.return_result(c1);
46 open c1 for select * from dual;
47 dbms_sql.return_result (c1);
H A Dbug51253.phpt24 PROCEDURE iobind(c1 IN OUT ARRTYPE);
32 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
35 INSERT INTO bind_test VALUES (c1(i));
41 FETCH CUR INTO c1(i);
53 $statement = oci_parse($c, "BEGIN bug51253_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array2, 5, -1, SQLT_CHR);
64 $statement = oci_parse($c, "BEGIN bug51253_pkg.iobind(:c1); END;");
67 oci_bind_array_by_name($statement, ":c1", $array2, 5, -1, SQLT_CHR);
75 $statement = oci_parse($c, "BEGIN bug51253_pkg.iobind(:c1); END;");
78 oci_bind_array_by_name($statement, ":c1", $array1, 5, -1, SQLT_CHR);
H A Dimp_res_lob.phpt26 "create table imp_res_lob_tab (c1 number, c2 clob, c3 varchar2(10))",
33 c1 sys_refcursor;
35 open c1 for select * from imp_res_lob_tab order by 1;
36 dbms_sql.return_result(c1);
37 open c1 for select * from dual;
38 dbms_sql.return_result(c1);
39 open c1 for select c2 from imp_res_lob_tab order by c1;
40 dbms_sql.return_result(c1);
H A Dconnect_scope_try1.phpt16 "create table scope_try1_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try1_tab");
62 $s1 = oci_parse($c1, "select * from scope_try1_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try2.phpt16 "create table scope_try2_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try2_tab");
62 $s1 = oci_parse($c1, "select * from scope_try2_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try3.phpt16 "create table scope_try3_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try3_tab");
62 $s1 = oci_parse($c1, "select * from scope_try3_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try4.phpt16 "create table scope_try4_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try4_tab");
62 $s1 = oci_parse($c1, "select * from scope_try4_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try5.phpt16 "create table scope_try5_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try5_tab");
62 $s1 = oci_parse($c1, "select * from scope_try5_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try6.phpt16 "create table scope_try6_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try6_tab");
62 $s1 = oci_parse($c1, "select * from scope_try6_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dimp_res_get_close_2.phpt26 c1 sys_refcursor;
28 open c1 for select 1 from dual union all select 2 from dual;
29 dbms_sql.return_result(c1);
30 open c1 for select 3 from dual union all select 4 from dual;
31 dbms_sql.return_result(c1);
32 open c1 for select 5 from dual union all select 6 from dual;
33 dbms_sql.return_result(c1);
H A Dconn_attr_4.phpt46 var_dump(oci_set_action($c1,$c1));
50 var_dump(oci_set_action($c1,'ACTION1'));
51 var_dump(oci_set_action($c1,'ACTION1'));
52 var_dump(oci_set_action($c1,'ACTION2'));
53 var_dump(oci_set_action($c1,'ACTION1'));
54 get_attr($c1,'ACTION');
62 oci_set_module_name($c1,$val);
63 oci_set_client_identifier($c1,$val);
64 oci_set_client_info($c1,$val);
65 $r = oci_set_action($c1,$val);
[all …]
H A Dimp_res_close.phpt26 c1 sys_refcursor;
28 open c1 for select 1 from dual union all select 2 from dual order by 1;
29 dbms_sql.return_result(c1);
30 open c1 for select 3 from dual union all select 4 from dual order by 1;
31 dbms_sql.return_result(c1);
32 open c1 for select 5 from dual union all select 6 from dual order by 1;
33 dbms_sql.return_result(c1);
H A Dimp_res_get_all.phpt23 c1 sys_refcursor;
25 open c1 for select 1 from dual union all select 2 from dual;
26 dbms_sql.return_result(c1);
27 open c1 for select 3 from dual union all select 4 from dual;
28 dbms_sql.return_result(c1);
29 open c1 for select 5 from dual union all select 6 from dual;
30 dbms_sql.return_result(c1);
H A Dimp_res_get_close_1.phpt26 c1 sys_refcursor;
28 open c1 for select 1 from dual union all select 2 from dual;
29 dbms_sql.return_result(c1);
30 open c1 for select 3 from dual union all select 4 from dual;
31 dbms_sql.return_result(c1);
32 open c1 for select 5 from dual union all select 6 from dual;
33 dbms_sql.return_result(c1);
H A Dbind_unsupported_2.phpt21 $s = oci_parse($c, "select * from dual where dummy = :c1");
22 $c1 = "Doug";
23 oci_bind_by_name($s, ":c1", $c1, -1, $v);
H A Darray_bind_date1.phpt24 PROCEDURE iobind(c1 IN OUT ARRTYPE);
32 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
35 INSERT INTO bind_test VALUES (c1(i));
41 FETCH CUR INTO c1(i);
52 $statement = oci_parse($c, "BEGIN array_bind_date1_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 10, 5, SQLT_ODT);
H A Darray_bind_float.phpt24 PROCEDURE iobind(c1 IN OUT ARRTYPE);
32 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
35 INSERT INTO bind_test VALUES (c1(i));
41 FETCH CUR INTO c1(i);
52 $statement = oci_parse($c, "BEGIN array_bind_float_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_FLT);
H A Darray_bind_float1.phpt24 PROCEDURE iobind(c1 IN OUT ARRTYPE);
32 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
35 INSERT INTO bind_test VALUES (c1(i));
41 FETCH CUR INTO c1(i);
52 $statement = oci_parse($c, "BEGIN array_bind_float1_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 10, 5, SQLT_FLT);
/PHP-5.6/Zend/tests/
H A Dbug55825.phpt12 $c1 = new C;
13 $c1->inc();
14 $c1->inc();

Completed in 38 milliseconds

12345678910