Home | History | Annotate | Download | only in keyboard

Lines Matching defs:keyCount

95             int keyCount, int[] keyXCoordinates, int[] keyYCoordinates, int[] keyWidths,
151 final int keyCount = getProximityInfoKeysCount(sortedKeys);
152 final int[] keyXCoordinates = new int[keyCount];
153 final int[] keyYCoordinates = new int[keyCount];
154 final int[] keyWidths = new int[keyCount];
155 final int[] keyHeights = new int[keyCount];
156 final int[] keyCharCodes = new int[keyCount];
179 sweetSpotCenterXs = new float[keyCount];
180 sweetSpotCenterYs = new float[keyCount];
181 sweetSpotRadii = new float[keyCount];
226 proximityCharsArray, keyCount, keyXCoordinates, keyYCoordinates, keyWidths,
248 final int keyCount = mSortedKeys.size();
257 // keycount is about 40 and a pointer to a Key is 4 bytes. This contains, for each cell,
259 // keycount'th element is the start of a new cell, and each of these virtual subarrays
260 // start empty with keycount spaces available. This fills up gradually in the loop below.
263 final Key[] neighborsFlatBuffer = new Key[gridSize * keyCount];
351 neighborsFlatBuffer[index * keyCount + neighborCountPerCell[index]] = key;
361 final int indexStart = i * keyCount;