Searched refs:rows (Results 151 - 175 of 989) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableSectionElement.idl26 readonly attribute HTMLCollection rows;
/external/chromium_org/third_party/skia/src/utils/
H A DSkPatchGrid.h90 SkPatchGrid(int rows = 0, int cols = 0, VertexType flags = kNone_VertexType,
114 * Resets the grid of patches to contain rows and cols of patches.
116 void reset(int rows, int cols, VertexType flags, SkXfermode* xMode);
/external/chromium_org/tools/perf/utils/results_viewer/src/
H A Dresults_viewer.js36 var rows = fileContents.split('\n');
38 rows.forEach(function (row, index, array) {
/external/chromium_org/ui/app_list/cocoa/
H A Dapps_collection_view_drag_manager.h44 rows:(size_t)rows
/external/eigen/Eigen/src/Core/
H A DSelect.h68 eigen_assert(m_condition.rows() == m_then.rows() && m_condition.rows() == m_else.rows());
72 Index rows() const { return m_condition.rows(); } function in class:Eigen::Select
142 derived(), thenMatrix.derived(), ThenDerived::Constant(rows(),cols(),elseScalar));
157 derived(), ElseDerived::Constant(rows(),cols(),thenScalar), elseMatrix.derived());
/external/eigen/Eigen/src/Core/products/
H A DGeneralMatrixVector_MKL.h57 Index rows, Index cols, \
64 rows, cols, lhs, lhsStride, rhs, rhsIncr, res, resIncr, alpha); \
67 rows, cols, lhs, lhsStride, rhs, rhsIncr, res, resIncr, alpha); \
74 Index rows, Index cols, \
80 rows, cols, lhs, lhsStride, rhs, rhsIncr, res, resIncr, alpha); \
96 Index rows, Index cols, \
101 MKL_INT m=rows, n=cols, lda=lhsStride, incx=rhsIncr, incy=resIncr; \
107 n=rows; \
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixFunction.h239 const Index rows = m_T.rows(); local
242 for (Index i=0; i<rows; ++i) {
254 for (Index j=i+1; j<rows; ++j) {
289 const Index rows = m_T.rows(); local
294 m_eivalToCluster.resize(rows);
297 for (Index i = 0; i < diag.rows(); ++i) {
311 m_blockStart.resize(m_clusterSize.rows());
313 for (Index i = 1; i < m_clusterSize.rows();
528 Index rows() const { return m_A.rows(); } function in class:Eigen::MatrixFunctionReturnValue
[all...]
/external/eigen/Eigen/src/QR/
H A DColPivHouseholderQR.h88 ColPivHouseholderQR(Index rows, Index cols) argument
89 : m_qr(rows, cols),
90 m_hCoeffs((std::min)(rows,cols)),
104 * ColPivHouseholderQR<MatrixType> qr(matrix.rows(), matrix.cols());
111 : m_qr(matrix.rows(), matrix.cols()),
112 m_hCoeffs((std::min)(matrix.rows(),matrix.cols())),
267 return rank() == rows();
293 (*this, MatrixType::Identity(m_qr.rows(), m_qr.cols()));
296 inline Index rows() const { return m_qr.rows(); } function in class:Eigen::ColPivHouseholderQR
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_debugmodes.c31 int rows = cm->mi_rows; local
37 for (mi_row = 0; mi_row < rows; mi_row++) {
57 int rows = cm->mi_rows; local
68 for (mi_row = 0; mi_row < rows; mi_row++) {
/external/chromium_org/third_party/pexpect/
H A Dscreen.py68 self.rows = r
75 self.scroll_row_end = self.rows
76 self.w = [ [SPACE] * self.cols for c in range(self.rows)]
103 self.fill_region (1,1,self.rows,self.cols, ch)
107 rs = constrain (rs, 1, self.rows)
108 re = constrain (re, 1, self.rows)
157 r = constrain (r, 1, self.rows)
176 r = constrain (r, 1, self.rows)
188 r = constrain (r, 1, self.rows)
201 rs = constrain (rs, 1, self.rows)
[all...]
/external/eigen/test/eigen2/
H A Deigen2_qr.cpp18 int rows = m.rows(); local
25 MatrixType a = MatrixType::Random(rows,cols);
28 VERIFY_IS_NOT_APPROX(a+MatrixType::Identity(rows, cols), qrOfA.matrixQ() * qrOfA.matrixR());
H A Deigen2_map.cpp42 int rows = m.rows(), cols = m.cols(), size = rows*cols; local
52 Map<MatrixType, Aligned>(array1, rows, cols) = MatrixType::Ones(rows,cols);
53 Map<MatrixType>(array2, rows, cols) = Map<MatrixType>((const Scalar*)array1, rows, cols); // test non-const-correctness support in eigen2
54 Map<MatrixType>(array3unaligned, rows, cols) = Map<MatrixType>(array1, rows, cols);
55 MatrixType ma1 = Map<MatrixType>(array1, rows, col
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_debugmodes.c31 int rows = cm->mi_rows; local
37 for (mi_row = 0; mi_row < rows; mi_row++) {
56 int rows = cm->mi_rows; local
67 for (mi_row = 0; mi_row < rows; mi_row++) {
/external/lldb/test/pexpect-2.4/
H A Dscreen.py52 self.rows = r
59 self.scroll_row_end = self.rows
60 self.w = [ [SPACE] * self.cols for c in range(self.rows)]
87 self.fill_region (1,1,self.rows,self.cols, ch)
91 rs = constrain (rs, 1, self.rows)
92 re = constrain (re, 1, self.rows)
141 r = constrain (r, 1, self.rows)
160 r = constrain (r, 1, self.rows)
172 r = constrain (r, 1, self.rows)
185 rs = constrain (rs, 1, self.rows)
[all...]
/external/lldb/www/cpp_reference/html/
H A Ddynsections.js67 var rows = $('tr.inherit.'+id);
70 if (rows.filter(':first').is(':visible')===true) {
71 rows.css('display','none');
74 rows.css('display','table-row'); // using show() causes jump in firefox
/external/markdown/markdown/extensions/
H A Dimagelinks.py55 rows = []
72 for row in rows:
99 rows.append([]) # start a new row
109 rows[-1].append((photo_url, title))
/external/replicaisland/src/com/replica/replicaisland/
H A DTiledWorld.java35 public TiledWorld(int cols, int rows) { argument
37 mTilesArray = new int[cols][rows];
38 mRowCount = rows;
42 for (int y = 0; y < rows; y++) {
/external/eigen/test/
H A Dcholesky.cpp44 VectorType vec = VectorType::Random(symm.rows());
67 Index rows = m.rows(); local
75 MatrixType a0 = MatrixType::Random(rows,cols);
76 VectorType vecB = VectorType::Random(rows), vecX(rows);
77 MatrixType matB = MatrixType::Random(rows,cols), matX(rows,cols);
82 MatrixType a1 = MatrixType::Random(rows,cols);
119 MatrixType m1 = MatrixType::Random(rows,col
250 Index rows = m.rows(); local
[all...]
H A Dmapped_matrix.cpp52 Index rows = m.rows(), cols = m.cols(), size = rows*cols; local
62 Map<MatrixType, Aligned>(array1, rows, cols) = MatrixType::Ones(rows,cols);
63 Map<MatrixType>(array2, rows, cols) = Map<MatrixType>(array1, rows, cols);
64 Map<MatrixType>(array3unaligned, rows, cols) = Map<MatrixType>(array1, rows, cols);
65 MatrixType ma1 = Map<MatrixType>(array1, rows, col
[all...]
/external/ceres-solver/internal/ceres/
H A Dincomplete_lq_factorization.cc46 const int row_begin = matrix->rows()[row];
47 const int row_end = matrix->rows()[row + 1];
69 const int* a_rows = a.rows();
73 const int* b_rows = b.rows();
119 int* rows = matrix->mutable_rows(); local
122 int num_nonzeros = rows[matrix->num_rows()];
126 rows[matrix->num_rows()] = num_nonzeros;
160 rows[matrix->num_rows()] = num_nonzeros;
172 const int* rows = matrix.rows(); local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dactive_map_test.cc54 map.rows = (kHeight + 15) / 16;
56 ASSERT_EQ(map.rows, 9u);
62 map.rows = (kHeight + 15) / 16;
/external/chromium_org/tools/chrome_proxy/integration_tests/
H A Dchrome_proxy_metrics.js46 for (var r = 0, n = tbody.rows.length; r < n; r++) {
48 results[r].proxy = tbody.rows[r].cells[0].innerHTML;
49 timeSpan = tbody.rows[r].cells[1].getElementsByTagName('span')[0];
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
H A Dsearchcvs.php76 $rows = $row[0]; variable
78 $title = "<span>$rows results total</span>Showing results " . ($offset + 1) . "-" . ($offset + $pagesize > $rows ? $rows : $offset + $pagesize) . " for " . ($_GET["q"] == "" ? "last $days days of commits" : "$et" . sanitize($_GET["q"], "text"));
79 $title = ($rows == 0 ? "No results found for " . sanitize($_GET["q"], "text") . "" : $title);
84 dopager($rows, $page, $pagesize);
103 dopager($rows, $page, $pagesize);
146 print $rows;
227 function dopager($rows, $page, $pagesize)
230 $endpage = ($page + 5 > $rows/
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseRedux.h19 eigen_assert(rows()>0 && cols()>0 && "you are using a non initialized matrix");
31 eigen_assert(rows()>0 && cols()>0 && "you are using a non initialized matrix");
39 eigen_assert(rows()>0 && cols()>0 && "you are using a non initialized matrix");
/external/eigen/demos/mix_eigen_and_c/
H A Dbinary_library.h27 struct C_MatrixXd* MatrixXd_new(int rows, int cols);
31 void MatrixXd_resize (struct C_MatrixXd *m, int rows, int cols);
50 struct C_Map_MatrixXd* Map_MatrixXd_new(double *array, int rows, int cols);

Completed in 9787 milliseconds

1234567891011>>