Home | History | Annotate | Download | only in latin

Lines Matching refs:Dictionary

30  * Abstract base class for a dictionary that can do a fuzzy search for words based on a set of key
33 public abstract class Dictionary {
37 // The following types do not actually come from real dictionary instances, so we create
58 // The following types of dictionary have actual functional instances. We don't need final
59 // phony dictionary instances for them.
62 // User dictionary, the system-managed one.
64 // User history dictionary internal to LatinIME.
67 // The locale for this dictionary. May be null if unknown (phony dictionary for example).
71 * Set out of the dictionary types listed above that are based on data specific to the user,
80 public Dictionary(final String dictType, final Locale locale) {
116 * Checks if the given word is in the dictionary regardless of it being valid or not.
164 * Subclasses may override to indicate that this Dictionary is not yet properly initialized.
178 // avoid auto-committing stuff. Implementations of the Dictionary class that know to
184 * Whether this dictionary is based on data specific to the user, e.g., the user's contacts.
185 * @return Whether this dictionary is specific to the user.
192 * Not a true dictionary. A placeholder used to indicate suggestions that don't come from any
193 * real dictionary.
196 static class PhonyDictionary extends Dictionary {