Home
last modified time | relevance | path

Searched refs:c1 (Results 76 – 100 of 199) sorted by relevance

12345678

/PHP-5.5/ext/oci8/tests/
H A Drefcur_prefetch_1.phpt20 "CREATE TABLE refcurtest (c1 NUMBER, c2 VARCHAR(20))",
24 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,c2 out varchar2);
29 open cur1 for select * from refcurtest order by c1;
31 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,
34 fetch cur1 into c1,c2;
42 $insert_sql = "INSERT INTO refcurtest (c1, c2) VALUES (:c1,:c2)";
49 oci_bind_by_name($s,':c1',$i);
86 $sql2 = "begin refcurpkg.fetch_ref_cur(:curs1,:c1,:c2); end;";
91 if (!oci_bind_by_name($s2,":c1",$c1,-1,SQLT_INT)) {
99 var_dump($c1);
H A Dedition_2.phpt84 if ($c1) {
86 oci_close($c1);
91 $c1 = get_conn(3);
97 $c1 = get_conn(1);
98 get_edit_attr($c1);
99 oci_close($c1);
107 $c1 = get_conn(3);
109 get_edit_attr($c1);
114 oci_commit($c1);
116 get_edit_attr($c1);
[all …]
H A Derror_parse.phpt18 $c1 = oci_connect($user,$password,$dbase);
21 $c1 = oci_connect($user,$password);
24 $s = @oci_parse($c1, "select ' from dual");
27 $m = oci_error($c1);
71 $m = oci_error($c1);
85 $s = @oci_new_collection($c1, "ABC");
86 $m = oci_error($c1);
H A Dbind_unsupported_1.phpt28 $s = oci_parse($c, "select * from dual where dummy = :c1");
29 $c1 = "Doug";
30 oci_bind_by_name($s, ":c1", $c1, -1, $v);
H A Dlob_043.phpt18 "create table lob_043_tab(id number, c1 clob)",
21 insert into lob_043_tab (id, c1) values (i, i || ' abcdefghijklmnopq');
32 $s = oci_parse($c, 'select id, c1 from lob_043_tab order by id');
44 $s = oci_parse($c, 'select id, c1 from lob_043_tab order by id');
H A Ddrcp_newconnect.phpt16 var_dump($c1 = oci_new_connect($user,$password,$dbase));
17 $rn1 = (int)$c1;
32 oci_close($c1);
/PHP-5.5/ext/standard/
H A Dcrypt_blowfish.c395 BF_safe_atoi64(c1, *sptr++); in BF_decode()
419 unsigned int c1, c2; in BF_encode() local
422 c1 = *sptr++; in BF_encode()
424 c1 = (c1 & 0x03) << 4; in BF_encode()
426 *dptr++ = BF_itoa64[c1]; in BF_encode()
431 c1 |= c2 >> 4; in BF_encode()
432 *dptr++ = BF_itoa64[c1]; in BF_encode()
433 c1 = (c2 & 0x0f) << 2; in BF_encode()
435 *dptr++ = BF_itoa64[c1]; in BF_encode()
440 c1 |= c2 >> 6; in BF_encode()
[all …]
H A Dlevenshtein.c33 int i1, i2, c0, c1, c2; in reference_levdist() local
56 c1 = p1[i2 + 1] + cost_del; in reference_levdist()
57 if (c1 < c0) { in reference_levdist()
58 c0 = c1; in reference_levdist()
/PHP-5.5/ext/reflection/tests/
H A D022.phpt8 const c1 = 1;
11 var_dump($class->getConstant("c1"));
H A D021.phpt8 const c1 = 1;
11 var_dump($class->hasConstant("c1"));
/PHP-5.5/ext/mysqli/tests/
H A D045.phpt31 mysqli_stmt_bind_result($stmt, $c1, $c2);
36 settype($c1, "unicode");
39 $test = array ($c1,$c2);
H A D042.phpt19 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 smallint unsigned,
28 mysqli_stmt_bind_param($stmt, "iiiiiii", $c1,$c2,$c3,$c4,$c5,$c6,$c7);
30 $c1 = -23;
64 [%u|b%"c1"]=>
H A D004.phpt20 if (!mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 char(10), c2 text) ENGINE=" . $engine))
35 if (!$stmt = mysqli_prepare($link, "SELECT * FROM test_bind_fetch ORDER BY c1"))
38 $c1 = $c2 = NULL;
39 mysqli_stmt_bind_result($stmt, $c1, $c2);
44 $test = array($c1, $c2);
H A D010.phpt23 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 float(3),
34 …mysqli_query($link, "INSERT INTO test_bind_fetch (c1,c2,c3,c4,c5,c6,c7) VALUES (3.1415926535,-0.00…
38 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
42 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D003.phpt20 c1 date,
40 c1 date,
61 $stmt = mysqli_prepare($link, "SELECT c1, c2, c3, c4, c5, c6, c7 FROM test_bind_result");
62 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
66 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
/PHP-5.5/ext/mbstring/oniguruma/enc/
H A Dutf16_le.c88 UChar c1 = *(p+1); in utf16le_mbc_to_code() local
90 if (UTF16_IS_SURROGATE_FIRST(c1)) { in utf16le_mbc_to_code()
91 code = ((((c1 - 0xd8) << 2) + ((c0 & 0xc0) >> 6) + 1) << 16) in utf16le_mbc_to_code()
96 code = c1 * 256 + p[0]; in utf16le_mbc_to_code()
/PHP-5.5/ext/gd/tests/
H A Dlibgd00106.phpt11 $c1 = imagecolorat($im, 1,1);
15 if ($c1 == 0xFFFFFF && $c2 == 0 && $c3 == 0 && $c4 == 0) {
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);
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug62836_1.phpt5 $serialized_object='O:1:"A":4:{s:1:"b";O:1:"B":0:{}s:2:"b1";r:2;s:1:"c";O:1:"B":0:{}s:2:"c1";r:4;}';
29 [c1] => B Object
H A Dbug62836_2.phpt5 $serialized_object='O:1:"A":4:{s:1:"b";O:1:"B":0:{}s:2:"b1";r:2;s:1:"c";O:1:"B":0:{}s:2:"c1";r:4;}';
32 [c1] => B Object
/PHP-5.5/ext/ctype/tests/
H A Dctype_digit_basic.phpt16 $c1 = '1234';
19 var_dump(ctype_digit($c1));
H A Dctype_alnum_basic.phpt16 $c1 = 'abcXYZ';
19 var_dump(ctype_alnum($c1));
/PHP-5.5/ext/tidy/tests/
H A D016.phpt18 p.c1 {font-weight: bold}
22 <p class="c1">testing</p>
/PHP-5.5/Zend/tests/
H A Dbug30702.phpt12 public $c1=bar::C1;
27 ["c1"]=>

Completed in 34 milliseconds

12345678