HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 1201 - 1225 of 1524) sorted by null

<<41424344454647484950>>

  /external/chromium_org/ash/wm/
window_selector.cc 474 // Find the minimum number of windows per row that will fit all of the
495 int row = i / columns; local
497 window_size.height() * row + y_offset,
  /external/chromium_org/chrome/browser/resources/
about_memory.css 245 display: table-row;
  /external/chromium_org/chrome/browser/resources/print_preview/
print_preview.css 56 display: table-row;
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_popup_controller_unittest.cc 127 int RowWidthWithoutText(int row) const {
128 return AutofillPopupControllerImpl::RowWidthWithoutText(row);
254 // Ensure that the row isn't invalidated if it didn't change.
313 // Remove the only line. There should be no row invalidation and the popup
542 // Ensure the popup will be too small to display all of the first row.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
options.js 339 // Get the results with a specific row (data set) and column (metric).
380 // Get the index of selected row or column.
683 // Update the index of the original row in the modified array.
706 var rowNum = checkboxArr.length + 1; // # of data rows plus total-stats row.
  /external/chromium_org/content/common/gpu/media/
rendering_helper_gl.cc 524 const int row = (frame_count_ / thumbnails_in_row) % thumbnails_in_column; local
527 const int y = row * thumbnail_size_.height();
  /external/chromium_org/content/shell/renderer/
webkit_test_runner.cc 104 uint32_t* row = bitmap->getAddr32(0, y); local
106 row[x] |= 0xFF000000; // Set alpha bits to 1.
  /external/chromium_org/skia/ext/
convolver.cc 40 // by calling AdvanceRow. It will keep track of which row in the buffer it
44 // The number of pixels in each row is given in |source_row_pixel_width|.
60 // Moves to the next row in the buffer, returning a pointer to the beginning
63 unsigned char* row = &buffer_[next_row_ * row_byte_width_]; local
66 // Set the pointer to the next row to use, wrapping around if necessary.
70 return row;
81 // Row 0 Coord 8
82 // Row 1 Coord 9
83 // Row 2 Coord 6 <- next_row_ = 2, next_row_coordinate_ = 10.
84 // Row 3 Coord
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
heapProfiler.css 233 cursor: row-resize;
  /external/chromium_org/third_party/WebKit/Source/web/
WebAccessibilityObject.cpp 838 WebAccessibilityObject WebAccessibilityObject::cellForColumnAndRow(unsigned column, unsigned row) const
846 WebCore::AccessibilityTableCell* cell = static_cast<WebCore::AccessibilityTable*>(m_private.get())->cellForColumnAndRow(column, row);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_gen_mipmap.c 162 * row in the dest image. It's legal for the two source rows to point
529 * row in the dest image. It's legal for the two source rows to point
536 * \param srcWidth Width of a row in the source data
541 * \param dstWidth Width of a row in the destination data
542 * \param srcRowA Pointer to the row of destination data
992 int row; local
1029 int img, row; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkMatrix.cpp 644 static inline bool rowcol3(const float row[], const float col[],
646 *result = row[0] * col[0] + row[1] * col[3] + row[2] * col[6];
677 static inline bool rowcol3(const SkFixed row[], const SkFixed col[],
681 tmp1.setMul(row[0], col[0]); // N * fixed
682 tmp2.setMul(row[1], col[3]); // N * fixed
685 tmp2.setMul(row[2], col[6]); // N * fract
    [all...]
  /external/chromium_org/v8/test/mjsunit/
assert-opt-and-deopt.js 60 * tests are sometimes executed several times in a row, and you want to
  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 75 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const
77 return m_functor.packetOp(row, col);
DenseBase.h 150 * a row-vector (if there is only one row). */
157 IsRowMajor = int(Flags) & RowMajorBit, /**< True if this expression has row-major storage order. */
185 * column-major matrix, and the number of rows for a row-major matrix. */
196 * column-major matrix, and the number of columns for a row-major matrix. */
416 typename internal::traits<Derived>::Scalar minCoeff(IndexType* row, IndexType* col) const;
418 typename internal::traits<Derived>::Scalar maxCoeff(IndexType* row, IndexType* col) const;
MatrixBase.h 33 * a matrix, vector, or expression \a x, prints the first row of \a x.
39 cout << x.row(0) << endl;
489 Minor<Derived> minor(Index row, Index col);
490 const Minor<Derived> minor(Index row, Index col) const;
VectorwiseOp.h 88 return m_functor(m_matrix.row(i));
96 return m_functor(m_matrix.row(index));
244 /** \returns a row or column vector expression of \c *this reduxed by \a func
256 /** \returns a row (or column) vector expression of the smallest coefficient
257 * of each column (or row) of the referenced expression.
266 /** \returns a row (or column) vector expression of the largest coefficient
267 * of each column (or row) of the referenced expression.
276 /** \returns a row (or column) vector expression of the squared norm
277 * of each column (or row) of the referenced expression.
286 /** \returns a row (or column) vector expression of the nor
    [all...]
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 263 * with \f$ B = \left ( \begin{array}{cc} \text{*this.row}(p) \\ \text{*this.row}(q) \end{array} \right ) \f$.
271 RowXpr x(this->row(p));
272 RowXpr y(this->row(q));
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 169 DynamicIntVectorType m_blockStart; /**< \brief Row index at which block corresponding to i-th cluster starts */
456 Matrix<Scalar,1,1> AXmatrix = A.row(i).tail(m-1-i) * X.col(j).tail(m-1-i);
465 Matrix<Scalar,1,1> XBmatrix = X.row(i).head(j) * B.col(j).head(j);
MatrixSquareRoot.h 164 Scalar tmp = (sqrtT.row(i).segment(i+1,j-i-1) * sqrtT.col(j).segment(i+1,j-i-1)).value();
308 Scalar tmp = (result.row(i).segment(i+1,j-i-1) * result.col(j).segment(i+1,j-i-1)).value();
  /external/libvpx/libvpx/vp8/common/ppc/
recon_altivec.asm 75 stwux r0, \Dst, \Stride ;# advance dst to next row
  /external/libvpx/libvpx/vp9/encoder/
vp9_mbgraph.c 46 ref_full.as_mv.row = ref_mv->as_mv.row >> 3;
  /external/mesa3d/src/gallium/auxiliary/util/
u_gen_mipmap.c 162 * row in the dest image. It's legal for the two source rows to point
529 * row in the dest image. It's legal for the two source rows to point
536 * \param srcWidth Width of a row in the source data
541 * \param dstWidth Width of a row in the destination data
542 * \param srcRowA Pointer to the row of destination data
992 int row; local
1029 int img, row; local
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 644 static inline bool rowcol3(const float row[], const float col[],
646 *result = row[0] * col[0] + row[1] * col[3] + row[2] * col[6];
677 static inline bool rowcol3(const SkFixed row[], const SkFixed col[],
681 tmp1.setMul(row[0], col[0]); // N * fixed
682 tmp2.setMul(row[1], col[3]); // N * fixed
685 tmp2.setMul(row[2], col[6]); // N * fract
    [all...]
  /external/skia/tools/skpdiff/
diff_viewer.js 124 // Store the style in the record. The row will pick up the style this way instead of through

Completed in 1672 milliseconds

<<41424344454647484950>>