HomeSort by relevance Sort by last modified time
    Searched refs:MAX_HISTORY_COUNT (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/provider/
SearchRecentSuggestions.java 105 private static final int MAX_HISTORY_COUNT = 250;
188 truncateHistory(cr, MAX_HISTORY_COUNT);
Browser.java 121 private static final int MAX_HISTORY_COUNT = 250;
345 * If there are more than MAX_HISTORY_COUNT non-bookmark history
366 if (c.moveToFirst() && c.getCount() >= MAX_HISTORY_COUNT) {
  /cts/tests/tests/provider/src/android/provider/cts/
BrowserTest.java 368 // NOTE: this value must keep same with the Browser.MAX_HISTORY_COUNT.
369 final int MAX_HISTORY_COUNT = 250;
379 // The total number of the history table's rows: MAX_HISTORY_COUNT,
381 // The date of the history is from 1 ~ (MAX_HISTORY_COUNT - 1).
383 for (int i = 1; i <= MAX_HISTORY_COUNT - 1; i++) {
399 assertEquals(MAX_HISTORY_COUNT, cursor.getCount());
406 assertEquals(MAX_HISTORY_COUNT, cursor.getCount());
410 // then the history rows except bookmark is MAX_HISTORY_COUNT.
412 + MAX_HISTORY_COUNT + historyUrlPostfix);
414 value.put(BookmarkColumns.DATE, MAX_HISTORY_COUNT);
    [all...]

Completed in 12 milliseconds