Home
last modified time | relevance | path

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

/packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
DRoutineWatchEvaluatorTest.java49 this.mScore = RoutineWatchEvaluator.calculateTitleMatchScore(base, text); in ScoredItem()
107 assertEqualScores(0.0, RoutineWatchEvaluator.calculateTitleMatchScore("", "")); in testCalculateTitleMatchScore_empty()
108 assertEqualScores(0.0, RoutineWatchEvaluator.calculateTitleMatchScore("foo", "")); in testCalculateTitleMatchScore_empty()
109 assertEqualScores(0.0, RoutineWatchEvaluator.calculateTitleMatchScore("", "foo")); in testCalculateTitleMatchScore_empty()
114 assertEqualScores(0.0, RoutineWatchEvaluator.calculateTitleMatchScore(" ", " ")); in testCalculateTitleMatchScore_spaces()
115 assertEqualScores(0.0, RoutineWatchEvaluator.calculateTitleMatchScore("foo", " ")); in testCalculateTitleMatchScore_spaces()
116 assertEqualScores(0.0, RoutineWatchEvaluator.calculateTitleMatchScore(" ", "foo")); in testCalculateTitleMatchScore_spaces()
121 assertEqualScores(0.0, RoutineWatchEvaluator.calculateTitleMatchScore(null, null)); in testCalculateTitleMatchScore_null()
122 assertEqualScores(0.0, RoutineWatchEvaluator.calculateTitleMatchScore("foo", null)); in testCalculateTitleMatchScore_null()
123 assertEqualScores(0.0, RoutineWatchEvaluator.calculateTitleMatchScore(null, "foo")); in testCalculateTitleMatchScore_null()
/packages/apps/TV/src/com/android/tv/recommendation/
DRoutineWatchEvaluator.java100 calculateTitleMatchScore(currentProgram.getTitle(), watchedProgram.getTitle()); in calculateRoutineWatchScore()
117 static double calculateTitleMatchScore(@Nullable String title1, @Nullable String title2) { in calculateTitleMatchScore() method in RoutineWatchEvaluator