Home
last modified time | relevance | path

Searched refs:newV (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
DFocusHelper.java599 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/
DBluetoothOppProvider.java154 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { in onUpgrade() argument
156 if (newV == DB_VERSION_NOP_UPGRADE_TO) { // that's a no-op in onUpgrade()
166 + newV + ", which will destroy all old data"); in onUpgrade()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadProvider.java247 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { in onUpgrade() argument
255 + " to version " + newV + ", which will destroy all old data"); in onUpgrade()
257 } else if (oldV > newV) { in onUpgrade()
261 + " (current version is " + newV + "), destroying all old data"); in onUpgrade()
265 for (int version = oldV + 1; version <= newV; version++) { in onUpgrade()
/packages/providers/DrmProvider/src/com/android/providers/drm/
DDrmProvider.java91 final int oldV, final int newV) { in onUpgrade() argument
93 oldV+ " to " + newV + in onUpgrade()
/packages/providers/MediaProvider/src/com/android/providers/media/
DMediaProvider.java371 public void onUpgrade(final SQLiteDatabase db, final int oldV, final int newV) { in onUpgrade() argument
373 updateDatabase(mContext, db, mInternal, oldV, newV); in onUpgrade()