Searched refs:row (Results 1 - 25 of 692) 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/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/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/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/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);
H A Dappcache_info_view.cc35 int row = 0; local
36 SetValue(row++, manifest_url);
37 SetValue(row++, size);
38 SetValue(row++, creation_date);
39 SetValue(row++, last_access_date);
/external/webkit/Source/WebCore/html/
H A DHTMLTableRowElement.cpp66 // To match Firefox, the row indices work like this:
69 // Rows from other <thead> and <tfoot> elements don't get row indices at all.
74 for (Node *row = head->firstChild(); row; row = row->nextSibling()) {
75 if (row == this)
77 if (row->hasTagName(trTag))
85 for (Node* row = section->firstChild(); row; ro
[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/webkit/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/
H A Dcells.js5 var row = document.createElement("tr");
8 row.appendChild(container);
10 return row.cells.length;
15 var row = document.createElement("tr");
18 row.appendChild(container);
20 return row.cells.length;
/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/ceres-solver/internal/ceres/
H A Dvisibility_test.cc61 CompressedRow& row = bs.rows.back(); local
62 row.block.size = 2;
63 row.block.position = 0;
64 row.cells.push_back(Cell(0, 0));
65 row.cells.push_back(Cell(5, 0));
71 CompressedRow& row = bs.rows.back(); local
72 row.block.size = 2;
73 row.block.position = 2;
74 row.cells.push_back(Cell(0, 1));
75 row
81 CompressedRow& row = bs.rows.back(); local
91 CompressedRow& row = bs.rows.back(); local
141 CompressedRow& row = bs.rows.back(); local
150 CompressedRow& row = bs.rows.back(); local
159 CompressedRow& row = bs.rows.back(); local
168 CompressedRow& row = bs.rows.back(); local
[all...]
H A Ddetect_structure.cc48 // Iterate over row blocks of the matrix, checking if row_block,
51 const CompressedRow& row = bs.rows[r]; local
54 if (row.cells.front().block_id >= num_eliminate_blocks) {
57 const int e_block_id = row.cells.front().block_id;
60 *row_block_size = row.block.size;
62 *row_block_size != row.block.size) {
63 VLOG(2) << "Dynamic row block size because the block size changed from "
65 << row.block.size;
81 if (row.cells.size() > 1) {
82 const int f_block_id = row
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dmv.h18 short row; member in struct:__anon8999
/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);
/external/skia/src/gpu/effects/
H A DGrTextureStripAtlas.cpp101 // We already have the data in a row, so we can just return that row
102 AtlasRow* row = fKeyTable[index]; local
103 if (0 == row->fLocks) {
104 this->removeFromLRU(row);
106 ++row->fLocks;
110 // required for storing row numbers and just compute it with some pointer arithmetic
111 rowNumber = static_cast<int>(row - fRows);
116 // We don't have this data cached, so pick the least recently used row to copy into
117 AtlasRow* row local
172 unlockRow(int row) argument
188 AtlasRow* row = fLRUFront; local
235 appendLRU(AtlasRow* row) argument
247 removeFromLRU(AtlasRow* row) argument
[all...]
/external/eigen/Eigen/src/Eigen2Support/
H A DMinor.h62 Index row, Index col)
63 : m_matrix(matrix), m_row(row), m_col(col)
65 eigen_assert(row >= 0 && row < matrix.rows()
74 inline Scalar& coeffRef(Index row, Index col) argument
76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col));
79 inline const Scalar coeff(Index row, Index col) const argument
81 return m_matrix.coeff(row + (row >
61 Minor(const MatrixType& matrix, Index row, Index col) argument
101 minor(Index row, Index col) argument
110 minor(Index row, Index col) const argument
[all...]
/external/eigen/Eigen/src/Core/
H A DSwap.h52 inline Scalar& coeffRef(Index row, Index col) argument
54 return m_expression.const_cast_derived().coeffRef(row, col);
62 inline Scalar& coeffRef(Index row, Index col) const argument
64 return m_expression.coeffRef(row, col);
73 void copyCoeff(Index row, Index col, const DenseBase<OtherDerived>& other) argument
76 eigen_internal_assert(row >= 0 && row < rows()
78 Scalar tmp = m_expression.coeff(row, col);
79 m_expression.coeffRef(row, col) = _other.coeff(row, co
94 copyPacket(Index row, Index col, const DenseBase<OtherDerived>& other) argument
[all...]
/external/icu4c/common/
H A Dpropsvec.c33 int32_t prevRow; /* search optimization: remember last row seen */
44 uint32_t *v, *row; local
70 /* set the all-Unicode row and the special-value rows */
71 row=pv->v;
72 uprv_memset(row, 0, pv->rows*columns*4);
73 row[0]=0;
74 row[1]=0x110000;
75 row+=columns;
77 row[0]=cp;
78 row[
94 uint32_t *row; local
279 uint32_t *row; local
293 uint32_t *row; local
335 uint32_t *row; local
496 upvec_compactToUTrie2Handler(void *context, UChar32 start, UChar32 end, int32_t rowIndex, uint32_t *row, int32_t columns, UErrorCode *pErrorCode) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macmouse.c56 int row, bytes; local
74 for ( row=0; row<h; ++row ) {
75 SDL_memcpy(&cursor->curs.data[row], data, bytes);
78 for ( row=0; row<h; ++row ) {
79 SDL_memcpy(&cursor->curs.mask[row], mask, bytes);
/external/chromium-trace/trace-viewer/src/analysis/
H A Dsingle_counter_selection_analysis.js66 rowEl.classList.add('analysis-table-row');
74 var row = document.createElement('div');
76 this.createAndAppendSpan_(row, 'Counter Title');
77 this.createAndAppendSpan_(row, 'Timestamp');
79 return row;
82 createAndAppendSpan_: function(row, content) {
86 row.appendChild(el);
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityARIAGrid.cpp67 AccessibilityTableRow* row = static_cast<AccessibilityTableRow*>(child);
68 if (appendedRows.contains(row))
72 unsigned rowCellCount = row->children().size();
76 row->setRowIndex((int)m_rows.size());
77 m_rows.append(row);
79 // Try adding the row if it's not ignoring accessibility,
81 if (!row->accessibilityIsIgnored())
82 m_children.append(row);
84 m_children.append(row->children());
86 appendedRows.add(row);
141 cellForColumnAndRow(unsigned column, unsigned row) argument
[all...]

Completed in 1228 milliseconds

1234567891011>>