HomeSort by relevance Sort by last modified time
    Searched refs:maxWordLength (Results 1 - 13 of 13) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/
dictionary.cpp 31 int maxWordLength, int maxWords)
35 if (MAX_WORD_LENGTH_INTERNAL < maxWordLength) {
37 maxWordLength, MAX_WORD_LENGTH_INTERNAL);
43 maxWords, SUB_QUEUE_MAX_WORDS, maxWordLength);
47 fullWordMultiplier, maxWordLength, maxWords, options);
48 mBigramDictionary = new BigramDictionary(mDict + headerSize, maxWordLength, this);
bigram_dictionary.h 30 BigramDictionary(const unsigned char *dict, int maxWordLength, Dictionary *parentDictionary);
32 unsigned short *outWords, int *frequencies, int maxWordLength, int maxBigrams);
dictionary.h 35 int fullWordMultiplier, int maxWordLength, int maxWords);
50 unsigned short *outWords, int *frequencies, int maxWordLength, int maxBigrams) {
52 maxWordLength, maxBigrams);
words_priority_queue_pool.h 28 WordsPriorityQueuePool(int mainQueueMaxWords, int subQueueMaxWords, int maxWordLength) {
30 mMasterQueue = new(mMasterQueueBuf) WordsPriorityQueue(mainQueueMaxWords, maxWordLength);
35 WordsPriorityQueue(subQueueMaxWords, maxWordLength);
words_priority_queue.h 44 WordsPriorityQueue(int maxWords, int maxWordLength) :
46 (unsigned int) maxWordLength) {
47 mSuggestedWords = new SuggestedWord[maxWordLength];
48 for (int i = 0; i < maxWordLength; ++i) {
bigram_dictionary.cpp 30 BigramDictionary::BigramDictionary(const unsigned char *dict, int maxWordLength,
32 : DICT(dict), MAX_WORD_LENGTH(maxWordLength), mParentDictionary(parentDictionary) {
91 * maxWordLength: the maximum size of a word.
102 int codesSize, unsigned short *bigramChars, int *bigramFreq, int maxWordLength,
correction.h 99 const ProximityInfo *pi, const int inputLength, const int maxWordLength);
unigram_dictionary.h 77 int fullWordMultiplier, int maxWordLength, int maxWords, const unsigned int flags);
unigram_dictionary.cpp 44 int fullWordMultiplier, int maxWordLength, int maxWords, const unsigned int flags)
45 : DICT_ROOT(streamStart), MAX_WORD_LENGTH(maxWordLength), MAX_WORDS(maxWords),
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserDictionary.java 204 final int maxWordLength = getMaxWordLength();
215 if (word.length() < maxWordLength) {
218 if (null != shortcut && shortcut.length() < maxWordLength) {
ContactsDictionary.java 126 final int maxWordLength = getMaxWordLength();
158 if (wordLen < maxWordLength && wordLen > 1) {
BinaryDictionary.java 85 int typedLetterMultiplier, int fullWordMultiplier, int maxWordLength, int maxWords);
94 int maxWordLength, int maxBigrams);
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 49 jint typedLetterMultiplier, jint fullWordMultiplier, jint maxWordLength, jint maxWords) {
122 fullWordMultiplier, maxWordLength, maxWords);
160 jcharArray outputArray, jintArray frequencyArray, jint maxWordLength, jint maxBigrams) {
168 inputArraySize, (unsigned short*) outputChars, frequencies, maxWordLength, maxBigrams);

Completed in 168 milliseconds