Searched defs:WordProperty (Results 1 - 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/property/
H A Dword_property.h30 class WordProperty { class in namespace:latinime
33 WordProperty() function in class:latinime::WordProperty
36 WordProperty(const std::vector<int> *const codePoints, function in class:latinime::WordProperty
55 DISALLOW_ASSIGNMENT_OPERATOR(WordProperty);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DWordProperty.java32 public final class WordProperty implements Comparable<WordProperty> { class in inherits:Comparable
47 public WordProperty(final String word, final ProbabilityInfo probabilityInfo, method in class:WordProperty
72 public WordProperty(final int[] codePoints, final boolean isNotAWord, method in class:WordProperty
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 67 milliseconds