/external/ceres-solver/internal/ceres/ |
block_random_access_crs_matrix.h | 51 // compressed row sparse matrix. The matrix need not be symmetric. 67 int* row, 90 // row/column block sizes.
|
block_random_access_sparse_matrix.h | 69 int* row, 92 // row/column block sizes.
|
/external/chromium/chrome/browser/history/ |
history_notifications.h | 34 URLRow row; member in struct:history::URLVisitedDetails
|
/external/chromium/chrome/browser/ |
language_order_table_model.h | 50 virtual string16 GetText(int row, int column_id) OVERRIDE;
|
/external/chromium_org/chrome/browser/history/ |
history_notifications.h | 25 URLRow row; member in struct:history::URLVisitedDetails
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXTable.h | 73 AXTableCell* cellForColumnAndRow(unsigned column, unsigned row);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
PaintProfilerView.js | 80 for (var row = 0; row < this._profiles.length; row++) 81 lastBarTime += this._profiles[row][i];
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
convolve.c | 155 GLsizei rowBufSize, GLvoid *row, 167 GLvoid *row, GLvoid *column, GLvoid *span) 169 _mesa_GetnSeparableFilterARB(target, format, type, INT_MAX, row, 175 _mesa_SeparableFilter2D(GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column)
|
image.h | 46 GLint img, GLint row, GLint column ); 54 GLint img, GLint row, GLint column ); 68 GLint row, GLint column ); 75 GLint img, GLint row, GLint column );
|
texcompress.h | 49 _mesa_compressed_image_address(GLint col, GLint row, GLint img,
|
/external/eigen/Eigen/src/Core/ |
CwiseUnaryView.h | 112 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index row, Index col) const 114 return derived().functor()(derived().nestedExpression().coeff(row, col)); 122 EIGEN_STRONG_INLINE Scalar& coeffRef(Index row, Index col) 124 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
|
/external/eigen/Eigen/src/SparseCore/ |
CoreIterators.h | 47 inline Index row() const { return IsRowMajor ? m_outer : index(); } function in class:Eigen::DenseBase::InnerIterator
|
SparseTriangularView.h | 104 inline Index row() const { return Base::row(); } function in class:Eigen::SparseTriangularView::InnerIterator 145 inline Index row() const { return Base::row(); } function in class:Eigen::SparseTriangularView::ReverseInnerIterator
|
/external/eigen/bench/btl/libs/blitz/ |
blitz_LU_solve_interface.hh | 54 static inline real matrix_vector_product_sliced(const gene_matrix & A, gene_vector B, int row, int col_start, int col_end) 61 somme+=A(row,j)*B(j); 72 static inline real matrix_matrix_product_sliced(gene_matrix & A, int row, int col_start, int col_end, gene_matrix & B, int row_shift, int col ) 79 somme+=A(row,j)*B(j+row_shift,col);
|
/external/eigen/bench/btl/libs/gmm/ |
gmm_LU_solve_interface.hh | 54 static inline real matrix_vector_product_sliced(const gene_matrix & A, gene_vector B, int row, int col_start, int col_end) 61 somme+=A(row,j)*B(j); 72 static inline real matrix_matrix_product_sliced(gene_matrix & A, int row, int col_start, int col_end, gene_matrix & B, int row_shift, int col ) 79 somme+=A(row,j)*B(j+row_shift,col);
|
/external/eigen/bench/btl/libs/mtl4/ |
mtl4_LU_solve_interface.hh | 54 static inline real matrix_vector_product_sliced(const gene_matrix & A, gene_vector B, int row, int col_start, int col_end) 61 somme+=A(row,j)*B(j); 72 static inline real matrix_matrix_product_sliced(gene_matrix & A, int row, int col_start, int col_end, gene_matrix & B, int row_shift, int col ) 79 somme+=A(row,j)*B(j+row_shift,col);
|
/external/eigen/test/ |
geo_orthomethods.cpp | 51 VERIFY_IS_APPROX(mcross.row(i), mat3.row(i).cross(vec3)); 103 VERIFY_IS_APPROX(mcrossN3.row(i), matN3.row(i).cross(vec3));
|
/external/libvpx/libvpx/vp9/common/ |
vp9_scale.h | 30 void (*set_scaled_offsets)(struct scale_factors *scale, int row, int col);
|
/external/mesa3d/src/mesa/main/ |
convolve.c | 155 GLsizei rowBufSize, GLvoid *row, 167 GLvoid *row, GLvoid *column, GLvoid *span) 169 _mesa_GetnSeparableFilterARB(target, format, type, INT_MAX, row, 175 _mesa_SeparableFilter2D(GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column)
|
image.h | 46 GLint img, GLint row, GLint column ); 54 GLint img, GLint row, GLint column ); 68 GLint row, GLint column ); 75 GLint img, GLint row, GLint column );
|
texcompress.h | 49 _mesa_compressed_image_address(GLint col, GLint row, GLint img,
|
/external/openssh/ |
session.h | 42 u_int row, col, xpixel, ypixel; member in struct:Session
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
MultiFoldersSelectionDialog.java | 129 * @param row The item being updated. 131 private final void update(FolderSelectorAdapter.FolderRow row) { 132 final boolean add = !row.isPresent(); 150 row.setIsPresent(add); 152 final Folder folder = row.getFolder();
|
/sdk/testapps/testSensors/src/com/android/tests/testsensors/ |
TestSensorsActivity.java | 61 // Add a row representing this sensor on the display 63 final TableRow row = (TableRow) inflater.inflate(R.layout.one_row, mTableLayout, false); local 64 mTableLayout.addView(row); 68 mName = (TextView) row.findViewById(R.id.row_textview_name); 71 mVal = (TextView) row.findViewById(R.id.row_textview_value);
|
/external/chromium_org/chrome/browser/android/provider/ |
chrome_browser_provider.cc | 720 history::URLID Run(const history::HistoryAndBookmarkRow& row) { 723 base::Unretained(service()), row, cancelable_consumer(), 734 // This is because it represents a SQLite database row id. 787 int Run(const history::HistoryAndBookmarkRow& row, 792 base::Unretained(service()), row, selection, 887 void BuildSearchRow(history::SearchRow* row) { 898 TemplateURLRef::SearchTermsArgs search_terms_args(row->search_term()); 902 row->set_url(GURL(url)); 903 row->set_template_url_id(search_engine->id()); 922 history::URLID Run(const history::SearchRow& row) 1241 history::HistoryAndBookmarkRow row; local 1323 history::HistoryAndBookmarkRow row; local 1376 history::SearchRow row; local 1448 history::SearchRow row; local [all...] |