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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 58 private final List<Key>[] mGridNeighbors;
75 mGridNeighbors = new List[mGridSize];
115 final List<Key>[] gridNeighborKeys = mGridNeighbors;
247 final int gridSize = mGridNeighbors.length;
365 mGridNeighbors[i] = Collections.unmodifiableList(neighbors);
400 return mGridNeighbors[index];
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 143 private int[][] mGridNeighbors;
741 mGridNeighbors = new int[GRID_SIZE][];
760 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell;
773 if (mGridNeighbors == null) computeNearestNeighbors();
777 return mGridNeighbors[index];
    [all...]
  /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];

Completed in 127 milliseconds