/external/chromium_org/third_party/polymer/components/paper-input/ |
demo.html | 62 <paper-input multiline rows="3" label="This input is 3 rows high"></paper-input> 66 <paper-input multiline maxRows="3" label="This input is at most 3 rows high"></paper-input>
|
/external/chromium_org/third_party/polymer/components-chromium/paper-input/ |
demo.html | 62 <paper-input multiline rows="3" label="This input is 3 rows high"></paper-input> 66 <paper-input multiline maxRows="3" label="This input is at most 3 rows high"></paper-input>
|
/external/chromium_org/third_party/sqlite/src/test/ |
tkt-78e04e52ea.test | 47 } {0 0 0 {SCAN TABLE (~500000 rows)}} 60 } {0 0 0 {SEARCH TABLE t2 USING COVERING INDEX (x=?) (~10 rows)}} 66 } {0 0 0 {SCAN TABLE t2 (~100000 rows)}}
|
tkt3442.test | 52 } {0 0 0 {SEARCH TABLE listhash USING INDEX ididx (id=?) (~1 rows)}} 55 } {0 0 0 {SEARCH TABLE listhash USING INDEX ididx (id=?) (~1 rows)}} 64 } {0 0 0 {SEARCH TABLE listhash USING INDEX ididx (id=?) (~1 rows)}}
|
/external/eigen/Eigen/src/SparseCore/ |
SparseRedux.h | 19 eigen_assert(rows()>0 && cols()>0 && "you are using a non initialized matrix"); 31 eigen_assert(rows()>0 && cols()>0 && "you are using a non initialized matrix"); 39 eigen_assert(rows()>0 && cols()>0 && "you are using a non initialized matrix");
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
ConstrainedConjGrad.h | 55 Index rows = C.rows(), cols = C.cols(); local 57 TmpVec d(rows), e(rows), l(cols), p(rows), q(rows), r(rows); 64 for (Index i = 0; i < rows; ++i) 119 std::vector<bool> satured(C.rows()); 124 SparseMatrix<Scalar,RowMajor> CINV(C.rows(), C.cols()) [all...] |
IncompleteLU.h | 34 Index rows() const { return m_lu.rows(); } function in class:Eigen::IncompleteLU 84 eigen_assert(cols()==b.rows() 85 && "IncompleteLU::solve(): invalid number of rows of the right hand side matrix b");
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/ |
BrowseInfoBase.java | 38 ArrayObjectAdapter rows = new ArrayObjectAdapter(); local 44 rows.add(new ListRow(headerItem, adapter)); 46 return rows;
|
/external/chromium_org/chrome/browser/history/android/ |
sql_handler.h | 32 // be invoked. The Delete() method is called to delete rows. 45 // Updates the rows whose URLID or URL is in the given |ids_set| with new 55 // Deletes the rows whose id is in |ids_set|, returns false if any deletion 56 // failed, otherwise return true even all/some of rows are not found.
|
/external/chromium_org/chrome/browser/predictors/ |
autocomplete_action_predictor_table.h | 62 typedef std::vector<Row> Rows; 66 void GetAllRows(Rows* row_buffer); 69 void AddAndUpdateRows(const Rows& rows_to_add, const Rows& rows_to_update);
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Layout/ |
large-table-with-collapsed-borders-and-colspans-wider-than-table.html | 4 <title>Table layout performance with collapsed borders and a cell with a colspan wider than the other rows in the table.</title>
|
large-table-with-collapsed-borders-and-colspans.html | 4 <title>Table layout performance with collapsed borders and a cell with a colspan that can be accomodated by the width given by other rows in the table.</title>
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
GridCoordinate.h | 41 // A span in a single direction (either rows or columns). Note that |resolvedInitialPosition| 138 // This represents a grid area that spans in both rows' and columns' direction. 143 , rows(0, 0) 149 , rows(r) 155 return columns == o.columns && rows == o.rows; 171 return rows.resolvedInitialPosition; 173 return rows.resolvedFinalPosition; 180 GridSpan rows; member in struct:blink::GridCoordinate
|
/external/chromium_org/third_party/WebKit/Source/web/tests/data/ |
move_range.html | 15 <textarea id='target' class="text" type='text' rows="3" cols="20">
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/ |
vp9_debugmodes.c | 31 int rows = cm->mi_rows; local 37 for (mi_row = 0; mi_row < rows; mi_row++) { 57 int rows = cm->mi_rows; local 68 for (mi_row = 0; mi_row < rows; mi_row++) {
|
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/ |
generate_outerProductGLSL.py | 16 gen(2,3) # mat2x3 means 2 columns, 3 rows
|
/external/eigen/Eigen/src/Core/ |
EigenBase.h | 43 /** \returns the number of rows. \sa cols(), RowsAtCompileTime */ 44 inline Index rows() const { return derived().rows(); } function in struct:Eigen::EigenBase 45 /** \returns the number of columns. \sa rows(), ColsAtCompileTime*/ 47 /** \returns the number of coefficients, which is rows()*cols(). 48 * \sa rows(), cols(), SizeAtCompileTime. */ 49 inline Index size() const { return rows() * cols(); } 60 typename Dest::PlainObject res(rows(),cols()); 70 typename Dest::PlainObject res(rows(),cols());
|
/external/eigen/Eigen/src/Geometry/ |
Homogeneous.h | 75 inline Index rows() const { return m_matrix.rows() + (int(Direction)==Vertical ? 1 : 0); } function in class:Eigen::Homogeneous 80 if( (int(Direction)==Vertical && row==m_matrix.rows()) 179 Direction==Vertical ? _expression().rows()-1 : _expression().rows(), 185 Direction==Vertical ? _expression().rows()-1:0, 187 Direction==Vertical ? 1 : _expression().rows(), 189 Direction==Vertical ? _expression().rows()-1 : 1, 246 inline Index rows() const { return m_lhs.rows(); } function in struct:Eigen::internal::homogeneous_left_product_impl 285 inline Index rows() const { return m_lhs.rows(); } function in struct:Eigen::internal::homogeneous_right_product_impl [all...] |
/external/eigen/test/eigen2/ |
eigen2_qr.cpp | 18 int rows = m.rows(); local 25 MatrixType a = MatrixType::Random(rows,cols); 28 VERIFY_IS_NOT_APPROX(a+MatrixType::Identity(rows, cols), qrOfA.matrixQ() * qrOfA.matrixR());
|
/external/eigen/test/ |
product_trmm.cpp | 13 void trmm(int rows=internal::random<int>(1,EIGEN_TEST_MAX_SIZE), 24 TriMatrix mat(rows,cols), tri(rows,cols), triTr(cols,rows); 27 OnTheLeft ge_left(otherCols,rows); 64 void trmv(int rows=internal::random<int>(1,EIGEN_TEST_MAX_SIZE), int cols=internal::random<int>(1,EIGEN_TEST_MAX_SIZE)) 66 trmm<Scalar,Mode,TriOrder,ColMajor,ColMajor,1>(rows,cols,1); 70 void trmm(int rows=internal::random<int>(1,EIGEN_TEST_MAX_SIZE), int cols=internal::random<int>(1,EIGEN_TEST_MAX_SIZE), int otherCols = internal::random<int>(1,EIGEN_TEST_MAX_SIZE)) 72 trmm<Scalar,Mode,TriOrder,OtherOrder,ResOrder,Dynamic>(rows,cols,otherCols);
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
SkylineInplaceLU.h | 37 : /*m_matrix(matrix.rows(), matrix.cols()),*/ m_flags(flags), m_status(0), m_lu(matrix) { 121 const size_t rows = m_lu.rows(); local 124 eigen_assert(rows == cols && "We do not (yet) support rectangular LU."); 127 for (Index row = 0; row < rows; row++) { 138 for (Index rrow = row + 1; rrow < m_lu.rows(); rrow++) { 157 for (Index rrow = row + 1; rrow < m_lu.rows(); rrow++) { 170 for (Index rrow = row + 1; rrow < m_lu.rows(); rrow++) { 185 const size_t rows = m_lu.rows(); local 308 const size_t rows = m_lu.rows(); local [all...] |
/external/kernel-headers/original/uapi/linux/ |
vt.h | 47 unsigned short v_rows; /* number of rows */ 54 unsigned short v_rows; /* number of rows */ 56 unsigned short v_vlin; /* number of pixel rows on screen */ 57 unsigned short v_clin; /* number of pixel rows per character */
|
/external/libvpx/libvpx/vp9/common/ |
vp9_debugmodes.c | 31 int rows = cm->mi_rows; local 37 for (mi_row = 0; mi_row < rows; mi_row++) { 56 int rows = cm->mi_rows; local 67 for (mi_row = 0; mi_row < rows; mi_row++) {
|
/external/lldb/www/cpp_reference/html/ |
dynsections.js | 67 var rows = $('tr.inherit.'+id); 70 if (rows.filter(':first').is(':visible')===true) { 71 rows.css('display','none'); 74 rows.css('display','table-row'); // using show() causes jump in firefox
|
/external/lldb/www/python_reference/ |
frames.html | 9 <frameset rows="30%,70%">
|