OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mSuggestionCount
(Results
1 - 2
of
2
) sorted by null
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
ShortcutPromoterTest.java
39
private int
mSuggestionCount
;
50
mSuggestionCount
= countSuggestions(mSuggestions);
92
int expectedCount = Math.min(maxPromoted, mShortcuts.getCount() +
mSuggestionCount
);
/packages/apps/Browser/src/com/android/browser/
BrowserProvider.java
456
private int
mSuggestionCount
;
469
mSuggestionCount
= sc != null ? sc.getCount() : 0;
470
if (
mSuggestionCount
> (MAX_SUGGESTION_LONG_ENTRIES - mHistoryCount)) {
471
mSuggestionCount
= MAX_SUGGESTION_LONG_ENTRIES - mHistoryCount;
528
return mHistoryCount +
mSuggestionCount
+ 1;
530
return mHistoryCount +
mSuggestionCount
;
[
all
...]
Completed in 98 milliseconds