HomeSort by relevance Sort by last modified time
    Searched full:rows (Results 351 - 375 of 2399) sorted by null

<<11121314151617181920>>

  /external/eigen/test/
zerosized.cpp 19 VERIFY(t1.rows() == 0);
26 VERIFY(t2.rows() == 0);
nullary.cpp 20 for (Index i = 0; i < A.rows(); ++i) {
25 for (Index i = 0; i < A.rows(); ++i) {
100 const Index rows = m.rows(); local
104 A.setIdentity(rows, cols);
106 VERIFY(equalsIdentity(MatrixType::Identity(rows, cols)));
product_symm.cpp 23 Index rows = size; local
26 MatrixType m1 = MatrixType::Random(rows, cols),
27 m2 = MatrixType::Random(rows, cols), m3;
32 Rhs2 rhs2 = Rhs2::Random(othersize, rows), rhs22(othersize, rows), rhs23(othersize, rows);
product_syrk.cpp 21 Index rows = m.rows(); local
24 MatrixType m1 = MatrixType::Random(rows, cols),
25 m2 = MatrixType::Random(rows, cols);
28 Rhs2 rhs2 = Rhs2::Random(rows, internal::random<int>(1,320));
29 Rhs3 rhs3 = Rhs3::Random(internal::random<int>(1,320), rows);
product_trmv.cpp 21 Index rows = m.rows(); local
24 MatrixType m1 = MatrixType::Random(rows, cols),
25 m3(rows, cols);
26 VectorType v1 = VectorType::Random(rows);
30 m1 = MatrixType::Random(rows, cols);
stable_norm.cpp 53 Index rows = m.rows(); local
59 MatrixType vzero = MatrixType::Zero(rows, cols),
60 vrand = MatrixType::Random(rows, cols),
61 vbig(rows, cols),
62 vsmall(rows,cols);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteStatement.java 77 //if the query returns zero rows
80 //if the query returns zero rows (SQLiteMap)
  /external/smack/src/org/jivesoftware/smackx/
ReportedData.java 34 * in columns and rows.
41 private List<Row> rows = new ArrayList<Row>(); field in class:ReportedData
77 // Add the rows to the report based on the form's items
91 rows.add(new Row(fieldList));
108 rows.add(row);
121 * Returns an Iterator for the rows returned from a search.
123 * @return an Iterator for the rows returned from a search.
126 return Collections.unmodifiableList(new ArrayList<Row>(rows)).iterator();
  /packages/apps/Launcher2/
print_db.py 11 ROWS = 4
45 rows = []
47 rows.append(row)
48 return columns,rows
123 columns,rows = get_favorites(conn)
124 data = [dict(zip(columns,row)) for row in rows]
154 for row in rows:
188 for j in range(0,ROWS):
  /external/ceres-solver/internal/ceres/
block_random_access_crs_matrix.cc 59 // rows/columns.
81 int* rows = crsm_->mutable_rows(); local
92 rows[0] = 0;
109 rows[row_pos + j + 1] = rows[row_pos + j] + num_cols;
118 const int column_block_begin = rows[row_pos + r] + col_pos;
  /external/chromium_org/chrome/utility/importer/
external_process_importer_bridge.cc 103 const std::vector<ImporterURLRow>& rows,
105 Send(new ProfileImportProcessHostMsg_NotifyHistoryImportStart(rows.size()));
110 int rows_left = rows.end() - rows.begin();
111 for (std::vector<ImporterURLRow>::const_iterator it = rows.begin();
112 it < rows.end();) {
  /external/chromium_org/sql/
recovery_unittest.cc 23 // columns and |row_sep| between rows.
439 size_t rows = 0; local
440 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
441 EXPECT_EQ(2u, rows);
462 size_t rows = 0; local
463 EXPECT_FALSE(recovery->AutoRecoverTable("y", 0, &rows));
478 // rows. The row with 17 will get the default injected at insert
501 // defaults coming from the recovery system. The two %5 rows should
519 size_t rows = 0; local
520 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
555 size_t rows = 0; local
594 size_t rows = 0; local
639 size_t rows = 0; local
674 size_t rows = 0; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowElement.cpp 61 // Rows from the first <thead> are numbered before all <tbody> rows.
62 // Rows from the first <tfoot> are numbered after all <tbody> rows.
63 // Rows from other <thead> and <tfoot> elements don't get row indices at all.
97 // We get here for rows that are in <thead> or <tfoot> sections other than the main header and footer.
  /external/chromium_org/third_party/freetype/src/sfnt/
pngshim.c 196 png_byte* *rows; local
200 y_offset < 0 || y_offset + metrics->height > map->rows ||
310 if ( FT_NEW_ARRAY( rows, imgHeight ) )
317 rows[i] = map->buffer + ( y_offset + i ) * map->pitch + x_offset * 4;
319 png_read_image( png, rows );
321 FT_FREE( rows );
  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 52 inline int rows() const { return m_matrix.rows(); } function in struct:Eigen::internal::permut_sparsematrix_product_retval
59 SparseMatrix<Scalar,SrcStorageOrder,Index> tmp(m_matrix.rows(), m_matrix.cols());
79 SparseMatrix<Scalar,int(SrcStorageOrder)==RowMajor?ColMajor:RowMajor,Index> tmp(m_matrix.rows(), m_matrix.cols());
117 /** \returns the matrix with the permutation applied to the rows
137 /** \returns the matrix with the inverse permutation applied to the rows.
  /external/eigen/unsupported/Eigen/src/KroneckerProduct/
KroneckerTensorProduct.h 30 const unsigned int Ar = A.rows(),
32 Br = B.rows(),
50 const unsigned int Ar = A.rows(),
52 Br = B.rows(),
93 c.resize(a.rows()*b.rows(),a.cols()*b.cols());
  /external/freetype/src/sfnt/
pngshim.c 196 png_byte* *rows; local
200 y_offset < 0 || y_offset + metrics->height > map->rows ||
310 if ( FT_NEW_ARRAY( rows, imgHeight ) )
317 rows[i] = map->buffer + ( y_offset + i ) * map->pitch + x_offset * 4;
319 png_read_image( png, rows );
321 FT_FREE( rows );
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProvider.java 94 * URIs and an integer code. These are custom MIME types that apply to tables and rows
237 * @param sortOrder A clause defining the order in which the retrieved rows should be sorted
238 * @return The query results, as a {@link android.database.Cursor} of rows and columns
349 * @return The number of rows inserted.
369 // Deletes all the existing rows in the table
396 // The semantics of bulkInsert is to return the number of rows inserted.
424 * @return the number of rows deleted
433 * Updates one or more rows in a table.
436 * @param values The values to use to update the row or rows. You only need to specify column
439 * @param selection An SQL WHERE clause (without the WHERE keyword) specifying the rows t
460 int rows = localSQLiteDatabase.update( local
    [all...]
  /external/eigen/Eigen/src/Cholesky/
LLT.h 90 : m_matrix(matrix.rows(), matrix.cols()),
125 eigen_assert(m_matrix.rows()==b.rows()
126 && "LLT::solve(): invalid number of rows of the right hand side matrix b");
170 inline Index rows() const { return m_matrix.rows(); } function in class:Eigen::LLT
203 eigen_assert(mat.rows()==n && vec.size()==n);
268 eigen_assert(mat.rows()==mat.cols());
269 const Index size = mat.rows();
293 eigen_assert(m.rows()==m.cols())
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp 127 int dim = A->rows;
161 int amount = sample->rows;
221 int amount = sample->rows;
344 CV_ASSERT (center->rows == 1);
348 size = desired_matrix->rows;
377 int rows, cols; local
384 rows = matrix->rows;
394 for( i = 1; i < rows; i++ )
402 for( i = 0; i < rows-1; i++, dst += step
    [all...]
  /external/opencv/cv/src/
cvpyramids.cpp 87 worktype* rows[PD_SZ]; /* array of rows pointers. dim(rows) is PD_SZ */ \
100 /* set first and last indices of buffer rows which are need to be filled */ \
105 /* assign rows pointers */ \
108 rows[y1] = buffer + k; \
113 row01 = rows[0]; \
114 row23 = rows[2]; \
115 row4 = rows[4]; \
117 /* fill new buffer rows with filtered source (horizontal conv) */
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentQueryMapTest.java 112 Map<String, ContentValues> rows = mContentQueryMap.getRows(); local
113 assertEquals(ORIGINAL_ROW_COUNT, rows.size());
114 assertTrue(rows.containsKey(NAME0));
115 assertEquals(VALUE0, rows.get(NAME0).getAsString(DummyProvider.VALUE));
116 assertTrue(rows.containsKey(NAME1));
117 assertEquals(VALUE1, rows.get(NAME1).getAsString(DummyProvider.VALUE));
122 rows = mContentQueryMap.getRows();
123 assertFalse(rows.containsKey(NAME0));
125 rows = mContentQueryMap.getRows();
126 assertFalse(rows.containsKey(NAME0))
    [all...]
  /external/chromium/chrome/browser/resources/
about_stats.html 193 // The function sorts rows after the row with onclick event handler.
206 var rows = new Array();
210 for (var i = start_index; i < table.rows.length; i++)
211 rows.push(table.rows[i]);
243 rows.sort(sort_func);
247 for (var i = rows.length - 1; i >= 0; i--)
248 tbody.appendChild(rows[i]);
251 for (var i = 0; i < rows.length; i++)
252 tbody.appendChild(rows[i])
    [all...]
  /external/eigen/unsupported/Eigen/
OpenGLSupport 47 int Rows = XprType::RowsAtCompileTime, \
54 template<typename XprType, typename Scalar, int Rows, int Cols> \
55 struct EIGEN_CAT(EIGEN_CAT(gl_,FUNC),_impl)<XprType,Scalar,Rows,Cols,false> { \
66 #define EIGEN_GL_FUNC_SPECIALIZATION_MAT(FUNC,SCALAR,ROWS,COLS,SUFFIX) \
68 template< typename XprType> struct EIGEN_CAT(EIGEN_CAT(gl_,FUNC),_impl)<XprType, SCALAR, ROWS, COLS, true> { \
199 int Rows = XprType::RowsAtCompileTime, \
206 template<typename XprType, typename Scalar, int Rows, int Cols> \
207 struct EIGEN_CAT(EIGEN_CAT(gl_,FUNC),_impl)<XprType,Scalar,Rows,Cols,false> { \
218 #define EIGEN_GL_FUNC1_SPECIALIZATION_MAT(FUNC,ARG1,CONST,SCALAR,ROWS,COLS,SUFFIX) \
220 template< typename XprType> struct EIGEN_CAT(EIGEN_CAT(gl_,FUNC),_impl)<XprType, SCALAR, ROWS, COLS, true> {
    [all...]
  /external/chromium_org/chrome/browser/thumbnails/
content_analysis.cc 383 std::vector<float>* rows,
386 DCHECK(rows);
395 // Make sure rows and columns are allocated and initialized to 0.
396 rows->clear();
398 rows->resize(area.height(), 0);
409 (*rows)[r] = row_sum;
419 for (it = rows->begin(); it < rows->end(); ++it)
450 SlidingWindowMinMax(rows->begin(),
451 rows->end()
    [all...]

Completed in 470 milliseconds

<<11121314151617181920>>