Searched refs:newV (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DFocusHelper.java599 View newV = views.get(newI);
600 if (newV instanceof BubbleTextView || newV instanceof FolderIcon) {
601 return newV;
636 View newV = views.get(index);
637 CellLayout.LayoutParams tmpLp = (CellLayout.LayoutParams) newV.getLayoutParams();
640 (newV instanceof BubbleTextView || newV instanceof FolderIcon)) {
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppProvider.java141 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { argument
143 if (newV == DB_VERSION_NOP_UPGRADE_TO) { // that's a no-op
153 + newV + ", which will destroy all old data");
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadProvider.java252 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { argument
260 + " to version " + newV + ", which will destroy all old data");
262 } else if (oldV > newV) {
266 + " (current version is " + newV + "), destroying all old data");
270 for (int version = oldV + 1; version <= newV; version++) {
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java395 public void onUpgrade(final SQLiteDatabase db, final int oldV, final int newV) { argument
397 updateDatabase(mContext, db, mInternal, oldV, newV);

Completed in 244 milliseconds