Searched refs:newV (Results 1 - 5 of 5) 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/Launcher3/src/com/android/launcher3/
H A DFocusHelper.java562 View newV = views.get(newI);
563 if (newV instanceof BubbleTextView || newV instanceof FolderIcon) {
564 return newV;
599 View newV = views.get(index);
600 CellLayout.LayoutParams tmpLp = (CellLayout.LayoutParams) newV.getLayoutParams();
603 (newV instanceof BubbleTextView || newV instanceof FolderIcon)) {
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppProvider.java154 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { argument
156 if (newV == DB_VERSION_NOP_UPGRADE_TO) { // that's a no-op
166 + newV + ", which will destroy all old data");
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadProvider.java251 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { argument
259 + " to version " + newV + ", which will destroy all old data");
261 } else if (oldV > newV) {
265 + " (current version is " + newV + "), destroying all old data");
269 for (int version = oldV + 1; version <= newV; version++) {
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java388 public void onUpgrade(final SQLiteDatabase db, final int oldV, final int newV) { argument
390 updateDatabase(mContext, db, mInternal, oldV, newV);

Completed in 403 milliseconds