Home
last modified time | relevance | path

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

/packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
DRoutineWatchEvaluatorTest.java28 import com.android.tv.recommendation.RoutineWatchEvaluator.ProgramTime;
148 ProgramTime programTimeToday0000to0100 = in testProgramTime_createFromProgram()
149 ProgramTime.createFromProgram( in testProgramTime_createFromProgram()
158 ProgramTime programTimeToday2330to2430 = in testProgramTime_createFromProgram()
159 ProgramTime.createFromProgram( in testProgramTime_createFromProgram()
168 ProgramTime programTimeTomorrow0000to0100 = in testProgramTime_createFromProgram()
169 ProgramTime.createFromProgram( in testProgramTime_createFromProgram()
178 ProgramTime programTimeTomorrow2330to2430 = in testProgramTime_createFromProgram()
179 ProgramTime.createFromProgram( in testProgramTime_createFromProgram()
188 ProgramTime programTimeToday1800to3600 = in testProgramTime_createFromProgram()
[all …]
/packages/apps/TV/src/com/android/tv/recommendation/
DRoutineWatchEvaluator.java157 ProgramTime t1 = ProgramTime.createFromProgram(p1); in calculateTimeMatchScore()
158 ProgramTime t2 = ProgramTime.createFromProgram(p2); in calculateTimeMatchScore()
169 static double calculateOverlappedIntervalScore(ProgramTime t1, ProgramTime t2) { in calculateOverlappedIntervalScore()
231 static class ProgramTime { class in RoutineWatchEvaluator
237 public static ProgramTime createFromProgram(Program p) { in createFromProgram()
256 return new ProgramTime(startTimeOfDayInSec, endTimeOfDayInSec, weekDay, dayChanged); in createFromProgram()
259 private ProgramTime( in ProgramTime() method in RoutineWatchEvaluator.ProgramTime