/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
README.syntax | 10 may be used to retrieve all rows that match a specified for full-text query. 38 matches rows (or columns, if <col> is the name of a column name) that 55 may be used to search for rows that contain two or more specified tokens 62 matches rows that contain both the "engineering" and "consultancy" tokens 89 matches rows that contain either the term "hello", or the term "world", 106 matches all rows that contain the term "SQLite", as well as those that 110 character, which indicates that matching rows must not contain the 115 matches rows that contain the phrase "database engine" but do not contain 166 right-hand operator does not. For example, to query for all rows that
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastContentProvider.java | 84 * @param selection the selection criteria to apply when filtering rows, or null. 86 * @param sortOrder how the rows in the cursor should be sorted, or null to sort from most 160 * Delete one or more rows. This throws an exception, as the database can only be modified by 163 * @param selection an optional restriction to apply to rows when deleting. 164 * @return the number of rows affected. 172 * Update one or more rows. This throws an exception, as the database can only be modified by 176 * @param selection an optional filter to match rows to update. 177 * @return the number of rows affected. 277 * @return true if any rows were changed, false otherwise
|
/external/chromium/chrome/browser/ui/gtk/ |
gtk_tree.h | 44 // Writes all the indexes of selected rows into |out|. 95 // Add all model rows corresponding to the given list store indices to |rows|. 97 RemoveRowsTableModel::Rows* model_rows); 105 // Callback checking whether a row may be selected. We use some rows in the
|
/external/chromium_org/chrome/browser/ui/gtk/ |
gtk_tree.h | 45 // Writes all the indexes of selected rows into |out|. 96 // Add all model rows corresponding to the given list store indices to |rows|. 98 RemoveRowsTableModel::Rows* model_rows); 106 // Callback checking whether a row may be selected. We use some rows in the
|
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/fbdev/ |
fbdev_sw_winsys.c | 59 unsigned rows; member in struct:fbdev_sw_winsys 94 if (dst->y + dst->height > fbdev->rows) { 96 if (dst->y >= fbdev->rows) 99 height = fbdev->rows - dst->y; 224 fbdev->rows = fbdev->finfo.smem_len / fbdev->finfo.line_length;
|
/external/chromium_org/third_party/sqlite/src/test/ |
walcrash2.test | 81 INSERT INTO t1 SELECT * FROM t1; -- 2 rows, 3 pages 82 INSERT INTO t1 SELECT * FROM t1; -- 4 rows, 5 pages 83 INSERT INTO t1 SELECT * FROM t1; -- 8 rows, 9 pages 84 INSERT INTO t1 SELECT * FROM t1; -- 16 rows, 17 pages 85 INSERT INTO t1 SELECT * FROM t1 LIMIT 3; -- 20 rows, 20 pages
|
/external/eigen/Eigen/src/Cholesky/ |
LDLT.h | 93 : m_matrix(matrix.rows(), matrix.cols()), 94 m_transpositions(matrix.rows()), 95 m_temporary(matrix.rows()), 179 eigen_assert(m_matrix.rows()==b.rows() 180 && "LDLT::solve(): invalid number of rows of the right hand side matrix b"); 213 inline Index rows() const { return m_matrix.rows(); } function in class:Eigen::LDLT 254 eigen_assert(mat.rows()==mat.cols()); 255 const Index size = mat.rows(); [all...] |
/external/eigen/Eigen/src/Core/ |
NumTraits.h | 124 template<typename Scalar, int Rows, int Cols, int Options, int MaxRows, int MaxCols> 125 struct NumTraits<Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> > 127 typedef Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> ArrayType; 129 typedef Array<RealScalar, Rows, Cols, Options, MaxRows, MaxCols> Real; 131 typedef Array<NonIntegerScalar, Rows, Cols, Options, MaxRows, MaxCols> NonInteger;
|
/external/eigen/test/eigen2/ |
eigen2_newstdvector.cpp | 18 int rows = m.rows(); local 20 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols); 21 std::vector<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
|
eigen2_qtvector.cpp | 23 int rows = m.rows(); local 25 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols); 26 QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
|
eigen2_stdvector.cpp | 17 int rows = m.rows(); local 19 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols); 20 std::vector<MatrixType, aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
|
/external/eigen/test/ |
qtvector.cpp | 23 Index rows = m.rows(); local 25 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols); 26 QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
|
stdvector.cpp | 17 typename MatrixType::Index rows = m.rows(); local 19 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols); 20 std::vector<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
|
stdvector_overload.cpp | 31 typename MatrixType::Index rows = m.rows(); local 33 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols); 34 std::vector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
|
/external/eigen/unsupported/test/ |
kronecker_product.cpp | 18 void check_dimension(const MatrixType& ab, const unsigned int rows, const unsigned int cols) 20 VERIFY_IS_EQUAL(ab.rows(), rows); 28 VERIFY_IS_EQUAL(ab.rows(), 6); 73 VERIFY_IS_EQUAL(ab.rows(), 12);
|
/external/libvpx/libvpx/vp8/common/x86/ |
postproc_mmx.asm | 18 ; int pitch, int rows, int cols,int flimit) 44 ;rows +=8; 54 ; this copies the last row down into the border 8 rows 71 ; this copies the first row up into the border 8 rows 219 cmp edx, dword arg(2) ;rows
|
/external/libvpx/libvpx/vp8/encoder/ppc/ |
fdct_altivec.asm | 54 ;# Do horiz xf on two rows of coeffs v8 = a0 a1 a2 a3 b0 b1 b2 b3. 55 ;# a/A are the even rows 0,2 b/B are the odd rows 1,3 76 ;# Vertical xf on two rows. DCT values in comments are for inverse transform; 92 vpkuwum v8, v10, v8 ;# v8 = rows 0,1 or 2,3
|
/external/mesa3d/src/gallium/winsys/sw/fbdev/ |
fbdev_sw_winsys.c | 59 unsigned rows; member in struct:fbdev_sw_winsys 94 if (dst->y + dst->height > fbdev->rows) { 96 if (dst->y >= fbdev->rows) 99 height = fbdev->rows - dst->y; 224 fbdev->rows = fbdev->finfo.smem_len / fbdev->finfo.line_length;
|
/external/opencv/cv/src/ |
cvadapthresh.cpp | 53 int i, j, rows, cols; local 66 rows = src->rows; 72 CV_CALL( mean = cvCreateMat( rows, cols, CV_8UC1 )); 86 for( i = 0; i < rows; i++ )
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowSQLiteCursor.java | 177 rows = null; 230 //Robolectric will have to cache the results too. In the rows map. 237 rows.put(count, row); 252 //Cache all rows. Caching rows should be thought of as a simple replacement for ShadowCursorWindow
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
IconMenuView.java | 58 /** Maximum number of rows to be shown */ 67 /** Divider that is drawn between all rows */ 115 * The length of this array should not be used to get the number of rows in 121 * The number of rows in the current layout. 188 // Start with the least possible number of rows 193 * Increase the number of rows until we find a configuration that fits 200 // Can't have more rows than items 213 * adding any excess items equally to lower rows. 215 * @param numRows The total number of rows for the menu view 216 * @param numItems The total number of items (across all rows) contained i [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
SmsBroadcastUndelivered.java | 150 int rows = mResolver.delete(sRawUri, InboundSmsHandler.SELECT_BY_REFERENCE, local 152 if (rows == 0) { 153 Rlog.e(TAG, "No rows were deleted from raw table!"); 155 Rlog.d(TAG, "Deleted " + rows + " rows from raw table for incomplete "
|
/libcore/luni/src/test/java/tests/java/sql/ |
DeleteFunctionalityTest.java | 130 * rows and then deletes referenced one 152 * rows will also be deleted 161 assertEquals("Should be no rows", 0, r.getInt(1)); 178 assertEquals("Should be 2 rows", 2, r.getInt(1)); 183 * DeleteFunctionalityTest#testDelete7(). Deletes rows using
|
/external/opencv/cxcore/src/ |
cxutils.cpp | 78 if( (labels->rows != 1 && (labels->cols != 1 || !CV_IS_MAT_CONT(labels->type))) || 79 labels->rows + labels->cols - 1 != samples->rows ) 81 "cluster_idx should be 1D vector of the same number of elements as samples' number of rows" ); 86 sample_count = samples->rows; 289 coeff_count = coeffs->rows + coeffs->cols - 1; 291 if( (coeffs->rows != 1 && coeffs->cols != 1) || (coeff_count != 3 && coeff_count != 4) ) 295 if( (roots->rows != 1 && roots->cols != 1) || 296 roots->rows + roots->cols - 1 != 3 ) 303 if( coeffs->rows > 1 918 int rows, cols; local [all...] |
/external/jpeg/ |
jdmainct.c | 25 * trivial. Its responsibility is to provide context rows for upsampling/ 30 * sample rows of each component. (We require DCT_scaled_size values to be 34 * Upsampling will typically produce max_v_samp_factor pixel rows from each 39 * each iMCU row contains v_samp_factor * DCT_scaled_size sample rows, or 42 * number of sample rows varies across components, but the number of row 43 * groups does not. Some garbage sample rows may be included in the last iMCU 56 * rows "above" the first passed row group appear at negative row offsets in 58 * context rows are manufactured by duplicating the first or last real sample 91 * We read alternate iMCU rows using each master pointer; thus the last two 93 * The pointer lists are set up so that the required context rows appear t [all...] |