Home | History | Annotate | Download | only in keyboard

Lines Matching defs:keyCount

92             int[] proximityCharsArray, int keyCount, int[] keyXCoordinates, int[] keyYCoordinates,
149 final int keyCount = getProximityInfoKeysCount(sortedKeys);
150 final int[] keyXCoordinates = new int[keyCount];
151 final int[] keyYCoordinates = new int[keyCount];
152 final int[] keyWidths = new int[keyCount];
153 final int[] keyHeights = new int[keyCount];
154 final int[] keyCharCodes = new int[keyCount];
177 sweetSpotCenterXs = new float[keyCount];
178 sweetSpotCenterYs = new float[keyCount];
179 sweetSpotRadii = new float[keyCount];
223 mMostCommonKeyWidth, mMostCommonKeyHeight, proximityCharsArray, keyCount,
246 final int keyCount = mSortedKeys.size();
255 // keycount is about 40 and a pointer to a Key is 4 bytes. This contains, for each cell,
257 // keycount'th element is the start of a new cell, and each of these virtual subarrays
258 // start empty with keycount spaces available. This fills up gradually in the loop below.
261 final Key[] neighborsFlatBuffer = new Key[gridSize * keyCount];
349 neighborsFlatBuffer[index * keyCount + neighborCountPerCell[index]] = key;
359 final int indexStart = i * keyCount;