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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 47 private final Key[][] mGridNeighbors;
69 mGridNeighbors = new Key[mGridSize][];
94 mGridNeighbors = new Key[mGridSize][];
129 final Key[][] gridNeighborKeys = mGridNeighbors;
233 mGridNeighbors[(y / mCellHeight) * mGridWidth + (x / mCellWidth)] =
265 if (mGridNeighbors == null) {
271 return mGridNeighbors[index];
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 158 private int[][] mGridNeighbors;
704 mGridNeighbors = new int[GRID_SIZE][];
724 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell;
737 if (mGridNeighbors == null) computeNearestNeighbors();
741 return mGridNeighbors[index];
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 142 private int[][] mGridNeighbors;
728 mGridNeighbors = new int[GRID_SIZE][];
747 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell;
760 if (mGridNeighbors == null) computeNearestNeighbors();
764 return mGridNeighbors[index];
    [all...]

Completed in 623 milliseconds