Searched defs:delete (Results 1 - 16 of 16) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/content/
H A DFileProvider.java59 public int delete(Uri uri, String selection, String[] selectionArgs) { method in class:FileProvider
/development/samples/Support4Demos/src/com/example/android/supportv4/content/
H A DSharingSupportProvider.java65 public int delete(Uri uri, String selection, String[] selectionArgs) { method in class:SharingSupportProvider
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
H A DWeatherDataProvider.java115 public int delete(Uri uri, String selection, String[] selectionArgs) { method in class:WeatherDataProvider
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/
H A DDictionaryProvider.java194 public int delete(Uri uri, String selection, String[] selectionArgs) { method in class:DictionaryProvider
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
H A DXmlDocumentProvider.java320 public int delete(Uri uri, String selection, String[] selectionArgs) { method in class:XmlDocumentProvider
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
H A DRssContentProvider.java194 public int delete(Uri uri, String where) { method in class:RssContentProvider
196 int rowCount = mDb.delete(DATABASE_TABLE_NAME, ID + " = " + uri.getPathLeafId());
/development/samples/NotePad/src/com/example/android/notepad/
H A DNotePadProvider.java571 * {@link android.content.ContentResolver#delete(Uri, String, String[])}.
579 * 0 is returned. To delete all rows and get a row count, use "1" as the where clause.
583 public int delete(Uri uri, String where, String[] whereArgs) { method in class:NotePadProvider
591 // Does the delete based on the incoming URI pattern.
594 // If the incoming pattern matches the general pattern for notes, does a delete
597 count = db.delete(
604 // If the incoming URI matches a single note ID, does the delete based on the
625 // Performs the delete.
626 count = db.delete(
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DLoaderThrottle.java305 public int delete(Uri uri, String where, String[] whereArgs) { method in class:LoaderThrottle.SimpleProvider
313 // If URI is main table, delete uses incoming where clause and args.
314 count = db.delete(MainTable.TABLE_NAME, where, whereArgs);
317 // If the incoming URI matches a single note ID, does the delete based on the
321 // If URI is for a particular row ID, delete is based on incoming
325 count = db.delete(MainTable.TABLE_NAME, finalWhere, whereArgs);
466 cr.delete(MainTable.CONTENT_URI, null, null);
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderThrottleSupport.java306 public int delete(Uri uri, String where, String[] whereArgs) { method in class:LoaderThrottleSupport.SimpleProvider
314 // If URI is main table, delete uses incoming where clause and args.
315 count = db.delete(MainTable.TABLE_NAME, where, whereArgs);
318 // If the incoming URI matches a single note ID, does the delete based on the
322 // If URI is for a particular row ID, delete is based on incoming
326 count = db.delete(MainTable.TABLE_NAME, finalWhere, whereArgs);
466 cr.delete(MainTable.CONTENT_URI, null, null);
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
H A DDiskLruCache.java64 * directory must be exclusive to the cache; the cache may delete or overwrite
251 * Recursively delete everything in {@code dir}.
263 if (!file.delete()) {
264 throw new IOException("failed to delete file: " + file);
328 cache.delete();
463 if (file.exists() && !file.delete()) {
641 if (!file.delete()) {
642 throw new IOException("failed to delete " + file);
707 * Closes the cache and deletes all of its stored values. This will delete
711 public void delete() throw method in class:DiskLruCache
[all...]
/development/samples/training/AnimationsDemo/libs/
H A Dandroid-support-v13.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v13/ android/support/v13/app/ ...
/development/samples/training/bitmapfun/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/widget/ ...
/development/samples/training/basic/ActivityLifecycle/libs/
H A Dandroid-support-v13.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v13/ android/support/v13/app/ ...
/development/samples/training/multiscreen/newsreader/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/content/ ...
/development/samples/training/basic/FragmentBasics/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/development/samples/training/location-aware/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...

Completed in 1487 milliseconds