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

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
LevenshteinDistance.java 109 int targetPos = trgLen;
112 while (targetPos > 0) {
113 int editType = editTab[sourcePos][targetPos];
119 targetPos--;
120 ops[targetPos] = new EditOperation(editType, sourcePos);
124 targetPos--;
126 ops[targetPos] = new EditOperation(editType, sourcePos);
  /packages/apps/Launcher2/src/com/android/launcher2/
InstallWidgetReceiver.java 86 int targetScreen, int[] targetPos) {
93 mTargetLayoutPos = targetPos;

Completed in 91 milliseconds