Home
last modified time | relevance | path

Searched refs:mGridNeighbors (Results 1 – 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DProximityInfo.java54 private final List<Key>[] mGridNeighbors; field in ProximityInfo
77 mGridNeighbors = new List[mGridSize]; in ProximityInfo()
117 final List<Key>[] gridNeighborKeys = mGridNeighbors; in createNativeProximityInfo()
249 final int gridSize = mGridNeighbors.length; in computeNearestNeighbors()
367 mGridNeighbors[i] = Collections.unmodifiableList(neighbors); in computeNearestNeighbors()
398 if (mGridNeighbors == null) { in getNearestKeys()
404 return mGridNeighbors[index]; in getNearestKeys()
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DKeyboard.java158 private int[][] mGridNeighbors; field in Keyboard
704 mGridNeighbors = new int[GRID_SIZE][]; in computeNearestNeighbors()
724 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell; in computeNearestNeighbors()
737 if (mGridNeighbors == null) computeNearestNeighbors(); in getNearestKeys()
741 return mGridNeighbors[index]; in getNearestKeys()