HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 451 - 475 of 1530) sorted by null

<<11121314151617181920>>

  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 503 int row = pos / mColumns; local
504 int col = pos - (row * mColumns);
508 int top = row * mBlockHeight;
523 int row = (mScrollY + y - spacing) / (mSpec.mCellHeight + spacing); local
526 return (row * mColumns) + col;
696 int row = mCurrentSelection / mColumns; local
697 int col = mCurrentSelection - (row * mColumns);
702 int yTop = spacing + (row * mBlockHeight);
720 // mCache maps from row number to the ImageBlock.
725 private final Runnable mRedrawCallback; // Called after a row is loaded
794 int row = pos \/ mColumns; local
880 int row = index \/ mColumns; local
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Max_LCD.cpp 167 void Max_LCD::setCursor(uint8_t col, uint8_t row)
170 if ( row > _numlines ) {
171 row = _numlines-1; // we count rows starting w/0
174 command(LCD_SETDDRAMADDR | (col + row_offsets[row]));
  /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/android/
android_provider_backend.h 74 // |row| is the value to update.
77 bool UpdateHistoryAndBookmarks(const HistoryAndBookmarkRow& row,
82 // Inserts the given values and returns the URLID of the inserted row.
96 // The number of deleted row is returned in |deleted_count|.
97 // The url row is kept and the visit count is reset if the matched url
120 // |row| is the value need to update.
123 bool UpdateSearchTerms(const SearchRow& row,
128 // Inserts the given valus and return the SearchTermID of inserted row.
198 // |row| is the value to update.
201 bool UpdateHistoryAndBookmarks(const HistoryAndBookmarkRow& row,
    [all...]
  /external/chromium_org/chrome/browser/history/
scored_history_match.h 27 // item given in |row| with recent visits as indicated in |visits|.
28 // First determines if the row qualifies by seeing if all of the
29 // terms in |terms_vector| occur in |row|. If so, calculates a raw score.
32 // If the row does not qualify the raw score will be 0. |bookmark_service| is
36 ScoredHistoryMatch(const URLRow& row,
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTable.h 73 AccessibilityTableCell* cellForColumnAndRow(unsigned column, unsigned row);
  /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/chromium_org/ui/views/controls/combobox/
combobox.cc 90 void Combobox::SetSelectedRow(int row) {
91 SetSelectedIndex(row);
94 string16 Combobox::GetTextForRow(int row) {
95 return model()->GetItemAt(row);
  /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

Completed in 778 milliseconds

<<11121314151617181920>>