Searched defs:removeFirstOccurrence (Results 1 - 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DDeque.java166 * elements, {@link #removeFirstOccurrence removeFirstOccurrence} and
359 boolean removeFirstOccurrence(Object o); method in interface:Deque
525 * <p>This method is equivalent to {@link #removeFirstOccurrence(Object)}.
H A DArrayDeque.java56 * {@link #removeFirstOccurrence removeFirstOccurrence},
348 public boolean removeFirstOccurrence(Object o) { method in class:ArrayDeque
725 * <p>This method is equivalent to {@link #removeFirstOccurrence(Object)}.
731 return removeFirstOccurrence(o);
H A DLinkedList.java813 public boolean removeFirstOccurrence(Object o) { method in class:LinkedList
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DBlockingDeque.java415 boolean removeFirstOccurrence(Object o); method in interface:BlockingDeque
600 * {@link #removeFirstOccurrence(Object) removeFirstOccurrence}.
H A DConcurrentLinkedDeque.java1030 public boolean removeFirstOccurrence(Object o) { method in class:ConcurrentLinkedDeque
1132 * <p>This method is equivalent to {@link #removeFirstOccurrence(Object)}.
1139 return removeFirstOccurrence(o);
H A DLinkedBlockingDeque.java64 * {@link #removeFirstOccurrence removeFirstOccurrence}, {@link
586 public boolean removeFirstOccurrence(Object o) { method in class:LinkedBlockingDeque
791 * {@link #removeFirstOccurrence(Object) removeFirstOccurrence}.
797 return removeFirstOccurrence(o);

Completed in 63 milliseconds