HomeSort by relevance Sort by last modified time
    Searched refs:maxRows (Results 1 - 25 of 69) sorted by null

1 2 3

  /packages/apps/Dialer/java/com/android/dialer/calllog/database/
AnnotatedCallLogDatabaseHelper.java 29 private final int maxRows;
31 AnnotatedCallLogDatabaseHelper(Context appContext, int maxRows) {
33 this.maxRows = maxRows;
63 * Deletes all but the first maxRows rows (by timestamp, excluding voicemails) to keep the table a
116 db.execSQL(String.format(Locale.US, CREATE_TRIGGER_SQL, maxRows, 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/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/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/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/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/pdfium/fxbarcode/pdf417/
BC_PDF417.h 29 int32_t maxRows,
BC_PDF417.cpp 449 int32_t maxRows,
453 m_maxRows = maxRows;
    [all...]
  /external/icu/icu4c/source/common/
propsvec.cpp 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;
  /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);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PagedTileLayout.java 387 public void setMaxRows(int maxRows) {
388 mMaxRows = maxRows;
  /frameworks/native/opengl/tests/hwc/
hwcStress.cpp 554 const size_t maxRows = 5;
560 size_t rows = testRandMod(maxRows) + 1;
  /packages/apps/Car/Media/src/com/android/car/media/browse/
BrowseAdapter.java 482 void addItems(List<MediaItemMetadata> items, BrowseItemViewType viewType, int maxRows) {
484 int maxChildren = maxRows * (mMaxSpanSize / spanSize);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Transliterator.java     [all...]
  /external/icu/icu4c/source/i18n/
translit.cpp     [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
Transliterator.java     [all...]
  /frameworks/base/core/java/android/widget/
SimpleMonthView.java 536 final int maxRows = (maxDay / DAYS_IN_WEEK) - ((maxDay % DAYS_IN_WEEK == 0) ? 1 : 0);
538 row = MathUtils.constrain(row, 0, maxRows);
    [all...]
  /frameworks/base/core/java/android/app/
Notification.java     [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.3.6/
groovy-all-2.3.6.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.4.7/
groovy-all-2.4.7.jar 
  /libcore/benchmarks/src/benchmarks/regression/
R.java     [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar 
  /external/zxing/core/
core.jar 
  /prebuilts/sdk/current/extras/constraint-layout-x/solver/
constraintlayout-solver-1.1.0.jar 

Completed in 705 milliseconds

1 2 3