Home
last modified time | relevance | path

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

/aosp12/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictDecoderEncoderTests.java374 final HashMap<String, Set<String>> expBigrams = new HashMap<>(); in checkWordMap() local
378 if (expBigrams.get(word1) == null) { in checkWordMap()
379 expBigrams.put(word1, new HashSet<String>()); in checkWordMap()
381 expBigrams.get(word1).add(expectedWords.get(w2)); in checkWordMap()
403 assertEquals(actBigrams, expBigrams); in checkWordMap()