OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wordList2
(Results
1 - 2
of
2
) sorted by null
/packages/apps/TV/src/com/android/tv/recommendation/
RoutineWatchEvaluator.java
117
List<String>
wordList2
= splitTextToWords(title2);
118
if (wordList1.isEmpty() ||
wordList2
.isEmpty()) {
122
wordList1,
wordList2
);
126
double recall = (double) maxMatchedWordSeqLen /
wordList2
.size();
/packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
RoutineWatchEvaluatorTest.java
200
List<String>
wordList2
= RoutineWatchEvaluator.splitTextToWords(text2);
202
mEvaluator.calculateMaximumMatchedWordSequenceLength(wordList1,
wordList2
));
204
mEvaluator.calculateMaximumMatchedWordSequenceLength(
wordList2
, wordList1));
Completed in 618 milliseconds