Home | History | Annotate | Download | only in src

Lines Matching defs:Dictionary

22 //#define LOG_TAG "dictionary.cpp"
26 #include "dictionary.h"
37 Dictionary::Dictionary(void *dict, int typedLetterMultiplier, int fullWordMultiplier)
45 Dictionary::~Dictionary()
49 int Dictionary::getSuggestions(int *codes, int codesSize, unsigned short *outWords, int *frequencies,
90 Dictionary::registerNextLetter(unsigned short c)
98 Dictionary::getVersionNumber()
105 // Checks whether it has the latest dictionary or the old dictionary
107 Dictionary::checkIfDictVersionIsLatest()
113 Dictionary::getChar(int *pos)
125 Dictionary::getAddress(int *pos)
140 Dictionary::getFreq(int *pos)
162 Dictionary::wideStrLen(unsigned short *str)
172 Dictionary::addWord(unsigned short *word, int length, int frequency)
211 Dictionary::addWordBigram(unsigned short *word, int length, int frequency)
251 Dictionary::toLowerCase(unsigned short c) {
264 Dictionary::sameAsTyped(unsigned short *word, int length)
283 Dictionary::getWordsRec(int pos, int depth, int maxDepth, bool completion, int snr, int inputIndex,
365 Dictionary::getBigramAddress(int *pos, bool advance)
381 Dictionary::getBigramFreq(int *pos)
390 Dictionary::getBigrams(unsigned short *prevWord, int prevWordLength, int *codes, int codesSize,
429 Dictionary::searchForTerminalNode(int addressLookingFor, int frequency)
534 Dictionary::checkFirstCharacter(unsigned short *word)
552 Dictionary::isValidWord(unsigned short *word, int length)
562 Dictionary::isValidWordRec(int pos, unsigned short *word, int offset, int length) {