OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DICTIONARY_MAX_WORD_LENGTH
(Results
1 - 12
of
12
) sorted by null
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/define/
DecoderSpecificConstants.java
25
public static final int
DICTIONARY_MAX_WORD_LENGTH
= 48;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DicTraverseSession.java
32
new int[DecoderSpecificConstants.
DICTIONARY_MAX_WORD_LENGTH
];
39
new int[DecoderSpecificConstants.
DICTIONARY_MAX_WORD_LENGTH
* MAX_RESULTS];
LastComposedWord.java
56
new InputPointers(DecoderSpecificConstants.
DICTIONARY_MAX_WORD_LENGTH
);
BinaryDictionary.java
60
public static final int
DICTIONARY_MAX_WORD_LENGTH
= 48;
323
final int start = j *
DICTIONARY_MAX_WORD_LENGTH
;
325
while (len <
DICTIONARY_MAX_WORD_LENGTH
396
final int[] outCodePoints = new int[
DICTIONARY_MAX_WORD_LENGTH
];
435
final int[] codePoints = new int[
DICTIONARY_MAX_WORD_LENGTH
];
WordComposer.java
40
private static final int MAX_WORD_LENGTH = DecoderSpecificConstants.
DICTIONARY_MAX_WORD_LENGTH
;
ExpandableBinaryDictionary.java
74
DecoderSpecificConstants.
DICTIONARY_MAX_WORD_LENGTH
;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FormatSpec.java
187
static final int MAX_WORD_LENGTH = DecoderSpecificConstants.
DICTIONARY_MAX_WORD_LENGTH
;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
UserHistoryDictionary.java
102
if (word.length() > BinaryDictionary.
DICTIONARY_MAX_WORD_LENGTH
) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtils.java
176
for (int depth = 0; depth < DecoderSpecificConstants.
DICTIONARY_MAX_WORD_LENGTH
; ++depth) {
FusionDictionary.java
336
if (word.length >= DecoderSpecificConstants.
DICTIONARY_MAX_WORD_LENGTH
) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DictionaryInfoUtils.java
589
if (length > DecoderSpecificConstants.
DICTIONARY_MAX_WORD_LENGTH
) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryTests.java
148
for (int i = 0; i < BinaryDictionary.
DICTIONARY_MAX_WORD_LENGTH
; i++) {
[
all
...]
Completed in 70 milliseconds