Searched refs:delete (Results 1 - 25 of 461) sorted by relevance

1234567891011>>

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
H A DSwipableView.java20 public void delete(); method in interface:SwipableView
/packages/services/Car/evs/app/
H A DWindowSurface.h40 WindowSurface(const WindowSurface&) = delete;
41 WindowSurface& operator=(const WindowSurface&) = delete;
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/core/
H A DFileSystemWriteTest.java14 file.delete();
24 file.delete();
34 file.delete();
/packages/providers/TvProvider/tests/src/com/android/providers/tv/
H A DUtils.java26 resolver.delete(Channels.CONTENT_URI, null, null);
29 resolver.delete(RecordedPrograms.CONTENT_URI, null, null);
/packages/apps/DocumentsUI/src/com/android/documentsui/base/
H A DFiles.java34 file.delete();
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
H A DTempFile.java68 void delete(); method in interface:TempFile
H A DTempPath.java72 void delete(); method in interface:TempPath
/packages/apps/Camera2/src/com/android/camera/util/
H A DFileUtil.java31 * @param directory The directory to delete.
43 if (!entry.delete()) {
47 return directory.delete();
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DFileDeleteStrategy.java25 * There is more than one way to delete a file.
26 * You may want to limit access to certain directories, to only delete
69 * @param fileToDelete the file to delete, null returns true
89 * @param fileToDelete the file to delete, not null
93 public void delete(File fileToDelete) throws IOException { method in class:FileDeleteStrategy
104 * when deletion fails. The {@link #delete(File)} and {@link #deleteQuietly(File)}
108 * This implementation uses {@link File#delete()}.
110 * @param fileToDelete the file to delete, exists, not null
116 return fileToDelete.delete();
121 * Gets a string describing the delete strateg
[all...]
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
H A DFileUtils.java37 return path.delete();
58 toFile.delete();
/packages/apps/Messaging/src/com/android/messaging/util/
H A DLongSparseSet.java57 mSet.delete(key);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DEmlTempFileDeletionService.java42 getContentResolver().delete(uri, null, null);
/packages/apps/Launcher3/tests/src/com/android/launcher3/logging/
H A DFileLogTest.java33 new File(mTempDir, "log-0").delete();
34 new File(mTempDir, "log-1").delete();
35 mTempDir.delete();
/packages/providers/TvProvider/src/com/android/providers/tv/
H A DTransientRowHelper.java75 // TvProvider in low memory conditions. If this is the case, we shouldn't delete
81 db.delete(TvProvider.PREVIEW_PROGRAMS_TABLE, PreviewPrograms.COLUMN_TRANSIENT + "=1", null);
82 db.delete(TvProvider.CHANNELS_TABLE, Channels.COLUMN_TRANSIENT + "=1", null);
83 db.delete(TvProvider.WATCH_NEXT_PROGRAMS_TABLE, WatchNextPrograms.COLUMN_TRANSIENT + "=1",
H A DEpgDataCleanupService.java80 int deleteCount = getContentResolver().delete(
98 int deleteCount = getContentResolver().delete(
142 int deleteCount = getContentResolver().delete(
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDatabaseModifier.java26 * An interface which wraps key database modify operations (insert, update, delete) to perform
48 * Use this method to delete entries from a table which you would otherwise do using the
49 * {@link SQLiteDatabase#delete(String, String, String[])} method.
51 public abstract int delete(String table, String whereClause, String[] whereArgs); method in interface:DatabaseModifier
H A DDataRowHandlerForIdentity.java63 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { method in class:DataRowHandlerForIdentity
64 final int count = super.delete(db, txContext, c);
/packages/apps/Settings/src/com/android/settings/
H A DLinkifyUtils.java57 text.delete(beginIndex, beginIndex + PLACE_HOLDER_LINK_BEGIN.length());
63 text.delete(endIndex, endIndex + PLACE_HOLDER_LINK_END.length());
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
H A DBinaryTempFileBody.java77 mFile.delete();
88 mFile.delete();
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DObservableSparseArrayCompat.java57 public void delete(final int key) { method in class:ObservableSparseArrayCompat
58 super.delete(key);
/packages/providers/ContactsProvider/test_common/src/com/android/providers/contacts/testutil/
H A DContactUtil.java39 public static void delete(ContentResolver resolver, long contactId) { method in class:ContactUtil
41 resolver.delete(uri, null, null);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DLockableFileWriter.java244 lockFile.delete();
246 file.delete();
252 lockFile.delete();
254 file.delete();
271 lockFile.delete();
/packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
H A DNaughtySuggestionProvider.java54 public int delete(Uri uri, String selection, String[] selectionArgs) { method in class:NaughtySuggestionProvider
/packages/apps/Settings/src/com/android/settings/search/
H A DSavedQueryRemover.java41 // First, delete all saved queries that are the same
42 database.delete(TABLE_SAVED_QUERIES,
/packages/apps/Terminal/src/com/android/terminal/
H A DTerminalService.java62 mTerminals.delete(key);

Completed in 555 milliseconds

1234567891011>>