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 54 private final List<Key>[] mGridNeighbors;
77 mGridNeighbors = new List[mGridSize];
117 final List<Key>[] gridNeighborKeys = mGridNeighbors;
249 final int gridSize = mGridNeighbors.length;
367 mGridNeighbors[i] = Collections.unmodifiableList(neighbors);
398 if (mGridNeighbors == null) {
404 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 549 milliseconds