HomeSort by relevance Sort by last modified time
    Searched defs:ChannelImpl (Results 1 - 3 of 3) sorted by null

  /packages/apps/TV/src/com/android/tv/
SelectInputActivity.java 26 import com.android.tv.data.ChannelImpl;
71 ChannelImpl.createPassthroughChannel(channelUri));
  /packages/apps/TV/src/com/android/tv/data/
ChannelImpl.java 44 public final class ChannelImpl implements Channel {
45 private static final String TAG = "ChannelImpl";
60 // Columns must match what is read in ChannelImpl.fromCursor()
81 * Creates {@code ChannelImpl} object from cursor.
85 public static ChannelImpl fromCursor(Cursor cursor) {
87 ChannelImpl channel = new ChannelImpl();
155 private ChannelImpl() {
270 if (!(o instanceof ChannelImpl)) {
273 ChannelImpl other = (ChannelImpl) o
    [all...]
  /packages/apps/TV/src/com/android/tv/data/epg/
EpgFetcherImpl.java 53 import com.android.tv.data.ChannelImpl;
184 ChannelImpl.PROJECTION,
190 Channel channel = ChannelImpl.fromCursor(c);
547 ChannelImpl.PROJECTION,
552 result.add(ChannelImpl.fromCursor(cursor));
    [all...]

Completed in 88 milliseconds