Searched refs:delete (Results 51 - 75 of 327) sorted by relevance

1234567891011>>

/packages/apps/Phone/src/com/android/phone/
H A DCallTime.java208 file.delete();
213 file.delete();
/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DUserDictionaryAddWordFragment.java71 MenuItem actionItem = menu.add(0, OPTIONS_MENU_DELETE, 0, R.string.delete)
80 * This class only supports the delete menu item.
87 mContents.delete(getActivity());
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandlerForOrganization.java96 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { method in class:DataRowHandlerForOrganization
100 int count = super.delete(db, txContext, c);
H A DDataRowHandlerForPhoto.java131 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { method in class:DataRowHandlerForPhoto
133 int count = super.delete(db, txContext, c);
H A DVoicemailStatusTable.java77 public int delete(UriData uriData, String selection, String[] selectionArgs) { method in class:VoicemailStatusTable
80 return getDatabaseModifier(db).delete(mTableName, combinedClause,
H A DDataRowHandlerForPhoneNumber.java101 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { method in class:DataRowHandlerForPhoneNumber
105 int count = super.delete(db, txContext, c);
117 db.delete(Tables.PHONE_LOOKUP, PhoneLookupColumns.DATA_ID + "=?", mSelectionArgs1);
H A DPhotoStore.java93 mDb.delete(Tables.PHOTO_FILES, null, null);
124 // Not a valid photo store entry - delete the file.
215 // Write failed - will delete the file below.
227 boolean deleted = file.delete();
273 mDb.delete(ContactsDatabaseHelper.Tables.PHOTO_FILES, PhotoFilesColumns.CONCRETE_ID + "=?",
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
H A DDataExporter.java127 file.delete();
136 file.delete();
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
H A DRawContactUtil.java63 public static void delete(ContentResolver resolver, long rawContactId, method in class:RawContactUtil
69 resolver.delete(uri, null, null);
/packages/apps/CertInstaller/src/com/android/certinstaller/
H A DUtil.java92 if ((file != null) && !file.delete()) {
93 Log.w(TAG, "cannot delete cert: " + file);
/packages/apps/ContactsCommon/src/com/android/contacts/common/dialog/
H A DClearFrequentsDialog.java54 resolver.delete(ContactsContract.DataUsageFeedback.DELETE_USAGE_URI,
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DClearCallLogDialog.java55 resolver.delete(Calls.CONTENT_URI, null, null);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
H A DFolder.java160 public abstract void delete(boolean recurse) throws MessagingException; method in class:Folder
/packages/apps/Email/src/com/android/email/mail/store/imap/
H A DImapTempFileLiteral.java60 * Make sure we delete the temp file.
102 mFile.delete();
/packages/apps/Email/src/com/android/email/mail/transport/
H A DDiscourseLogger.java58 mReceivingLine.delete(0, Integer.MAX_VALUE);
/packages/apps/Email/tests/src/com/android/email/activity/setup/
H A DAccountSetupAccountTypeTests.java63 mContext.getContentResolver().delete(uri, null, null);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DMediaObject.java99 public void delete() { method in class:MediaObject
/packages/apps/Gallery2/src/com/android/photos/data/
H A DMediaCacheDatabase.java198 public void delete(Uri uri, MediaSize size, Action action) { method in class:MediaCacheDatabase
206 public void delete(Uri uri, Action action) { method in class:MediaCacheDatabase
227 db.delete(TABLE, where, whereArgs);
261 db.delete(TABLE, whereDelete, whereArgs);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
H A DResearchLogDirectory.java92 file.delete();
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DPackage.java59 intermediateFile.delete();
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastContentProvider.java167 public int delete(Uri uri, String selection, String[] selectionArgs) { method in class:CellBroadcastContentProvider
168 throw new UnsupportedOperationException("delete not supported");
211 * Internal method to delete a cell broadcast by row ID and notify observers.
212 * @param rowId the row ID of the broadcast to delete
218 int rowCount = db.delete(CellBroadcastDatabaseHelper.TABLE_NAME,
224 Log.e(TAG, "failed to delete broadcast at row " + rowId);
230 * Internal method to delete all cell broadcasts and notify observers.
236 int rowCount = db.delete(CellBroadcastDatabaseHelper.TABLE_NAME, null, null);
240 Log.e(TAG, "failed to delete all broadcasts");
/packages/apps/SoundRecorder/src/com/android/soundrecorder/
H A DRecorder.java90 delete();
122 public void delete() { method in class:Recorder
126 mSampleFile.delete();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExternalDictionaryGetterForDebug.java131 tempFile.delete();
138 finalFile.delete();
157 if (null != tempFile) tempFile.delete();
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
H A DUserDictionaryProvider.java221 public int delete(Uri uri, String where, String[] whereArgs) { method in class:UserDictionaryProvider
226 count = db.delete(USERDICT_TABLE_NAME, where, whereArgs);
231 count = db.delete(USERDICT_TABLE_NAME, Words._ID + "=" + wordId
/packages/apps/Calendar/src/com/android/calendar/
H A DDeleteEventHelper.java49 * asking if the user wants to delete just this one instance, or all the
51 * may also cancel the delete.
58 * {@link delete()} methods on this class.
61 * {@link #delete()} multiple times).
75 // the runnable to execute when the delete is confirmed
120 DeleteEventHelper.this.delete(mStartMillis, mEndMillis, mModel, mWhichDelete);
172 // set mWhichDelete to the delete type at that index
176 // events in the series to delete.
198 * a normal event) or a dialog asking which events to delete (if the
209 public void delete(lon method in class:DeleteEventHelper
218 public void delete(long begin, long end, long eventId, int which, Runnable callback) { method in class:DeleteEventHelper
257 public void delete(long begin, long end, CalendarEventModel model, int which) { method in class:DeleteEventHelper
[all...]

Completed in 345 milliseconds

1234567891011>>