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.java25 import com.android.tv.recommendation.RoutineWatchEvaluator.ProgramTime;
143 ProgramTime programTimeToday0000to0100 = in testProgramTime_createFromProgram()
144 ProgramTime.createFromProgram( in testProgramTime_createFromProgram()
153 ProgramTime programTimeToday2330to2430 = in testProgramTime_createFromProgram()
154 ProgramTime.createFromProgram( in testProgramTime_createFromProgram()
163 ProgramTime programTimeTomorrow0000to0100 = in testProgramTime_createFromProgram()
164 ProgramTime.createFromProgram( in testProgramTime_createFromProgram()
173 ProgramTime programTimeTomorrow2330to2430 = in testProgramTime_createFromProgram()
174 ProgramTime.createFromProgram( in testProgramTime_createFromProgram()
183 ProgramTime programTimeToday1800to3600 = in testProgramTime_createFromProgram()
[all …]
/packages/apps/TV/src/com/android/tv/recommendation/
DRoutineWatchEvaluator.java155 ProgramTime t1 = ProgramTime.createFromProgram(p1); in calculateTimeMatchScore()
156 ProgramTime t2 = ProgramTime.createFromProgram(p2); in calculateTimeMatchScore()
167 static double calculateOverlappedIntervalScore(ProgramTime t1, ProgramTime t2) { in calculateOverlappedIntervalScore()
229 static class ProgramTime { class in RoutineWatchEvaluator
235 public static ProgramTime createFromProgram(Program p) { in createFromProgram()
254 return new ProgramTime(startTimeOfDayInSec, endTimeOfDayInSec, weekDay, dayChanged); in createFromProgram()
257 private ProgramTime( in ProgramTime() method in RoutineWatchEvaluator.ProgramTime