OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ID_ALL_CHANNELS
(Results
1 - 6
of
6
) sorted by null
/packages/apps/TV/tests/unit/src/com/android/tv/data/
GenreItemTest.java
39
assertNull(GenreItems.getCanonicalGenre(GenreItems.
ID_ALL_CHANNELS
));
47
assertEquals(GenreItems.
ID_ALL_CHANNELS
, GenreItems.getId(null));
48
assertEquals(GenreItems.
ID_ALL_CHANNELS
, GenreItems.getId(INVALID_GENRE));
64
assertEquals(GenreItems.
ID_ALL_CHANNELS
, GenreItems.getId(Genres.ARTS));
65
assertEquals(GenreItems.
ID_ALL_CHANNELS
, GenreItems.getId(Genres.ENTERTAINMENT));
66
assertEquals(GenreItems.
ID_ALL_CHANNELS
, GenreItems.getId(Genres.LIFE_STYLE));
67
assertEquals(GenreItems.
ID_ALL_CHANNELS
, GenreItems.getId(Genres.MUSIC));
68
assertEquals(GenreItems.
ID_ALL_CHANNELS
, GenreItems.getId(Genres.PREMIER));
69
assertEquals(GenreItems.
ID_ALL_CHANNELS
, GenreItems.getId(Genres.TECH_SCIENCE));
ProgramTest.java
52
assertHasGenre(program, GenreItems.
ID_ALL_CHANNELS
, true);
63
assertHasGenre(program, GenreItems.
ID_ALL_CHANNELS
, true);
74
assertHasGenre(program, GenreItems.
ID_ALL_CHANNELS
, true);
85
assertHasGenre(program, GenreItems.
ID_ALL_CHANNELS
, true);
/packages/apps/TV/src/com/android/tv/data/
GenreItems.java
30
public static final int
ID_ALL_CHANNELS
= 0;
114
* If the genre is invalid, {@link #
ID_ALL_CHANNELS
} will be returned instead.
118
return
ID_ALL_CHANNELS
;
125
return
ID_ALL_CHANNELS
;
Program.java
250
if (genreId == GenreItems.
ID_ALL_CHANNELS
) {
454
if (genreId == GenreItems.
ID_ALL_CHANNELS
) {
/packages/apps/TV/src/com/android/tv/guide/
ProgramManager.java
176
private int mSelectedGenreId = GenreItems.
ID_ALL_CHANNELS
;
339
mGenreChannelList.set(GenreItems.
ID_ALL_CHANNELS
, mChannels);
347
mSelectedGenreId = GenreItems.
ID_ALL_CHANNELS
;
389
mSelectedGenreId = GenreItems.
ID_ALL_CHANNELS
;
ProgramGuide.java
139
private int mLastRequestedGenreId = GenreItems.
ID_ALL_CHANNELS
;
485
mLastRequestedGenreId = GenreItems.
ID_ALL_CHANNELS
;
[
all
...]
Completed in 3723 milliseconds