Home
last modified time | relevance | path

Searched defs:forEach (Results 1 – 25 of 36) sorted by relevance

12

/libcore/ojluni/annotations/sdk/nullability/java/lang/
DIterable.annotated.java36 …public default void forEach(@NonNull Consumer<? super T> action) { throw new RuntimeException("Stu… in forEach() method
/libcore/ojluni/src/main/java/java/lang/
DIterable.java72 default void forEach(Consumer<? super T> action) { in forEach() method
/libcore/ojluni/src/main/java/java/util/stream/
DNode.java81 void forEach(Consumer<? super T> consumer); in forEach() method
247 void forEach(T_CONS action); in forEach() method
326 default void forEach(Consumer<? super Integer> consumer) { in forEach() method
399 default void forEach(Consumer<? super Long> consumer) { in forEach() method
472 default void forEach(Consumer<? super Double> consumer) { in forEach() method
DSpinedBuffer.java246 public void forEach(Consumer<? super E> consumer) { in forEach() method in SpinedBuffer
472 public abstract void forEach(Consumer<? super E> consumer); in forEach() method in SpinedBuffer.OfPrimitive
591 public void forEach(T_CONS consumer) { in forEach() method in SpinedBuffer.OfPrimitive
740 public void forEach(Consumer<? super Integer> consumer) { in forEach() method in SpinedBuffer.OfInt
857 public void forEach(Consumer<? super Long> consumer) { in forEach() method in SpinedBuffer.OfLong
976 public void forEach(Consumer<? super Double> consumer) { in forEach() method in SpinedBuffer.OfDouble
DNodes.java572 public void forEach(T_CONS consumer) { } in forEach() method in Nodes.EmptyNode
682 public void forEach(Consumer<? super T> consumer) { in forEach() method in Nodes.ArrayNode
730 public void forEach(Consumer<? super T> consumer) { in forEach() method in Nodes.CollectionNode
811 public void forEach(Consumer<? super T> consumer) { in forEach() method in Nodes.ConcNode
851 public void forEach(T_CONS consumer) { in forEach() method in Nodes.ConcNode.OfPrimitive
DDoubleStream.java298 void forEach(DoubleConsumer action); in forEach() method
DStreamSpliterators.java1464 public void forEach(Consumer<? super T> action, long fence) { in forEach() method in StreamSpliterators.AbstractWrappingSpliterator.ArrayBuffer.OfRef
1481 abstract void forEach(T_CONS action, long fence); in forEach() method in StreamSpliterators.AbstractWrappingSpliterator.ArrayBuffer.OfPrimitive
1498 public void forEach(IntConsumer action, long fence) { in forEach() method in StreamSpliterators.AbstractWrappingSpliterator.ArrayBuffer.OfInt
1519 public void forEach(LongConsumer action, long fence) { in forEach() method in StreamSpliterators.AbstractWrappingSpliterator.ArrayBuffer.OfLong
1540 void forEach(DoubleConsumer action, long fence) { in forEach() method in StreamSpliterators.AbstractWrappingSpliterator.ArrayBuffer.OfDouble
DIntStream.java291 void forEach(IntConsumer action); in forEach() method
DLongStream.java296 void forEach(LongConsumer action); in forEach() method
/libcore/ojluni/annotations/hiddenapi/java/util/
DLinkedHashMap.java139 public void forEach(java.util.function.BiConsumer<? super K, ? super V> action) { in forEach() method in LinkedHashMap
201 public void forEach(java.util.function.Consumer<? super java.util.Map.Entry<K, V>> action) { in forEach() method in LinkedHashMap.LinkedEntrySet
285 public void forEach(java.util.function.Consumer<? super K> action) { in forEach() method in LinkedHashMap.LinkedKeySet
326 public void forEach(java.util.function.Consumer<? super V> action) { in forEach() method in LinkedHashMap.LinkedValues
DHashMap.java187 public void forEach(java.util.function.BiConsumer<? super K, ? super V> action) { in forEach() method in HashMap
330 public void forEach(java.util.function.Consumer<? super java.util.Map.Entry<K, V>> action) { in forEach() method in HashMap.EntrySet
465 public void forEach(java.util.function.Consumer<? super K> action) { in forEach() method in HashMap.KeySet
701 public void forEach(java.util.function.Consumer<? super V> action) { in forEach() method in HashMap.Values
DVector.java254 public synchronized void forEach(java.util.function.Consumer<? super E> action) { in forEach() method in Vector
DArrayList.java195 public void forEach(java.util.function.Consumer<? super E> action) { in forEach() method in ArrayList
/libcore/ojluni/src/main/java/java/util/
DLinkedHashMap.java590 public final void forEach(Consumer<? super K> action) { in forEach() method in LinkedHashMap.LinkedKeySet
640 public final void forEach(Consumer<? super V> action) { in forEach() method in LinkedHashMap.LinkedValues
704 public final void forEach(Consumer<? super Map.Entry<K,V>> action) { in forEach() method in LinkedHashMap.LinkedEntrySet
718 public void forEach(BiConsumer<? super K, ? super V> action) { in forEach() method in LinkedHashMap
/libcore/ojluni/annotations/mmodule/java/util/
DLinkedHashMap.annotated.java63 public void forEach(java.util.function.BiConsumer<? super K,? super V> action) { throw new RuntimeE… in forEach() method in LinkedHashMap
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/
DCopyOnWriteArraySet.java116 public void forEach(java.util.function.Consumer<? super E> action) { in forEach() method in CopyOnWriteArraySet
DCopyOnWriteArrayList.java191 public void forEach(java.util.function.Consumer<? super E> action) { in forEach() method in CopyOnWriteArrayList
387 public void forEach(java.util.function.Consumer<? super E> action) { in forEach() method in CopyOnWriteArrayList.COWSubList
/libcore/ojluni/annotations/sdk/nullability/java/util/
DWeakHashMap.annotated.java67 public void forEach(@libcore.util.NonNull java.util.function.BiConsumer<? super @libcore.util.NullF… in forEach() method in WeakHashMap
DArrayList.annotated.java93 public void forEach(@libcore.util.NonNull java.util.function.Consumer<? super @libcore.util.NullFro… in forEach() method in ArrayList
DHashMap.annotated.java83 public void forEach(@libcore.util.NonNull java.util.function.BiConsumer<? super @libcore.util.NullF… in forEach() method in HashMap
DTreeMap.annotated.java118 public void forEach(@libcore.util.NonNull java.util.function.BiConsumer<? super @libcore.util.NullF… in forEach() method in TreeMap
DVector.annotated.java131 public synchronized void forEach(@libcore.util.NonNull java.util.function.Consumer<? super @libcore… in forEach() method in Vector
/libcore/ojluni/src/main/java/java/util/concurrent/
DCopyOnWriteArraySet.java419 public void forEach(Consumer<? super E> action) { in forEach() method in CopyOnWriteArraySet
DCopyOnWriteArrayList.java828 public void forEach(Consumer<? super E> action) { in forEach() method in CopyOnWriteArrayList
1304 public void forEach(Consumer<? super E> action) { in forEach() method in CopyOnWriteArrayList.COWSubList
/libcore/ojluni/annotations/mmodule/java/security/
DProvider.annotated.java87 public synchronized void forEach(java.util.function.BiConsumer<? super java.lang.Object,? super jav… in forEach() method in Provider

12