Searched defs:channelsFound (Results 1 - 2 of 2) sorted by relevance

/packages/apps/TV/src/com/android/tv/search/
H A DDataManagerSearch.java104 Set<Long> channelsFound = new HashSet<>();
109 if (channelsFound.contains(channel.getId())) {
113 addResult(results, channelsFound, channel, null);
127 if (channelsFound.contains(channel.getId())) {
132 addResult(results, channelsFound, channel, null);
151 if (channelsFound.contains(channel.getId())) {
160 addResult(results, channelsFound, channel, program);
172 if (channelsFound.contains(channel.getId())) {
181 addResult(results, channelsFound, channel, program);
207 private void addResult(List<SearchResult> results, Set<Long> channelsFound, Channe argument
[all...]
H A DTvProviderSearch.java87 Set<Long> channelsFound = new HashSet<>();
89 results.addAll(searchChannels(query, channelsFound, limit));
94 results.addAll(searchChannels(query, channelsFound, limit));
112 channelsFound, limit));
191 String[] columnForPartialMatching, Set<Long> channelsFound, int limit) {
225 if (channelsFound.contains(id)) {
228 channelsFound.add(id);
308 String[] columnForPartialMatching, Set<Long> channelsFound, int limit) {
346 if (channelsFound.contains(id)) {
349 channelsFound
190 searchChannels(String query, String[] columnForExactMatching, String[] columnForPartialMatching, Set<Long> channelsFound, int limit) argument
307 searchPrograms(String query, String[] columnForExactMatching, String[] columnForPartialMatching, Set<Long> channelsFound, int limit) argument
[all...]

Completed in 249 milliseconds