/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
TableResultX.java | 17 public TableResultX(int maxrows) { 18 super(maxrows); 31 this.maxrows = tr.maxrows;
|
JDBCStatement.java | 11 protected int maxrows = 0; field in class:JDBCStatement 32 return maxrows; 39 maxrows = max; 108 tr = conn.db.get_table(sql, maxrows); 114 tr = conn.db.get_table(sql, maxrows, args);
|
/packages/apps/Dialer/java/com/android/dialer/calllog/database/ |
AnnotatedCallLogDatabaseHelper.java | 28 private final int maxRows; 30 AnnotatedCallLogDatabaseHelper(Context appContext, int maxRows) { 32 this.maxRows = maxRows; 45 /** Deletes all but the first maxRows rows (by timestamp) to keep the table a manageable size. */ 70 db.execSQL(String.format(Locale.US, CREATE_TRIGGER_SQL, maxRows, maxRows));
|
/external/javasqlite/src/main/java/SQLite/ |
TableResult.java | 66 public int maxrows = 0; field in class:TableResult 86 public TableResult(int maxrows) { 87 this.maxrows = maxrows; 126 if (maxrows > 0 && nrows >= maxrows) {
|
Database.java | 289 * @param maxrows the max. number of rows to retrieve 293 public TableResult get_table(String sql, int maxrows) 295 TableResult ret = new TableResult(maxrows); 300 if (maxrows <= 0 || !ret.atmaxrows) { 309 if (ret.maxrows > 0) { 310 while (ret.nrows < ret.maxrows && vm.step(ret)) { 341 * @param maxrows the max. number of rows to retrieve 346 public TableResult get_table(String sql, int maxrows, String args[]) 348 TableResult ret = new TableResult(maxrows); 353 if (maxrows <= 0 || !ret.atmaxrows) [all...] |
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/ |
SelectionArea.java | 33 private int maxRows; 51 maxRows = rows - 1; 93 this.top = bottom = checkBounds(top, maxRows); 101 this.bottom = checkBounds(bottom, maxRows); 192 buffer.append(", maxRows="); 193 buffer.append(maxRows);
|
/external/eigen/test/ |
spqr_support.cpp | 15 int generate_sparse_rectangular_problem(MatrixType& A, DenseMat& dA, int maxRows = 300, int maxCols = 300) 17 eigen_assert(maxRows >= maxCols); 19 int rows = internal::random<int>(1,maxRows);
|
sparseqr.cpp | 13 int generate_sparse_rectangular_problem(MatrixType& A, DenseMat& dA, int maxRows = 300, int maxCols = 150) 15 eigen_assert(maxRows >= maxCols); 17 int rows = internal::random<int>(1,maxRows);
|
/external/pdfium/xfa/fxbarcode/pdf417/ |
BC_PDF417.h | 30 int32_t maxRows,
|
/external/syslinux/efi32/include/efi/protocol/ |
vgaclass.h | 39 UINTN MaxRows;
|
/external/syslinux/efi64/include/efi/protocol/ |
vgaclass.h | 39 UINTN MaxRows;
|
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/protocol/ |
vgaclass.h | 39 UINTN MaxRows;
|
/frameworks/base/core/res/res/layout-land/ |
icon_menu_layout.xml | 23 android:maxRows="2"
|
/frameworks/base/core/res/res/layout-port/ |
icon_menu_layout.xml | 23 android:maxRows="3"
|
/external/autotest/frontend/client/src/autotest/common/table/ |
TableRenderer.java | 24 int startRow, int maxRows, boolean renderNull) { 27 for (int rowIndex = startRow; rowIndex < startRow + maxRows && rowIndex < rows.length;
|
/external/eigen/Eigen/src/Core/products/ |
GeneralMatrixMatrix.h | 243 template<int StorageOrder, typename LhsScalar, typename RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor=1, 244 bool FiniteAtCompileTime = MaxRows!=Dynamic && MaxCols!=Dynamic && MaxDepth != Dynamic> class gemm_blocking_space; 274 template<int StorageOrder, typename _LhsScalar, typename _RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor> 275 class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, MaxDepth, KcFactor, true /* == FiniteAtCompileTime */> 282 ActualRows = Transpose ? MaxCols : MaxRows, 283 ActualCols = Transpose ? MaxRows : MaxCols 325 template<int StorageOrder, typename _LhsScalar, typename _RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor> 326 class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, MaxDepth, KcFactor, false>
|
/external/eigen/Eigen/src/Core/ |
NumTraits.h | 193 template<typename Scalar, int Rows, int Cols, int Options, int MaxRows, int MaxCols> 194 struct NumTraits<Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> > 196 typedef Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> ArrayType; 198 typedef Array<RealScalar, Rows, Cols, Options, MaxRows, MaxCols> Real; 200 typedef Array<NonIntegerScalar, Rows, Cols, Options, MaxRows, MaxCols> NonInteger;
|
Matrix.h | 76 * \tparam _MaxRows Maximum number of rows. Defaults to \a _Rows (\ref maxrows "note"). 77 * \tparam _MaxCols Maximum number of columns. Defaults to \a _Cols (\ref maxrows "note"). 131 * <dt><b>\anchor maxrows _MaxRows and _MaxCols:</b></dt> 163 * <tr class="alt"><td>\code Matrix<T,Dynamic,Dynamic,0,MaxRows,MaxCols> \endcode</td><td>\code 165 * T data[MaxRows*MaxCols]; // with (size_t(data)%A(MaxRows*MaxCols*sizeof(T)))==0 170 * Note that in this table Rows, Cols, MaxRows and MaxCols are all positive integers. A(S) is defined to the largest possible power-of-two
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
PropsVectors.java | 44 private int maxRows; 153 maxRows = INITIAL_ROWS; 217 if ((rows + rowsToExpand) > maxRows) { 218 if (maxRows < MEDIUM_ROWS) { 220 } else if (maxRows < MAX_ROWS) { 230 maxRows = newMaxRows;
|
/external/icu/icu4c/source/common/ |
propsvec.c | 33 int32_t maxRows; 69 pv->maxRows=UPVEC_INITIAL_ROWS; 205 if((rows+splitFirstRow+splitLastRow)>pv->maxRows) { 209 if(pv->maxRows<UPVEC_MEDIUM_ROWS) { 211 } else if(pv->maxRows<UPVEC_MAX_ROWS) { 228 pv->maxRows=newMaxRows;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
PropsVectors.java | 42 private int maxRows; 151 maxRows = INITIAL_ROWS; 215 if ((rows + rowsToExpand) > maxRows) { 216 if (maxRows < MEDIUM_ROWS) { 218 } else if (maxRows < MAX_ROWS) { 228 maxRows = newMaxRows;
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
MatrixPower.h | 435 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols> 437 Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols>& res, 441 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols> 443 Matrix<RealScalar, Rows, Cols, Options, MaxRows, MaxCols>& res, 569 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols> 571 Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols>& res, 577 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols> 579 Matrix<RealScalar, Rows, Cols, Options, MaxRows, MaxCols>& res,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
PagedTileLayout.java | 287 public void setMaxRows(int maxRows) { 288 mMaxRows = maxRows;
|
/external/eigen/Eigen/src/Core/util/ |
XprHelper.h | 250 template<typename Scalar, int Rows, int Cols, int Options, int MaxRows, int MaxCols> 362 MaxRows = traits<T>::MaxRowsAtCompileTime, 368 (MaxRows==1&&MaxCols!=1) ? RowMajor : ColMajor, 369 MaxRows, 380 MaxRows = traits<T>::MaxRowsAtCompileTime, 386 (MaxCols==1&&MaxRows!=1) ? RowMajor : ColMajor, 387 MaxRows, [all...] |
/frameworks/base/core/tests/coretests/src/android/provider/ |
SearchRecentSuggestionsProviderTest.java | 312 * @param maxRows The maximum number of matching rows that must be found. 316 private void checkResultCounts(String queryString, int minRows, int maxRows, 341 assertTrue(foundRows <= maxRows);
|