Searched refs:getMaxFrequencyOfExactMatches (Results 1 – 8 of 8) sorted by relevance
105 public int getMaxFrequencyOfExactMatches(final String word) { in getMaxFrequencyOfExactMatches() method in ReadOnlyBinaryDictionary108 return mBinaryDictionary.getMaxFrequencyOfExactMatches(word); in getMaxFrequencyOfExactMatches()
99 public int getMaxFrequencyOfExactMatches(final String word) { in getMaxFrequencyOfExactMatches() method in DictionaryCollection102 final int tempFreq = mDictionaries.get(i).getMaxFrequencyOfExactMatches(word); in getMaxFrequencyOfExactMatches()
499 public int getMaxFrequencyOfExactMatches(final String word) { in getMaxFrequencyOfExactMatches() method in ExpandableBinaryDictionary509 return mBinaryDictionary.getMaxFrequencyOfExactMatches(word); in getMaxFrequencyOfExactMatches()
548 tempFreq = dictionary.getMaxFrequencyOfExactMatches(word); in getFrequencyInternal()563 public int getMaxFrequencyOfExactMatches(final String word) { in getMaxFrequencyOfExactMatches() method in DictionaryFacilitator
107 public int getMaxFrequencyOfExactMatches(final String word) { in getMaxFrequencyOfExactMatches() method in Dictionary
349 public int getMaxFrequencyOfExactMatches(final String word) { in getMaxFrequencyOfExactMatches() method in BinaryDictionary
1506 assertEquals(15, binaryDictionary.getMaxFrequencyOfExactMatches("abc")); in testGetMaxFrequencyOfExactMatches()1508 assertEquals(20, binaryDictionary.getMaxFrequencyOfExactMatches("abc")); in testGetMaxFrequencyOfExactMatches()1510 assertEquals(25, binaryDictionary.getMaxFrequencyOfExactMatches("abc")); in testGetMaxFrequencyOfExactMatches()1512 assertEquals(30, binaryDictionary.getMaxFrequencyOfExactMatches("abc")); in testGetMaxFrequencyOfExactMatches()1514 assertEquals(30, binaryDictionary.getMaxFrequencyOfExactMatches("abc")); in testGetMaxFrequencyOfExactMatches()
225 final int exactMatchFreq = mDictionaryFacilitator.getMaxFrequencyOfExactMatches(testedWord); in checkDistracterUsingMaxFreqencyOfExactMatches()