/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/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...] |
/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...] |
/docs/source.android.com/en/reference/assets/css/ |
landing.css | 1 /* Snapshot of the devsite landing page styles for row and column layout. 5 .sac-landing-row-theme-color .button-white:hover { 8 .sac-landing-row-theme-color .button-white:focus { 11 .sac-landing-row-theme-color .button-primary { 15 .sac-landing-row-theme-color .button-primary:active, 16 .sac-landing-row-theme-color .button-primary:focus { 19 .sac-landing-row-theme-color .button-primary:hover { 22 .sac-landing-row h2, 23 .sac-landing-row-large-headings .sac-landing-row-item-description>a>h3 [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 | 29 * A RowPresenter for series schedule row. 58 protected String onGetRecordingTimeText(ScheduleRow row) { 59 return Utils.getDurationString(getContext(), row.getStartTimeMs(), row.getEndTimeMs(), 64 protected String onGetProgramInfoText(ScheduleRow row) { 65 return row.getEpisodeDisplayTitle(getContext()); 72 EpisodicProgramRow row = (EpisodicProgramRow) item; local 73 if (getDvrManager().isConflicting(row.getSchedule())) { 85 protected void onInfoClicked(ScheduleRow row) { 86 DvrUiHelper.startSchedulesActivity(getContext(), row.getSchedule()) 92 "Start request with the existing schedule: " + row); local 100 "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();
|
/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...] |
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
AboveShelfObserverTest.java | 49 ExpandableNotificationRow row = mNotificationTestHelper.createRow(); local 50 row.setAboveShelfChangedListener(mObserver); 51 mHostLayout.addView(row); 52 row = mNotificationTestHelper.createRow(); 53 row.setAboveShelfChangedListener(mObserver); 54 mHostLayout.addView(row); 60 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); local 62 row.setHeadsUp(true); 68 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); local 69 row.setHeadsUp(true) 77 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); local [all...] |
/frameworks/rs/ |
rsMatrix2x2.h | 28 inline float get(uint32_t col, uint32_t row) const { 29 return m[col*2 + row]; 32 inline void set(uint32_t col, uint32_t row, float v) { 33 m[col*2 + row] = v;
|
rsMatrix3x3.h | 28 inline float get(uint32_t col, uint32_t row) const { 29 return m[col*3 + row]; 32 inline void set(uint32_t col, uint32_t row, float v) { 33 m[col*3 + row] = v;
|
/cts/tools/dasm/src/java_cup/ |
parse_action_table.java | 7 * It has one row for each state in the parse machine, and a column for 67 for (int row = 0; row < num_states(); row++) 69 for (int col = 0; col < under_state[row].size(); col++) 72 act = under_state[row].under_term[col]; 112 for (int row = 0; row < num_states(); row++) 114 result += "From state #" + row + "\n" [all...] |