HomeSort by relevance Sort by last modified time
    Searched defs:WordProperty (Results 1 - 2 of 2) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/property/
word_property.h 30 class WordProperty {
33 WordProperty()
36 WordProperty(const std::vector<int> *const codePoints,
55 DISALLOW_ASSIGNMENT_OPERATOR(WordProperty);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
WordProperty.java 32 public final class WordProperty implements Comparable<WordProperty> {
47 public WordProperty(final String word, final ProbabilityInfo probabilityInfo,
72 public WordProperty(final int[] codePoints, final boolean isNotAWord,
109 private static int computeHashCode(WordProperty word) {
127 public int compareTo(final WordProperty w) {
142 if (!(o instanceof WordProperty)) return false;
143 WordProperty w = (WordProperty)o;

Completed in 83 milliseconds