OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MAX_WORD_LENGTH
(Results
1 - 13
of
13
) sorted by null
/external/chromium/net/base/
effective_tld_names_unittest2.cc
43
#define
MAX_WORD_LENGTH
6
130
if (len <=
MAX_WORD_LENGTH
&& len >= MIN_WORD_LENGTH)
effective_tld_names.cc
47
#define
MAX_WORD_LENGTH
43
[
all
...]
effective_tld_names_unittest1.cc
48
#define
MAX_WORD_LENGTH
11
163
if (len <=
MAX_WORD_LENGTH
&& len >= MIN_WORD_LENGTH)
registry_controlled_domain_unittest.cc
12
#undef
MAX_WORD_LENGTH
/external/chromium_org/net/base/registry_controlled_domains/
effective_tld_names_unittest2.cc
43
#define
MAX_WORD_LENGTH
6
141
if (len <=
MAX_WORD_LENGTH
&& len >= MIN_WORD_LENGTH)
registry_controlled_domain_unittest.cc
13
#undef
MAX_WORD_LENGTH
effective_tld_names_unittest1.cc
48
#define
MAX_WORD_LENGTH
11
198
if (len <=
MAX_WORD_LENGTH
&& len >= MIN_WORD_LENGTH)
effective_tld_names.cc
47
#define
MAX_WORD_LENGTH
43
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordComposer.java
29
private static final int
MAX_WORD_LENGTH
= Constants.DICTIONARY_MAX_WORD_LENGTH;
41
// The array is limited to
MAX_WORD_LENGTH
code points, but mTypedWord extends past that
42
// and mCodePointSize can go past that. If mCodePointSize is greater than
MAX_WORD_LENGTH
,
43
// this just does not contain the associated code points past
MAX_WORD_LENGTH
.
45
private final InputPointers mInputPointers = new InputPointers(
MAX_WORD_LENGTH
);
49
// to
MAX_WORD_LENGTH
code points.
67
// This is the number of code points entered so far. This is not limited to
MAX_WORD_LENGTH
.
69
//
MAX_WORD_LENGTH
in which case mPrimaryKeyCodes only contain the first
MAX_WORD_LENGTH
80
mPrimaryKeyCodes = new int[
MAX_WORD_LENGTH
];
[
all
...]
BinaryDictionary.java
43
// Must be equal to
MAX_WORD_LENGTH
in native/jni/src/defines.h
44
private static final int
MAX_WORD_LENGTH
= Constants.DICTIONARY_MAX_WORD_LENGTH;
64
private final int[] mInputCodePoints = new int[
MAX_WORD_LENGTH
];
65
private final int[] mOutputCodePoints = new int[
MAX_WORD_LENGTH
* MAX_RESULTS];
187
if (composerSize >
MAX_WORD_LENGTH
- 1) return null;
206
final int start = j *
MAX_WORD_LENGTH
;
208
while (len <
MAX_WORD_LENGTH
&& mOutputCodePoints[start + len] != 0) {
ExpandableBinaryDictionary.java
65
protected static final int
MAX_WORD_LENGTH
= Constants.DICTIONARY_MAX_WORD_LENGTH;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FormatSpec.java
220
static final int
MAX_WORD_LENGTH
= Constants.DICTIONARY_MAX_WORD_LENGTH;
/packages/inputmethods/LatinIME/native/jni/src/
defines.h
31
// Must be equal to Constants.Dictionary.
MAX_WORD_LENGTH
in Java
32
#define
MAX_WORD_LENGTH
48
114
dumpWordInfo(&outWords[i *
MAX_WORD_LENGTH
],
MAX_WORD_LENGTH
, i, frequencies[i]);
Completed in 185 milliseconds