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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordComposer.java 44 private int[] mPrimaryKeyCodes;
46 // This is the typed word, as a StringBuilder. This has the same contents as mPrimaryKeyCodes
48 // at any given time. However this is not limited in size, while mPrimaryKeyCodes is limited
68 // In general, this contains the size of mPrimaryKeyCodes, except when this is greater than
69 // MAX_WORD_LENGTH in which case mPrimaryKeyCodes only contain the first MAX_WORD_LENGTH
80 mPrimaryKeyCodes = new int[MAX_WORD_LENGTH];
92 mPrimaryKeyCodes = Arrays.copyOf(source.mPrimaryKeyCodes, source.mPrimaryKeyCodes.length);
145 return mPrimaryKeyCodes[index]
    [all...]
LastComposedWord.java 43 public final int[] mPrimaryKeyCodes;
63 mPrimaryKeyCodes = primaryKeyCodes;

Completed in 23 milliseconds