OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:watchedStartTime
(Results
1 - 3
of
3
) sorted by null
/packages/apps/TV/src/com/android/tv/data/
WatchedHistoryManager.java
271
public final long
watchedStartTime
;
274
WatchedRecord(long channelId, long
watchedStartTime
, long duration) {
276
this.
watchedStartTime
=
watchedStartTime
;
282
return "WatchedRecord: id=" + channelId + ",
watchedStartTime
=" +
watchedStartTime
291
&& Objects.equals(
watchedStartTime
, that.
watchedStartTime
)
299
return Objects.hash(channelId,
watchedStartTime
, duration);
305
return record.channelId + " " + record.
watchedStartTime
+ " " + record.duration
[
all
...]
/packages/apps/TV/tests/unit/src/com/android/tv/data/
WatchedHistoryManagerTest.java
88
assertEquals(record.
watchedStartTime
, time - duration);
/packages/apps/TV/src/com/android/tv/recommendation/
RecommendationDataManager.java
382
long endTime = watchedRecord.
watchedStartTime
+ watchedRecord.duration;
386
.setStartTimeUtcMillis(watchedRecord.
watchedStartTime
)
389
return new WatchedProgram(program, watchedRecord.
watchedStartTime
, endTime);
Completed in 130 milliseconds