Searched refs:newV (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Launcher2/src/com/android/launcher2/ |
D | FocusHelper.java | 599 View newV = views.get(newI); in findIndexOfIcon() local 600 if (newV instanceof BubbleTextView || newV instanceof FolderIcon) { in findIndexOfIcon() 601 return newV; in findIndexOfIcon() 636 View newV = views.get(index); in getClosestIconOnLine() local 637 CellLayout.LayoutParams tmpLp = (CellLayout.LayoutParams) newV.getLayoutParams(); in getClosestIconOnLine() 640 (newV instanceof BubbleTextView || newV instanceof FolderIcon)) { in getClosestIconOnLine()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
D | BluetoothOppProvider.java | 141 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { in onUpgrade() argument 143 if (newV == DB_VERSION_NOP_UPGRADE_TO) { // that's a no-op in onUpgrade() 153 + newV + ", which will destroy all old data"); in onUpgrade()
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | DownloadProvider.java | 258 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { in onUpgrade() argument 266 + " to version " + newV + ", which will destroy all old data"); in onUpgrade() 268 } else if (oldV > newV) { in onUpgrade() 272 + " (current version is " + newV + "), destroying all old data"); in onUpgrade() 276 for (int version = oldV + 1; version <= newV; version++) { in onUpgrade()
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | MediaProvider.java | 399 public void onUpgrade(final SQLiteDatabase db, final int oldV, final int newV) { in onUpgrade() argument 401 updateDatabase(mContext, db, mInternal, oldV, newV); in onUpgrade()
|