OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WatchedHistoryManager
(Results
1 - 5
of
5
) sorted by null
/packages/apps/TV/tests/unit/src/com/android/tv/data/
WatchedHistoryManagerTest.java
24
import com.android.tv.data.
WatchedHistoryManager
.WatchedRecord;
37
private static final String TAG = "
WatchedHistoryManager
";
43
private
WatchedHistoryManager
mWatchedHistoryManager;
52
mWatchedHistoryManager = new
WatchedHistoryManager
(getContext(), MAX_HISTORY_SIZE);
137
private class TestWatchedHistoryManagerListener implements
WatchedHistoryManager
.Listener {
/packages/apps/TV/src/com/android/tv/recommendation/
RecommendationDataManager.java
42
import com.android.tv.data.
WatchedHistoryManager
;
54
public class RecommendationDataManager implements
WatchedHistoryManager
.Listener {
98
private
WatchedHistoryManager
mWatchedHistoryManager;
291
mWatchedHistoryManager = new
WatchedHistoryManager
(mContext);
381
WatchedHistoryManager
.WatchedRecord watchedRecord) {
394
for (
WatchedHistoryManager
.WatchedRecord record
403
public void onNewRecordAdded(
WatchedHistoryManager
.WatchedRecord watchedRecord) {
/packages/apps/TV/src/com/android/tv/data/
WatchedHistoryManager.java
32
public class
WatchedHistoryManager
{
33
private final static String TAG = "
WatchedHistoryManager
";
87
public
WatchedHistoryManager
(Context context) {
92
WatchedHistoryManager
(Context context, int maxHistorySize) {
/packages/apps/TV/src/com/android/tv/ui/
TunableTvView.java
65
import com.android.tv.data.
WatchedHistoryManager
;
122
private
WatchedHistoryManager
mWatchedHistoryManager;
459
public void setWatchedHistoryManager(
WatchedHistoryManager
watchedHistoryManager
) {
460
mWatchedHistoryManager =
watchedHistoryManager
;
[
all
...]
/packages/apps/TV/src/com/android/tv/
MainActivity.java
90
import com.android.tv.data.
WatchedHistoryManager
;
558
WatchedHistoryManager
watchedHistoryManager
= new
WatchedHistoryManager
(
560
watchedHistoryManager
.start();
561
mTvView.setWatchedHistoryManager(
watchedHistoryManager
);
[
all
...]
Completed in 906 milliseconds