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

1234567891011>>

/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/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...]
H A Dandroid_urls_sql_handler.cc28 bool AndroidURLsSQLHandler::Update(const HistoryAndBookmarkRow& row, argument
30 DCHECK(row.is_value_set_explicitly(HistoryAndBookmarkRow::URL_ID));
31 DCHECK(row.is_value_set_explicitly(HistoryAndBookmarkRow::RAW_URL));
39 return history_db_->UpdateAndroidURLRow(android_url_row.id, row.raw_url(),
40 row.url_id());
43 bool AndroidURLsSQLHandler::Insert(HistoryAndBookmarkRow* row) { argument
44 AndroidURLID new_id = history_db_->AddAndroidURLRow(row->raw_url(),
45 row->url_id());
46 row->set_id(new_id);
/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...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer.cpp61 void initRow(Row* row, int rowHeight) { argument
62 row->fLoc.set(0, fNextStripY);
63 row->fRowHeight = rowHeight;
77 We use bsearch, but there may be more than one row with the same height,
86 Row* row = &fRows[HeightToRowIndex(height)]; local
87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height);
89 if (0 == row->fRowHeight) {
93 this->initRow(row, height);
95 if (!row
[all...]
H A DGrRectanizer_fifo.cpp61 void initRow(Row* row, int rowHeight) { argument
62 row->fLoc.set(0, fNextStripY);
63 row->fRowHeight = rowHeight;
77 We use bsearch, but there may be more than one row with the same height,
86 Row* row = &fRows[HeightToRowIndex(height)]; local
87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height);
89 if (0 == row->fRowHeight) {
93 this->initRow(row, height);
95 if (!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();
H A DTutorial_commainit_01b.cpp2 m.row(0) << 1, 2, 3;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_mv.h19 int16_t row; member in struct:__anon20680
29 int32_t row; member in struct:__anon20681
36 mv->row = clamp(mv->row, min_row, max_row);
/external/skia/src/gpu/
H A DGrRectanizer.cpp61 void initRow(Row* row, int rowHeight) { argument
62 row->fLoc.set(0, fNextStripY);
63 row->fRowHeight = rowHeight;
77 We use bsearch, but there may be more than one row with the same height,
86 Row* row = &fRows[HeightToRowIndex(height)]; local
87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height);
89 if (0 == row->fRowHeight) {
93 this->initRow(row, height);
95 if (!row
[all...]
H A DGrRectanizer_fifo.cpp61 void initRow(Row* row, int rowHeight) { argument
62 row->fLoc.set(0, fNextStripY);
63 row->fRowHeight = rowHeight;
77 We use bsearch, but there may be more than one row with the same height,
86 Row* row = &fRows[HeightToRowIndex(height)]; local
87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height);
89 if (0 == row->fRowHeight) {
93 this->initRow(row, height);
95 if (!row
[all...]
/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/chrome/browser/ui/views/
H A Ddatabase_open_info_view.cc35 int row = 0; local
36 SetValue(row++, url);
37 SetValue(row++, database_name);
38 SetValue(row++, display_name);
39 SetValue(row++, size);
/external/chromium_org/content/browser/resources/accessibility/
H A Daccessibility.js28 var row = element.parentElement;
30 while (row.lastChild != element)
31 row.removeChild(row.lastChild);
33 row.appendChild(document.createTextNode(' | '));
34 row.appendChild(createShowAccessibilityTreeElement(data, row, false));
71 var row = document.createElement('div');
72 row.className = '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/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/markdown/markdown/extensions/
H A Dtables.py55 for row in rows:
56 self._build_row(row, tbody, align, border)
58 def _build_row(self, row, parent, align, border):
59 """ Given a row of text, build table cells. """
64 cells = self._split_row(row, border)
65 # We use align here rather than cells to ensure every row
76 def _split_row(self, row, border):
77 """ split a row of text into list of cells. """
79 if row.startswith('|'):
80 row
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dprofile_signin_confirmation.css5 #button-row {
14 #button-row button {
/external/libvpx/libvpx/vp8/common/
H A Dmv.h18 short row; member in struct:__anon20615
/external/ceres-solver/internal/ceres/
H A Dvisibility_test.cc63 CompressedRow& row = bs.rows.back(); local
64 row.block.size = 2;
65 row.block.position = 0;
66 row.cells.push_back(Cell(0, 0));
67 row.cells.push_back(Cell(5, 0));
73 CompressedRow& row = bs.rows.back(); local
74 row.block.size = 2;
75 row.block.position = 2;
76 row.cells.push_back(Cell(0, 1));
77 row
83 CompressedRow& row = bs.rows.back(); local
93 CompressedRow& row = bs.rows.back(); local
143 CompressedRow& row = bs.rows.back(); local
152 CompressedRow& row = bs.rows.back(); local
161 CompressedRow& row = bs.rows.back(); local
170 CompressedRow& row = bs.rows.back(); local
[all...]
/external/skia/bench/
H A DTableBench.cpp51 for (int row = 0; row < kNumRows; ++row) {
54 row * kCellHeight,
56 (row+1) * kCellHeight);
60 row * kCellHeight + (kCellHeight-SK_Scalar1),
62 (row+1) * kCellHeight);
66 row * kCellHeight,
68 (row+1) * kCellHeight);

Completed in 546 milliseconds

1234567891011>>