OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCodes
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardCodesSet.java
28
private int[]
mCodes
= DEFAULT;
32
mCodes
= (codes != null) ? codes : DEFAULT;
38
return
mCodes
[id];
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java
147
private int[][]
mCodes
;
152
mCodes
= new int[Constants.DICTIONARY_MAX_WORD_LENGTH][];
255
if (
mCodes
.length < mInputLength)
mCodes
= new int[mInputLength][];
262
if (
mCodes
[i] == null ||
mCodes
[i].length < 1) {
263
mCodes
[i] = new int[ProximityInfo.MAX_PROXIMITY_CHARS_SIZE];
269
proximityInfo.fillArrayWithNearestKeyCodes(x, y, codes.getCodeAt(i),
mCodes
[i]);
420
currentChars =
mCodes
[inputIndex];
[
all
...]
Completed in 3134 milliseconds