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

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Doc/includes/sqlite3/
rowclass.py 4 con.row_factory = sqlite3.Row
8 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"
    [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...]
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...]
shortcut_methods.py 17 for row in con.execute("select firstname, lastname from person"):
18 print row
  /external/python/cpython3/Doc/includes/sqlite3/
rowclass.py 4 con.row_factory = sqlite3.Row
8 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"
    [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...]
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"
shortcut_methods.py 17 for row in con.execute("select firstname, lastname from person"):
18 print(row)
  /external/wpa_supplicant_8/hs20/server/www/
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...]
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'];
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'];
users.php 22 $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['devinfo']) > 0)
    [all...]
  /test/vti/dashboard/src/main/webapp/css/
show_test_acknowledgments.css 15 .row.home-tabs-row {
18 .row.home-tabs-row li.col.tab {
  /external/eigen/bench/btl/generic_bench/init/
init_matrix.hh 28 BTL_DONT_INLINE void init_row(Vector & X, int size, int row){
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/
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/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/libhevc/common/
ihevc_padding.c 95 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/v8/tools/
process-heap-prof.py 64 for row in logreader:
65 if row[0] == 'heap-sample-begin' and row[1] == 'Heap':
66 sample_time = float(row[3])/1000.0
72 elif row[0] == 'heap-sample-end' and row[1] == 'Heap':
75 elif row[0] == itemname and sampling:
76 print(row[1]),
78 print('%d' % (int(row[2]))),
80 print('%d' % (int(row[3])))
    [all...]
  /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;
  /packages/apps/TV/src/com/android/tv/dvr/ui/list/
SeriesScheduleRowPresenter.java 27 /** A RowPresenter for series schedule row. */
57 protected String onGetRecordingTimeText(ScheduleRow row) {
59 getContext(), row.getStartTimeMs(), row.getEndTimeMs(), false, true, true, 0);
63 protected String onGetProgramInfoText(ScheduleRow row) {
64 return row.getEpisodeDisplayTitle(getContext());
71 EpisodicProgramRow row = (EpisodicProgramRow) item; local
72 if (getDvrManager().isConflicting(row.getSchedule())) {
90 protected void onInfoClicked(ScheduleRow row) {
91 DvrUiHelper.startSchedulesActivity(getContext(), row.getSchedule())
97 row.getSchedule() == null, TAG, "Start request with the existing schedule: " + row); local
105 row.getSchedule() != null, TAG, "Stop request with the null schedule: " + row); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
FocusChangeWithInterestingRectHintTest.java 37 * when taking focus to best select the internal row to show as selected.
73 for (int row = 0; row < numRows; row++) {
75 if ((row % 2) == 0) {
76 assertEquals("row " + row + ": should be at left column",
77 row, mLeftColumn.getSelectedRow());
80 assertTrue("row " + row + ": should be at middle column"
    [all...]
  /external/eigen/doc/snippets/
MatrixBase_row.cpp 2 m.row(1) = Vector3d(4,5,6);
MatrixBase_setOnes.cpp 2 m.row(1).setOnes();
MatrixBase_setZero.cpp 2 m.row(1).setZero();

Completed in 806 milliseconds

1 2 3 4 5 6 7 8 91011>>