Home
last modified time | relevance | path

Searched refs:row (Results 226 – 250 of 367) sorted by relevance

12345678910>>...15

/PHP-8.1/ext/gd/libgd/
H A Dgd_topal.c321 int row; in prescan_quantize() local
326 for (row = 0; row < num_rows; row++) in prescan_quantize()
328 ptr = input_buf[row]; in prescan_quantize()
1143 int row; in pass2_no_dither() local
1148 for (row = 0; row < num_rows; row++) in pass2_no_dither()
1150 inptr = input_buf[row]; in pass2_no_dither()
1151 outptr = output_buf[row]; in pass2_no_dither()
1200 int row; in pass2_fs_dither() local
1212 SHIFT_TEMPS for (row = 0; row < num_rows; row++) in pass2_fs_dither()
1214 inptr = input_buf[row]; in pass2_fs_dither()
[all …]
/PHP-8.1/ext/sqlite3/tests/
H A Dsqlite3_05_delete.phpt26 echo "DELETING a row\n";
60 DELETING a row
/PHP-8.1/ext/oci8/tests/
H A Dimp_res_func_error.phpt43 while (($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
44 foreach ($row as $item) {
H A Dlob_044.phpt50 $row = oci_fetch_array($s);
51 var_dump($row[0]->read(10000));
H A Dimp_res_cancel.phpt42 while (($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
43 foreach ($row as $item) {
H A Dimp_res_get_close_3.phpt45 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
46 foreach ($row as $item) {
H A Dbug42173.phpt49 $row = oci_fetch_array($s, OCI_ASSOC);
50 var_dump($row);
52 foreach ($row as $name => $field) {
H A Dlob_006.phpt44 var_dump($row = oci_fetch_array($s));
46 var_dump($row[0]->read(10000));
H A Dimp_res_get_close_1.phpt46 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
47 foreach ($row as $item) {
H A Dimp_res_get_close_2.phpt46 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
47 foreach ($row as $item) {
H A Dpecl_bug8816.phpt60 while ( $row = oci_fetch_assoc($sth) ) {
61 var_dump($row);
H A Dimp_res_close.phpt47 while (($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
48 foreach ($row as $item) {
/PHP-8.1/ext/pdo_mysql/tests/
H A Dbug_33689.phpt22 foreach ($db->query('SELECT * from test') as $row) {
23 print_r($row);
H A Dbug_41997.phpt11 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
H A Dpdo_mysql_attr_server_info.phpt34 if (!$row = $stmt->fetch(PDO::FETCH_NUM))
37 $uptime = $row[1];
H A Dbug_41125.phpt11 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
H A Dbug_pecl_7976.phpt12 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
14 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
H A Dpdo_mysql_bit.phpt35 $row = $stmt->fetch(PDO::FETCH_ASSOC);
36 var_dump($row);
/PHP-8.1/ext/pdo_pgsql/tests/
H A Dbug43925.phpt50 foreach ($stmt->fetchAll() as $row) {
51 print implode(' - ', $row);
/PHP-8.1/ext/dba/tests/
H A Ddba_db4_016.phpt36 var_dump(dba_insert("key2", "second open test row 2", $db_file));
61 second open test row 2
/PHP-8.1/ext/pdo_oci/tests/
H A Dpecl_bug_6364.phpt37 foreach ($dbh->query("select * from bug_6364_t") as $row) {
38 var_dump($row);
/PHP-8.1/ext/pgsql/tests/
H A Dbug76548.phpt2 Bug #76548 pg_fetch_result did not fetch the next row
/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_stmt_fetch_geom.phpt80 foreach ($rows as $row) {
91 $new_id = $row['id'] + 10;
92 if (!mysqli_stmt_bind_param($stmt, "is", $new_id, $row['label'])) {
114 if ($row_normal['label'] != $row['label']) {
H A Dbug52891.phpt89 while ($row = $result->fetch_assoc()) {
90 var_dump($row);
93 while ($row = $result2->fetch_assoc()) {
94 var_dump($row);
H A Dmysqli_stmt_get_result_geom.phpt69 while ($row = mysqli_fetch_assoc($res)) {
70 $bind_res = &$row['label'];
82 $id = $row['id'] + 10;
95 $row['id'] + 10))) {

Completed in 59 milliseconds

12345678910>>...15