HomeSort by relevance Sort by last modified time
    Searched refs:evaluateChannel (Results 1 - 9 of 9) sorted by null

  /packages/apps/TV/src/com/android/tv/recommendation/
RandomEvaluator.java 21 public double evaluateChannel(long channelId) {
FavoriteChannelEvaluator.java 38 public double evaluateChannel(long channelId) {
RecentChannelEvaluator.java 39 public double evaluateChannel(long channelId) {
Recommender.java 259 protected abstract double evaluateChannel(final long channelId);
291 * of evaluateChannel().
294 * @return Returns the scaled score (mBaseScore + score * mWeight) when evaluateChannel() is
295 * in the range of [0.0, 1.0]. If evaluateChannel() returns NOT_RECOMMENDED or any
300 double score = mEvaluator.evaluateChannel(channelId);
RoutineWatchEvaluator.java 43 public double evaluateChannel(long channelId) {
  /packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
FavoriteChannelEvaluatorTest.java 46 mEvaluator.evaluateChannel(channelId));
65 mEvaluator.evaluateChannel(channelId));
96 double score = mEvaluator.evaluateChannel(channelId);
111 assertTrue(mEvaluator.evaluateChannel(channelOne) ==
112 mEvaluator.evaluateChannel(channelTwo));
125 assertTrue(mEvaluator.evaluateChannel(channelOne) < mEvaluator.evaluateChannel(channelTwo));
131 assertTrue(mEvaluator.evaluateChannel(channelOne) > mEvaluator.evaluateChannel(channelTwo));
141 double previousScore = mEvaluator.evaluateChannel(channelId)
    [all...]
RecentChannelEvaluatorTest.java 48 mEvaluator.evaluateChannel(channelId));
67 mEvaluator.evaluateChannel(channelId));
96 double score = mEvaluator.evaluateChannel(channelId);
111 double previousScore = mEvaluator.evaluateChannel(channelId);
118 assertTrue(previousScore <= mEvaluator.evaluateChannel(channelId));
133 scores.put(channelId, mEvaluator.evaluateChannel(channelId));
141 assertTrue(mEvaluator.evaluateChannel(channelId) <= scores.get(channelId));
EvaluatorTestCase.java 94 assertEquals(Evaluator.NOT_RECOMMENDED, mEvaluator.evaluateChannel(INVALID_CHANNEL_ID));
96 mEvaluator.evaluateChannel(mChannelRecordSortedMap.size()));
99 double score = mEvaluator.evaluateChannel(channelId);
RecommenderTest.java 316 public double evaluateChannel(long channelId) {

Completed in 106 milliseconds