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

/libcore/luni/src/main/java/java/lang/
H A DStringBuilder.java342 public StringBuilder delete(int start, int end) { method in class:StringBuilder
352 * the index of the character to delete.
H A DStringBuffer.java376 public synchronized StringBuffer delete(int start, int end) { method in class:StringBuffer
385 * the offset of the character to delete.
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DFileClientSessionCache.java51 * <p>When the number of session files exceeds MAX_SIZE, we delete the
227 delete(file);
250 delete(i.next());
289 private void delete(File file) { method in class:FileClientSessionCache.Impl
290 if (!file.delete()) {
291 System.logW("Failed to delete " + file + ".", new IOException());
/libcore/luni/src/main/java/java/util/
H A DArrayDeque.java336 delete(i);
364 delete(i);
499 * <p>This method is called delete rather than remove to emphasize
504 private boolean delete(int i) { method in class:ArrayDeque
617 if (delete(lastRet)) { // if left-shifted, undo increment in next()
653 if (!delete(lastRet)) {
H A DTimer.java83 public void delete(int pos) { method in class:Timer.TimerImpl.TimerHeap
84 // posible to delete any position of the heap
148 delete(i);
227 tasks.delete(0);
252 tasks.delete(tasks.getTask(task));
260 tasks.delete(pos);
/libcore/luni/src/main/java/java/io/
H A DFile.java311 public boolean delete() { method in class:File
327 * <li>Use a {@code finally} clause to manually invoke {@link #delete}.
328 * <li>Maintain your own set of files to delete, and process it at an appropriate point
/libcore/luni/src/main/java/libcore/io/
H A DDiskLruCache.java53 * directory must be exclusive to the cache; the cache may delete or overwrite
217 cache.delete();
544 if (!file.delete()) {
545 throw new IOException("failed to delete " + file);
609 * Closes the cache and deletes all of its stored values. This will delete
613 public void delete() throws IOException { method in class:DiskLruCache

Completed in 79 milliseconds