Searched refs:whereArgs (Results 1 – 2 of 2) sorted by relevance
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | LoaderThrottle.java | 305 public int delete(Uri uri, String where, String[] whereArgs) { in delete() argument 314 count = db.delete(MainTable.TABLE_NAME, where, whereArgs); in delete() 325 count = db.delete(MainTable.TABLE_NAME, finalWhere, whereArgs); in delete() 341 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { in update() argument 349 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs); in update() 357 count = db.update(MainTable.TABLE_NAME, values, finalWhere, whereArgs); in update()
|
/development/samples/NotePad/src/com/example/android/notepad/ |
D | NotePadProvider.java | 550 public int delete(Uri uri, String where, String[] whereArgs) { in delete() argument 567 whereArgs // The incoming where clause values in delete() 596 whereArgs // The incoming where clause values. in delete() 636 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { in update() argument 655 whereArgs // The where clause column values to select on. in update() 689 whereArgs // The where clause column values to select on, or in update()
|