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

1234567891011>>

/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'];
H A Dadd-mo.php28 $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'];
H A Dsignup.php18 $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) {
/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 (int row=0; row<A.size() ; row++){
46 init_row<init_function>(A[row],size,row);
53 for (int row=0; row<A.size() ; row
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer_pow2.cpp24 Row* row = &fRows[HeightToRowIndex(height)]; local
25 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height);
27 if (0 == row->fRowHeight) {
31 this->initRow(row, height);
33 if (!row->canAddWidth(width, this->width())) {
37 // that row is now "full", so retarget our Row record for
39 this->initRow(row, height);
43 SkASSERT(row->fRowHeight == height);
44 SkASSERT(row
[all...]
/external/skia/src/gpu/
H A DGrRectanizer_pow2.cpp24 Row* row = &fRows[HeightToRowIndex(height)]; local
25 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height);
27 if (0 == row->fRowHeight) {
31 this->initRow(row, height);
33 if (!row->canAddWidth(width, this->width())) {
37 // that row is now "full", so retarget our Row record for
39 this->initRow(row, height);
43 SkASSERT(row->fRowHeight == height);
44 SkASSERT(row
[all...]
/external/chromium_org/chrome/browser/history/android/
H A Durls_sql_handler_unittest.cc52 // Insert a row only has URL to verify the visit count and last visit time
55 HistoryAndBookmarkRow row; local
56 row.set_raw_url("http://google.com");
57 row.set_url(GURL("http://google.com"));
59 ASSERT_TRUE(urls_sql_handler_.Insert(&row));
61 ASSERT_TRUE(history_db_.GetURLRow(row.url_id(), &url_row));
62 EXPECT_EQ(row.url(), url_row.url());
66 // The new row's id was set in url_row correctly.
67 EXPECT_EQ(row.url_id(), url_row.id());
70 // Insert a row wit
73 HistoryAndBookmarkRow row; local
91 HistoryAndBookmarkRow row; local
110 HistoryAndBookmarkRow row; local
131 HistoryAndBookmarkRow row; local
148 HistoryAndBookmarkRow row; local
167 HistoryAndBookmarkRow row; local
200 HistoryAndBookmarkRow row; local
239 HistoryAndBookmarkRow row; local
269 HistoryAndBookmarkRow row; local
294 HistoryAndBookmarkRow row; local
322 HistoryAndBookmarkRow row; local
[all...]
H A Durls_sql_handler.cc30 bool UrlsSQLHandler::Insert(HistoryAndBookmarkRow* row) { argument
31 URLRow url_row(row->url());
33 URLID id = history_db_->GetRowForURL(row->url(), &url_row);
36 return false; // We already has this row.
39 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::TITLE))
40 url_row.set_title(row->title());
42 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::LAST_VISIT_TIME))
43 url_row.set_last_visit(row->last_visit_time());
45 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::VISIT_COUNT))
46 url_row.set_visit_count(row
93 Update(const HistoryAndBookmarkRow& row, const TableIDRows& ids_set) argument
[all...]
H A Dvisit_sql_handler_unittest.cc55 HistoryAndBookmarkRow row; local
56 row.set_raw_url("http://google.com");
57 row.set_url(GURL("http://google.com"));
59 ASSERT_TRUE(urls_sql_handler_.Insert(&row));
60 ASSERT_TRUE(visit_sql_handler_.Insert(&row));
63 ASSERT_TRUE(history_db_.GetURLRow(row.url_id(), &url_row));
67 ASSERT_TRUE(history_db_.GetVisitsForURL(row.url_id(), &visits));
73 HistoryAndBookmarkRow row; local
74 row.set_raw_url("http://google.com");
75 row
92 HistoryAndBookmarkRow row; local
112 HistoryAndBookmarkRow row; local
132 HistoryAndBookmarkRow row; local
157 HistoryAndBookmarkRow row; local
190 HistoryAndBookmarkRow row; local
223 HistoryAndBookmarkRow row; local
255 HistoryAndBookmarkRow row; local
282 HistoryAndBookmarkRow row; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
H A Devent_analyzing_sample.py134 for row in commq:
135 print "%16s %8d %s" % (row[0], row[1], num2sym(row[1]))
140 for row in symbolq:
141 print "%32s %8d %s" % (row[0], row[1], num2sym(row[1]))
146 for row in dsoq:
147 print "%40s %8d %s" % (row[
[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/chromium_org/ui/webui/resources/js/cr/ui/
H A Dfocus_grid.js10 * focusable [focused] focusable (row: 0, col: 1)
14 * Pressing the down arrow would result in the focus moving down 1 row and
18 * focusable [focused] focusable (row: 1, col: 1)
24 * focusable focusable [focused] (row: 1, col: 2)
46 * @return {?{row: number, col: number}} A position or null if not found.
52 return {row: i, col: j};
63 var row = -1;
66 row = rowIndex - 1;
68 row = rowIndex + 1;
70 row
[all...]
/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/chromium_org/chrome/browser/resources/net_internals/
H A Dlogs_view.js14 var LOG_ROW_COLLAPSED_CLASSNAME = 'logs-view-log-row-collapsed';
15 var LOG_ROW_EXPANDED_CLASSNAME = 'logs-view-log-row-expanded';
80 * Called during View's initialization. Creates the row of a table logs will
81 * be shown in. Each row has 4 cells.
89 var row = document.createElement('tr');
95 row.appendChild(rowCell);
115 this.onButtonClicked_.bind(this, row));
122 row.className = LOG_ROW_COLLAPSED_CLASSNAME;
124 // We will need those to process row buttons' onclick events.
125 row
[all...]
/external/chromium_org/content/browser/resources/accessibility/
H A Daccessibility.js46 var row = element.parentElement;
48 while (row.lastChild != element)
49 row.removeChild(row.lastChild);
51 row.appendChild(document.createTextNode(' | '));
52 row.appendChild(createShowAccessibilityTreeElement(data, row, false));
90 var row = document.createElement('div');
91 row.className = 'row';
[all...]
/external/libhevc/common/arm/
H A Dihevc_intra_pred_luma_mode_3_to_9.s179 sub r1, r1, #9 @ref_main_idx + 2nt - (8 + 1)(two_nt - idx - row ) for 8 & 8 - 1row
196 vmov.i8 d27, #7 @row 0 to 7
198 vsub.s8 d8, d8, d2 @ref_main_idx (sub row)
199 vsub.s8 d8, d26, d8 @ref_main_idx (row 0)
201 vsub.s8 d9, d8, d2 @ref_main_idx + 1 (row 0)
202 vtbl.8 d12, {d0,d1}, d8 @load from ref_main_idx (row 0)
205 vtbl.8 d13, {d0,d1}, d9 @load from ref_main_idx + 1 (row 0)
206 vsub.s8 d4, d8, d2 @ref_main_idx (row 1)
207 vsub.s8 d5, d9, d2 @ref_main_idx + 1 (row
[all...]
H A Dihevc_intra_pred_chroma_mode_3_to_9.s170 sub r1, r1, #26 @ref_main_idx + 2nt - (8 + 1)(two_nt - idx - row ) for 8 & 8 - 1row
191 vmov.i8 d9, #22 @row 0 to 7
193 vsub.s8 d8, d8, d27 @ref_main_idx (sub row)
194 vsub.s8 d8, d26, d8 @ref_main_idx (row 0)
196 vsub.s8 d9, d8, d29 @ref_main_idx + 1 (row 0)
197 vtbl.8 d12, {d0,d1,d2,d3}, d8 @load from ref_main_idx (row 0)
200 vtbl.8 d13, {d0,d1,d2,d3}, d9 @load from ref_main_idx + 1 (row 0)
201 vsub.s8 d4, d8, d29 @ref_main_idx (row 1)
202 vsub.s8 d5, d9, d29 @ref_main_idx + 1 (row
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
H A Dstorage.js54 var row = sel[i].row;
55 var curArchive = this.tableData_.getValue(row, 0);
61 snapshots.push(this.tableData_.getValue(row, 1));
74 var row = sel[0].row;
75 mmap.dumpMmapsFromStorage(this.tableData_.getValue(row, 0),
76 this.tableData_.getValue(row, 1))
87 var row = sel[0].row;
[all...]
/external/chromium_org/v8/tools/
H A Dprocess-heap-prof.py64 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[
[all...]
/external/eigen/test/
H A Dschur_real.cpp22 for(int row = 2; row < size; ++row) {
23 for(int col = 0; col < row - 1; ++col) {
24 VERIFY(T(row,col) == Scalar(0));
30 for(int row = 1; row < size; ++row) {
31 if (T(row,row
[all...]

Completed in 3413 milliseconds

1234567891011>>