HomeSort by relevance Sort by last modified time
    Searched full:rows (Results 601 - 625 of 3134) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/WebKit/ManualTests/
selection-start-after-inserting-line-break-in-textarea.html 5 <textarea cols="20" rows="20"></textarea>
textarea-focus.html 26 <textarea rows="8" cols="40"></textarea>
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameSetElement.idl 26 [Reflect] attribute DOMString rows;
HTMLTableSectionElement.idl 26 readonly attribute HTMLCollection rows;
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLResultSet.idl 33 readonly attribute SQLResultSetRowList rows;
  /external/chromium_org/third_party/angle/src/compiler/translator/
VariablePacker.h 24 // Gets how many rows a data type takes.
  /external/chromium_org/third_party/icu/source/common/
propsvec.h 31 * Rows of uint32_t integers in a contiguous array store
45 * There are additional rows for special purposes, see UPVEC_FIRST_SPECIAL_CP.
48 * but self-contained rows allow to later sort them by contents.
80 * In rows for code points [start..end], select the column,
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
convert_from_argb.cc 44 // Coalesce rows.
123 // Coalesce rows.
202 // Coalesce rows.
342 // Allocate a rows of uv.
449 // Allocate a rows of uv.
495 // Coalesce rows.
556 // Allocate a rows of yuv.
597 // Coalesce rows.
658 // Allocate a rows of yuv.
692 // Coalesce rows
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/arm/neon/
vp9_idct16x16_neon.c 46 /* Parallel idct on the upper 8 rows */
61 /* Parallel idct on the lower 8 rows */
121 /* Parallel idct on the upper 8 rows */
136 /* Skip Parallel idct on the lower 8 rows as they are all 0s */
  /external/chromium_org/third_party/libyuv/source/
convert_from_argb.cc 44 // Coalesce rows.
118 // Coalesce rows.
196 // Coalesce rows.
264 // Allocate a rows of uv.
367 // Allocate a rows of uv.
479 // Coalesce rows.
539 // Allocate a rows of yuv.
580 // Coalesce rows.
640 // Allocate a rows of yuv.
674 // Coalesce rows
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
uniform_initializer_utils.cpp 133 unsigned columns, unsigned rows,
139 glsl_type::get_instance(base_type, rows, columns);
147 unsigned columns, unsigned rows, unsigned array_size,
153 glsl_type::get_instance(base_type, rows, columns);
  /external/chromium_org/third_party/polymer/components/core-input/
demo.html 85 <aside>A multi-line text input with 3 rows. The input is normally unstyled but here is styled with a dotted border to show its size.</aside>
86 <core-input multiline rows="3" placeholder="Type many lines here..."></core-input>
91 <core-input class="sized" multiline rows="fit" placeholder="This input is 500px * 200px"></core-input>
114 <core-input id="validate-ml-required" multiline rows="3" required placeholder="required (multiline)"></core-input>
  /external/chromium_org/third_party/polymer/components-chromium/core-input/
demo.html 85 <aside>A multi-line text input with 3 rows. The input is normally unstyled but here is styled with a dotted border to show its size.</aside>
86 <core-input multiline rows="3" placeholder="Type many lines here..."></core-input>
91 <core-input class="sized" multiline rows="fit" placeholder="This input is 500px * 200px"></core-input>
114 <core-input id="validate-ml-required" multiline rows="3" required placeholder="required (multiline)"></core-input>
  /external/chromium_org/third_party/skia/experimental/iOSSampleApp/Shared/
SkUIRootViewController.mm 37 // Return the number of rows in the section.
  /external/chromium_org/third_party/skia/experimental/webtry/templates/
content.html 22 <textarea spellcheck=false name='code' id='code' rows='15' cols='100'>{{.Code}}</textarea>
  /external/chromium_org/third_party/skia/include/gpu/
GrSurface.h 100 * @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
122 * @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
  /external/chromium_org/third_party/skia/include/utils/
SkBoundaryPatch.h 41 bool evalPatch(SkPoint verts[], int rows, int cols);
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree3.test 33 # rtree3-3a: Test OOM during a transaction to insert 100 pseudo-random rows.
40 # rtree3-4b: OOM while deleting rows from a big table.
42 # rtree3-5: Test OOM while inserting rows into a big table.
44 # rtree3-6: Test OOM while deleting all rows of a table, one at a time.
  /external/chromium_org/ui/base/models/
table_model.h 35 // Number of rows in the model.
56 // delineate the rows in a table view. When groups are enabled table view
57 // shows a visual separator for each group, followed by all the rows in
75 // Compares the values in the column with id |column_id| for the two rows.
  /external/dexmaker/javadoc/
index.html 24 <FRAMESET rows="30%,70%" title="" onLoad="top.loadFrames()">
  /external/eigen/Eigen/src/Core/
ArrayWrapper.h 53 inline Index rows() const { return m_expression.rows(); } function in class:Eigen::ArrayWrapper
173 inline Index rows() const { return m_expression.rows(); } function in class:Eigen::MatrixWrapper
PermutationMatrix.h 107 /** \returns the number of rows */
108 inline Index rows() const { return Index(indices().size()); } function in class:Eigen::PermutationBase
121 for (int i=0; i<rows();++i)
218 for (int i=0; i<rows();++i) indices().coeffRef(other.indices().coeff(i)) = i;
223 eigen_assert(lhs.cols() == rhs.rows());
224 for (int i=0; i<rows();++i) indices().coeffRef(i) = lhs.indices().coeff(rhs.indices().coeff(i));
263 * \param SizeAtCompileTime the number of rows/cols, or Dynamic
264 * \param MaxSizeAtCompileTime the maximum number of rows/cols, or Dynamic. This optional parameter defaults to SizeAtCompileTime. Most of the time, you should not have to specify it.
518 /** \returns the matrix with the permutation applied to the rows.
550 inline Index rows() const { return m_matrix.rows(); function in struct:Eigen::internal::permut_matrix_product_retval
639 inline int rows() const { return m_permutation.rows(); } function in class:Eigen::Transpose
    [all...]
Replicate.h 89 inline Index rows() const { return m_matrix.rows() * m_rowFactor.value(); } function in class:Eigen::Replicate
97 : rowId%m_matrix.rows();
109 : rowId%m_matrix.rows();
  /external/eigen/Eigen/src/Eigen2Support/
QR.h 37 MatrixType ret = MatrixType::Identity(this->rows(), this->cols());
  /external/eigen/Eigen/src/Householder/
Householder.h 117 if(rows() == 1)
124 Block<Derived, EssentialPart::SizeAtCompileTime, Derived::ColsAtCompileTime> bottom(derived(), 1, 0, rows()-1, cols());
160 Map<typename internal::plain_col_type<PlainObject>::type> tmp(workspace,rows());
161 Block<Derived, Derived::RowsAtCompileTime, EssentialPart::SizeAtCompileTime> right(derived(), 0, 1, rows(), cols()-1);

Completed in 497 milliseconds

<<21222324252627282930>>