Home
last modified time | relevance | path

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

/packages/apps/TV/common/tests/robotests/src/com/android/tv/common/
DTvContentRatingCacheTest.java154 assertThat(TvContentRatingCache.stringToContentRatings(null)).isEmpty(); in testStringToContentRatings_null()
159 assertThat(TvContentRatingCache.stringToContentRatings("")).isEmpty(); in testStringToContentRatings_none()
164 assertThat(TvContentRatingCache.stringToContentRatings("bad")).isEmpty(); in testStringToContentRatings_bad()
170 TvContentRatingCache.stringToContentRatings( in testStringToContentRatings_oneGoodOneBad()
180 TvContentRatingCache.stringToContentRatings( in testStringToContentRatings_one()
190 TvContentRatingCache.stringToContentRatings(Y7_AND_MA); in testStringToContentRatings_twoNotInOrder()
201 TvContentRatingCache.stringToContentRatings(MA_AND_Y7); in testStringToContentRatings_twoInOrder()
212 TvContentRatingCache.stringToContentRatings( in testStringToContentRatings_double()
/packages/apps/TV/common/src/com/android/tv/common/
DTvContentRatingCache.java65 tvContentRatings = stringToContentRatings(commaSeparatedRatings); in getRatings()
78 static ImmutableList<TvContentRating> stringToContentRatings( in stringToContentRatings() method in TvContentRatingCache