HomeSort by relevance Sort by last modified time
    Searched defs:row (Results 1 - 25 of 1543) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Doc/includes/sqlite3/
text_factory.py 10 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 = cur.fetchone( variable
    [all...]
pysqlite_datetime.py 13 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[1]
    [all...]
  /external/python/cpython3/Doc/includes/sqlite3/
text_factory.py 10 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"
pysqlite_datetime.py 13 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[1])
    [all...]
  /external/skia/src/gpu/
GrRectanizer_pow2.cpp 23 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)
    [all...]
  /external/skqp/src/gpu/
GrRectanizer_pow2.cpp 23 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)
    [all...]
  /external/wpa_supplicant_8/hs20/server/www/
signup.php 18 $row = $db->query("SELECT realm FROM sessions WHERE id='$id'")->fetch(); variable
19 if ($row == false) {
22 $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) {
cert-enroll.php 17 $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'];
redirect.php 15 $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'];
add-free.php 17 $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 = $db->query("SELECT password FROM users WHERE identity='$user' AND realm='$realm'")->fetch() variable
    [all...]
add-mo.php 28 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); variable
29 if ($row == false) {
32 $realm = $row['realm'];
42 $uri = $row['redirect_uri'];
43 $rowid = $row['rowid'];
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_utils.cpp 28 int row; local
29 row = MB_SIZE;
32 while (row)
76 row -= 4;
89 int row; local
91 row = B_SIZE;
92 while (row)
129 row -= 4;
  /device/google/cuttlefish_common/host/frontend/vnc_server/
jpeg_compressor.cpp 57 auto row = static_cast<JSAMPROW>(const_cast<std::uint8_t*>( local
61 jpeg_write_scanlines(&cinfo, &row, 1);
  /external/libjpeg-turbo/simd/
jcsample.h 17 int row; local
21 for (row = 0; row < num_rows; row++) {
22 ptr = image_data[row] + input_cols;
  /external/libvpx/libvpx/vp8/common/
mv.h 20 short row; member in struct:__anon26119
  /external/mesa3d/src/mesa/swrast/
s_bitmap.c 54 GLint row, col; local
77 for (row = 0; row < height; row++) {
79 bitmap, width, height, GL_COLOR_INDEX, GL_BITMAP, row, 0);
87 span.array->y[count] = py + row;
99 /* get ready for next row */
109 span.array->y[count] = py + row;
121 /* get ready for next row */
126 if (count + width >= SWRAST_MAX_WIDTH || row + 1 == height)
    [all...]
  /external/skia/experimental/tools/
generate-unicode-test-txt 57 row = i - (i & 63) variable
58 if last_row != row:
59 if row:
60 o.write('\n' if row % 1024 else '\n\n')
61 o.write('U+%06x ' % row)
62 last_row = row
  /external/skqp/experimental/tools/
generate-unicode-test-txt 57 row = i - (i & 63) variable
58 if last_row != row:
59 if row:
60 o.write('\n' if row % 1024 else '\n\n')
61 o.write('U+%06x ' % row)
62 last_row = row
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationMenuRowTest.java 53 NotificationMenuRowPlugin row = new NotificationMenuRow(mContext); local
54 row.createMenu(null, null);
55 ViewUtils.attachView(row.getMenuView());
57 ViewUtils.detachView(row.getMenuView());
63 NotificationMenuRowPlugin row = new NotificationMenuRow(mContext); local
64 row.createMenu(null, null);
65 assertTrue(row.getMenuView() != null);
66 row.createMenu(null, null);
67 assertTrue(row.getMenuView() != null);
72 NotificationMenuRowPlugin row = new NotificationMenuRow(mContext) local
78 NotificationMenuRow row = new NotificationMenuRow(mContext); local
    [all...]
  /external/libavc/common/
ih264_padding.c 70 * 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 <= pad_size; row++
175 WORD32 row; local
218 WORD32 row, col; local
271 WORD32 row; local
312 WORD32 row, col; local
    [all...]
  /external/libavc/common/x86/
ih264_padding_ssse3.c 97 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 = 0; row < ht; row++
297 WORD32 row; local
    [all...]
  /external/libhevc/common/
ihevc_weighted_pred.c 117 WORD32 row, col; local
120 for(row = 0; row < ht; row++)
202 WORD32 row, col; local
205 for(row = 0; row < ht; row++)
308 WORD32 row, col; local
311 for(row = 0; row < ht; row++
413 WORD32 row, col; local
500 WORD32 row, col; local
583 WORD32 row, col; local
    [all...]
  /external/libhevc/decoder/
ihevcd_itrans_recon_dc.c 93 WORD32 row, col; local
109 for(row = 0; row < trans_size; row++)
111 pu1_dst[row * dst_strd + col] = CLIP_U8((pu1_pred[row * pred_strd + col] + dc_value));
123 WORD32 row, col; local
140 for(row = 0; row < trans_size; row++
    [all...]
  /external/skia/src/core/
SkTaskGroup2D.cpp 36 // Note that row = threadId
47 int row = threadId; local
55 RowData& rowData = fRowData[row];
65 fKernel->work2D(row, rowData.fNextColumn, threadId)) {
72 numRowsCompleted += (completedRows[row] == false);
73 completedRows[row] = true; // so we won't count this row twice
81 // By reaching here, we're either unable to acquire the row, or out of work, or blocked by
83 row = (row + 1) % fHeight; // Move to the next ro
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 55 TableRow row = new TableRow(this); local
66 row.addView(label, new TableRow.LayoutParams(1));
67 row.addView(shortcut, new TableRow.LayoutParams());
69 table.addView(row, new TableLayout.LayoutParams());

Completed in 999 milliseconds

1 2 3 4 5 6 7 8 91011>>