Searched defs:SearchResult (Results 1 - 2 of 2) sorted by last modified time

/packages/apps/TV/src/com/android/tv/search/
H A DLocalSearchProvider.java131 List<SearchResult> results = new ArrayList<>();
153 private Cursor createSuggestionsCursor(List<SearchResult> results) {
158 for (SearchResult result : results) {
205 public static class SearchResult { class in class:LocalSearchProvider
222 return "SearchResult{channelId=" + channelId +
/packages/apps/Settings/src/com/android/settings/search/
H A DSearchResult.java29 public class SearchResult implements Comparable<SearchResult> { class in inherits:Comparable
31 private static final String TAG = "SearchResult";
92 protected SearchResult(Builder builder) { method in class:SearchResult
104 public int compareTo(SearchResult searchResult) {
116 if (!(that instanceof SearchResult)) {
119 return this.stableId == ((SearchResult) that).stableId;
173 public SearchResult build() {
176 throw new IllegalStateException("SearchResult missing title argument");
178 Log.v(TAG, "No stable ID on SearchResult wit
[all...]

Completed in 96 milliseconds