OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_HISTORY_COUNT
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/provider/
SearchRecentSuggestions.java
107
private static final int
MAX_HISTORY_COUNT
= 250;
207
truncateHistory(cr,
MAX_HISTORY_COUNT
);
Browser.java
148
private static final int
MAX_HISTORY_COUNT
= 250;
386
* If there are more than
MAX_HISTORY_COUNT
non-bookmark history
406
if (cursor.moveToFirst() && cursor.getCount() >=
MAX_HISTORY_COUNT
) {
/cts/tests/tests/provider/src/android/provider/cts/
BrowserTest.java
334
// NOTE: this value must keep same with the Browser.
MAX_HISTORY_COUNT
.
335
final int
MAX_HISTORY_COUNT
= 250;
345
// The total number of the history table's rows:
MAX_HISTORY_COUNT
,
347
// The date of the history is from 1 ~ (
MAX_HISTORY_COUNT
- 1).
349
for (int i = 1; i <=
MAX_HISTORY_COUNT
- 1; i++) {
365
assertEquals(
MAX_HISTORY_COUNT
, cursor.getCount());
372
assertEquals(
MAX_HISTORY_COUNT
, cursor.getCount());
376
// then the history rows except bookmark is
MAX_HISTORY_COUNT
.
378
+
MAX_HISTORY_COUNT
+ historyUrlPostfix);
380
value.put(BookmarkColumns.DATE,
MAX_HISTORY_COUNT
+ TIME_BASE)
[
all
...]
Completed in 48 milliseconds