Searched refs:row (Results 1 - 25 of 1416) sorted by relevance

1234567891011>>

/external/python/cpython2/Doc/includes/sqlite3/
H A Drowclass.py8 for row in cur:
9 assert row[0] == row["name"]
10 assert row["name"] == row["nAmE"]
11 assert row[1] == row["age"]
12 assert row[1] == row["AgE"]
H A Dpysqlite_datetime.py13 row = cur.fetchone() variable
14 print today, "=>", row[0], type(row[0])
15 print now, "=>", row[1], type(row[1])
18 row = cur.fetchone() variable
19 print "current_date", row[0], type(row[0])
20 print "current_timestamp", row[1], type(row[
[all...]
H A Dtext_factory.py10 row = cur.fetchone() variable
11 assert row[0] == AUSTRIA
16 row = cur.fetchone() variable
17 assert type(row[0]) is str
20 assert row[0] == AUSTRIA.encode("utf-8")
28 row = cur.fetchone() variable
29 assert type(row[0]) is unicode
35 row = cur.fetchone() variable
36 assert type(row[0]) is unicode
39 row variable
[all...]
H A Dload_extension.py25 for row in con.execute("select rowid, name, ingredients from recipe where name match 'pie'"):
26 print row
H A Dshortcut_methods.py17 for row in con.execute("select firstname, lastname from person"):
18 print row
/external/python/cpython3/Doc/includes/sqlite3/
H A Drowclass.py8 for row in cur:
9 assert row[0] == row["name"]
10 assert row["name"] == row["nAmE"]
11 assert row[1] == row["age"]
12 assert row[1] == row["AgE"]
H A Dpysqlite_datetime.py13 row = cur.fetchone() variable
14 print(today, "=>", row[0], type(row[0]))
15 print(now, "=>", row[1], type(row[1]))
18 row = cur.fetchone() variable
19 print("current_date", row[0], type(row[0]))
20 print("current_timestamp", row[1], type(row[
[all...]
H A Dtext_factory.py10 row = cur.fetchone() variable
11 assert row[0] == AUSTRIA
16 row = cur.fetchone() variable
17 assert type(row[0]) is bytes
20 assert row[0] == AUSTRIA.encode("utf-8")
26 row = cur.fetchone() variable
27 assert row[0] == "barfoo"
H A Dload_extension.py25 for row in con.execute("select rowid, name, ingredients from recipe where name match 'pie'"):
26 print(row)
H A Dshortcut_methods.py17 for row in con.execute("select firstname, lastname from person"):
18 print(row)
/external/wpa_supplicant_8/hs20/server/www/
H A Dadd-free.php17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); variable
18 if ($row == false) {
22 $uri = $row['redirect_uri'];
23 $rowid = $row['rowid'];
24 $realm = $row['realm'];
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch(); variable
27 if (!$row || strlen($row['value']) == 0) {
31 $user = $row['value'];
33 $row variable
[all...]
H A Dusers.php22 $row = $db->query("SELECT dump FROM eventlog WHERE rowid=$id")->fetch(); variable
23 $dump = $row['dump'];
41 $row = $db->query("SELECT $mo FROM users WHERE rowid=$id")->fetch(); variable
44 echo $row[$mo];
49 $row = $db->query("SELECT cert_pem FROM users WHERE rowid=$id")->fetch(); variable
51 echo $row['cert_pem'];
128 $row = $db->query("SELECT rowid,* FROM users WHERE rowid=$id")->fetch(); variable
130 echo "<H3>" . $row['identity'] . "@" . $row['realm'] . "</H3>\n";
133 if (strlen($row['devinf
[all...]
H A Dredirect.php15 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); variable
16 if ($row == false) {
20 $uri = $row['redirect_uri'];
24 $user = $row['user'];
25 $realm = $row['realm'];
H A Dcert-enroll.php17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); variable
18 if ($row == false) {
22 $uri = $row['redirect_uri'];
23 $rowid = $row['rowid'];
24 $realm = $row['realm'];
/external/eigen/bench/btl/generic_bench/init/
H A Dinit_matrix.hh28 BTL_DONT_INLINE void init_row(Vector & X, int size, int row){ argument
33 X[j]=typename Vector::value_type(init_function(row,j));
45 for (unsigned int row=0; row<A.size() ; row++){
46 init_row<init_function>(A[row],size,row);
53 for (unsigned int row=0; row<A.size() ; row
[all...]
/external/skia/src/gpu/
H A DGrRectanizer_pow2.cpp23 Row* row = &fRows[HeightToRowIndex(height)]; local
24 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height);
26 if (0 == row->fRowHeight) {
30 this->initRow(row, height);
32 if (!row->canAddWidth(width, this->width())) {
36 // that row is now "full", so retarget our Row record for
38 this->initRow(row, height);
42 SkASSERT(row->fRowHeight == height);
43 SkASSERT(row
[all...]
/external/skqp/src/gpu/
H A DGrRectanizer_pow2.cpp23 Row* row = &fRows[HeightToRowIndex(height)]; local
24 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height);
26 if (0 == row->fRowHeight) {
30 this->initRow(row, height);
32 if (!row->canAddWidth(width, this->width())) {
36 // that row is now "full", so retarget our Row record for
38 this->initRow(row, height);
42 SkASSERT(row->fRowHeight == height);
43 SkASSERT(row
[all...]
/external/libavc/common/
H A Dih264_padding.c70 * The top row of a 2d array is replicated for pad_size times at the top
95 WORD32 row; local
97 for(row = 1; row <= pad_size; row++)
99 memcpy(pu1_src - row * src_strd, pu1_src, wd);
111 * The bottom row of a 2d array is replicated for pad_size times at the bottom
136 WORD32 row; local
138 for(row = 1; row <
175 WORD32 row; local
218 WORD32 row, col; local
271 WORD32 row; local
312 WORD32 row, col; local
[all...]
/external/libhevc/common/
H A Dihevc_padding.c95 WORD32 row; local
97 for(row = 1; row <= pad_size; row++)
99 memcpy(pu1_src - row * src_strd, pu1_src, wd);
100 memcpy(pu1_src + (ht + row - 1) * src_strd,
149 WORD32 row; local
157 for(row = 0; row < ht; row
216 WORD32 row; local
273 WORD32 row; local
327 WORD32 row; local
382 WORD32 row; local
438 WORD32 row; local
503 WORD32 row; local
559 WORD32 row; local
[all...]
/external/libjpeg-turbo/simd/
H A Djcsample.h17 int row; local
21 for (row = 0; row < num_rows; row++) {
22 ptr = image_data[row] + input_cols;
/external/autotest/frontend/migrations/
H A D022_implement_sync_count.py22 job_hqe_count = dict((row[0], row[2]) for row in rows)
23 synch_jobs = set(row[0] for row in rows if row[1] == 2)
/external/eigen/doc/snippets/
H A DMatrixBase_row.cpp2 m.row(1) = Vector3d(4,5,6);
H A DMatrixBase_setOnes.cpp2 m.row(1).setOnes();
H A DMatrixBase_setZero.cpp2 m.row(1).setZero();
/external/libavc/common/x86/
H A Dih264_padding_ssse3.c97 WORD32 row; local
103 for(row = 0; row < ht; row++)
164 WORD32 row; local
169 for(row = 0; row < ht; row++)
230 WORD32 row; local
236 for(row
297 WORD32 row; local
[all...]

Completed in 980 milliseconds

1234567891011>>