Home
last modified time | relevance | path

Searched refs:currentSuggestions (Results 1 – 5 of 5) sorted by relevance

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DSuggestionsAdapterBase.kt34 var currentSuggestions: SuggestionCursor? = null variable in com.android.quicksearchbox.ui.SuggestionsAdapterBase
89 get() = if (currentSuggestions == null) 0 else currentSuggestions!!.count in getSuggestion()
92 return if (currentSuggestions == null) null in getSuggestion()
93 else SuggestionPosition(currentSuggestions!!, position) in getSuggestion()
157 if (newCursor === currentSuggestions) { in changeSuggestions()
164 currentSuggestions = newCursor in changeSuggestions()
165 if (currentSuggestions != null) { in changeSuggestions()
DSuggestionsListAdapter.kt37 return SuggestionPosition(currentSuggestions, suggestionId.toInt()) in getSuggestion()
57 val s: SuggestionCursor? = currentSuggestions in getCount()
74 currentSuggestions, in getView()
84 return getSuggestionViewType(currentSuggestions, position) in getItemViewType()
DDelayingSuggestionsAdapter.kt92 get() = mDelayedAdapter.currentSuggestions
DSearchActivityView.kt160 val currentSuggestions: SuggestionCursor constant in com.android.quicksearchbox.ui.SearchActivityView
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSearchActivity.kt239 logger?.logExit(currentSuggestions, query!!.length) in onStop()
333 protected val currentSuggestions: SuggestionCursor? constant in com.android.quicksearchbox.SearchActivity