Home
last modified time | relevance | path

Searched refs:allTracks (Results 1 – 2 of 2) sorted by relevance

/packages/apps/TV/tests/robotests/src/com/android/tv/util/
DTvTrackInfoUtilsTest.java68 private final List<TvTrackInfo> allTracks = field in TvTrackInfoUtilsTest
80 TvTrackInfo result = getBestTrackInfo(allTracks, "track_1", "en", 1); in testGetBestTrackInfo_exactMatch()
86 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, "en", 5); in testGetBestTrackInfo_langAndChannelCountMatch()
92 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, "fr", 1); in testGetBestTrackInfo_languageOnlyMatch()
101 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, null, 8); in testGetBestTrackInfo_channelCountOnlyMatchWithNullLanguage_23()
111 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, null, 8); in testGetBestTrackInfo_channelCountOnlyMatchWithNullLanguage()
117 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, "kr", 1); in testGetBestTrackInfo_noMatches()
126 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, null, 0); in testGetBestTrackInfo_noMatchesWithNullLanguage_23()
136 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, null, 0); in testGetBestTrackInfo_noMatchesWithNullLanguage()
/packages/apps/TV/src/com/android/tv/interactive/
DIAppManager.java394 List<TvTrackInfo> allTracks = new ArrayList<>(); in onRequestTrackInfoList() local
405 allTracks.add(track); in onRequestTrackInfoList()
409 mTvIAppView.sendTrackInfoList(allTracks); in onRequestTrackInfoList()