Home
last modified time | relevance | path

Searched defs:action (Results 1 – 25 of 87) sorted by relevance

1234

/libcore/ojluni/src/main/java/java/util/
DSpliterator.java309 boolean tryAdvance(Consumer<? super T> action); in tryAdvance()
325 default void forEachRemaining(Consumer<? super T> action) { in forEachRemaining()
617 boolean tryAdvance(T_CONS action); in tryAdvance()
635 default void forEachRemaining(T_CONS action) { in forEachRemaining()
650 boolean tryAdvance(IntConsumer action); in tryAdvance()
653 default void forEachRemaining(IntConsumer action) { in forEachRemaining()
668 default boolean tryAdvance(Consumer<? super Integer> action) { in tryAdvance()
691 default void forEachRemaining(Consumer<? super Integer> action) { in forEachRemaining()
714 boolean tryAdvance(LongConsumer action); in tryAdvance()
717 default void forEachRemaining(LongConsumer action) { in forEachRemaining()
[all …]
DPrimitiveIterator.java80 void forEachRemaining(T_CONS action); in forEachRemaining()
112 default void forEachRemaining(IntConsumer action) { in forEachRemaining()
141 default void forEachRemaining(Consumer<? super Integer> action) { in forEachRemaining()
186 default void forEachRemaining(LongConsumer action) { in forEachRemaining()
215 default void forEachRemaining(Consumer<? super Long> action) { in forEachRemaining()
259 default void forEachRemaining(DoubleConsumer action) { in forEachRemaining()
289 default void forEachRemaining(Consumer<? super Double> action) { in forEachRemaining()
DIterator.java113 default void forEachRemaining(Consumer<? super E> action) { in forEachRemaining()
DSpliterators.java942 public void forEachRemaining(Consumer<? super T> action) { in forEachRemaining()
953 public boolean tryAdvance(Consumer<? super T> action) { in tryAdvance()
1026 public void forEachRemaining(IntConsumer action) { in forEachRemaining()
1037 public boolean tryAdvance(IntConsumer action) { in tryAdvance()
1109 public void forEachRemaining(LongConsumer action) { in forEachRemaining()
1120 public boolean tryAdvance(LongConsumer action) { in tryAdvance()
1192 public void forEachRemaining(DoubleConsumer action) { in forEachRemaining()
1203 public boolean tryAdvance(DoubleConsumer action) { in tryAdvance()
1794 public void forEachRemaining(Consumer<? super T> action) { in forEachRemaining()
1805 public boolean tryAdvance(Consumer<? super T> action) { in tryAdvance()
[all …]
/libcore/ojluni/src/main/java/java/security/
DAccessController.java42 public static <T> T doPrivileged(PrivilegedAction<T> action) { in doPrivileged()
49 public static <T> T doPrivilegedWithCombiner(PrivilegedAction<T> action) { in doPrivilegedWithCombiner()
57 public static <T> T doPrivileged(PrivilegedAction<T> action, in doPrivileged()
66 doPrivileged(PrivilegedExceptionAction<T> action) in doPrivileged()
82 (PrivilegedExceptionAction<T> action) throws PrivilegedActionException { in doPrivilegedWithCombiner()
91 doPrivileged(PrivilegedExceptionAction<T> action, in doPrivileged()
/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java219 public CompletionStage<Void> thenAccept(Consumer<? super T> action); in thenAccept()
234 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action); in thenAcceptAsync()
249 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action, in thenAcceptAsync()
262 public CompletionStage<Void> thenRun(Runnable action); in thenRun()
276 public CompletionStage<Void> thenRunAsync(Runnable action); in thenRunAsync()
290 public CompletionStage<Void> thenRunAsync(Runnable action, in thenRunAsync()
370 BiConsumer<? super T, ? super U> action); in thenAcceptBoth()
389 BiConsumer<? super T, ? super U> action); in thenAcceptBothAsync()
409 BiConsumer<? super T, ? super U> action, in thenAcceptBothAsync()
425 Runnable action); in runAfterBoth()
[all …]
/libcore/ojluni/annotations/mmodule/java/util/concurrent/
DCompletableFuture.annotated.java76 …ncurrent.CompletableFuture<java.lang.Void> thenAccept(java.util.function.Consumer<? super T> actio… in thenAccept()
78 …ent.CompletableFuture<java.lang.Void> thenAcceptAsync(java.util.function.Consumer<? super T> actio… in thenAcceptAsync()
80 …ent.CompletableFuture<java.lang.Void> thenAcceptAsync(java.util.function.Consumer<? super T> actio… in thenAcceptAsync()
82 public java.util.concurrent.CompletableFuture<java.lang.Void> thenRun(java.lang.Runnable action) { … in thenRun()
84 ….util.concurrent.CompletableFuture<java.lang.Void> thenRunAsync(java.lang.Runnable action) { throw… in thenRunAsync()
86 ….util.concurrent.CompletableFuture<java.lang.Void> thenRunAsync(java.lang.Runnable action, java.ut… in thenRunAsync()
94 …onStage<? extends U> other, java.util.function.BiConsumer<? super T,? super U> action) { throw new… in thenAcceptBoth()
96 …onStage<? extends U> other, java.util.function.BiConsumer<? super T,? super U> action) { throw new… in thenAcceptBothAsync()
98 …onStage<? extends U> other, java.util.function.BiConsumer<? super T,? super U> action, java.util.c… in thenAcceptBothAsync()
100 …id> runAfterBoth(java.util.concurrent.CompletionStage<?> other, java.lang.Runnable action) { throw… in runAfterBoth()
[all …]
/libcore/ojluni/src/main/java/java/util/stream/
DStreams.java401 public boolean tryAdvance(Consumer<? super T> action) { in tryAdvance()
415 public void forEachRemaining(Consumer<? super T> action) { in forEachRemaining()
492 public boolean tryAdvance(IntConsumer action) { in tryAdvance()
506 public void forEachRemaining(IntConsumer action) { in forEachRemaining()
583 public boolean tryAdvance(LongConsumer action) { in tryAdvance()
597 public void forEachRemaining(LongConsumer action) { in forEachRemaining()
674 public boolean tryAdvance(DoubleConsumer action) { in tryAdvance()
688 public void forEachRemaining(DoubleConsumer action) { in forEachRemaining()
793 public boolean tryAdvance(T_CONS action) { in tryAdvance()
808 public void forEachRemaining(T_CONS action) { in forEachRemaining()
DStreamSpliterators.java710 public boolean tryAdvance(Consumer<? super T> action) { in tryAdvance()
729 public void forEachRemaining(Consumer<? super T> action) { in forEachRemaining()
772 public boolean tryAdvance(T_CONS action) { in tryAdvance()
791 public void forEachRemaining(T_CONS action) { in forEachRemaining()
1009 public boolean tryAdvance(Consumer<? super T> action) { in tryAdvance()
1025 public void forEachRemaining(Consumer<? super T> action) { in forEachRemaining()
1079 public boolean tryAdvance(T_CONS action) { in tryAdvance()
1095 protected abstract void acceptConsumed(T_CONS action); in acceptConsumed()
1098 public void forEachRemaining(T_CONS action) { in forEachRemaining()
1149 protected void acceptConsumed(IntConsumer action) { in acceptConsumed()
[all …]
DForEachOps.java70 public static <T> TerminalOp<T, Void> makeRef(Consumer<? super T> action, in makeRef()
85 public static TerminalOp<Integer, Void> makeInt(IntConsumer action, in makeInt()
100 public static TerminalOp<Long, Void> makeLong(LongConsumer action, in makeLong()
115 public static TerminalOp<Double, Void> makeDouble(DoubleConsumer action, in makeDouble()
369 private final Sink<T> action; field in ForEachOps.ForEachOrderedTask
375 Sink<T> action) { in ForEachOrderedTask()
DDoubleStream.java224 DoubleStream peek(DoubleConsumer action); in peek()
298 void forEach(DoubleConsumer action); in forEach()
312 void forEachOrdered(DoubleConsumer action); in forEachOrdered()
DIntStream.java217 IntStream peek(IntConsumer action); in peek()
291 void forEach(IntConsumer action); in forEach()
305 void forEachOrdered(IntConsumer action); in forEachOrdered()
DLongStream.java222 LongStream peek(LongConsumer action); in peek()
296 void forEach(LongConsumer action); in forEach()
310 void forEachOrdered(LongConsumer action); in forEachOrdered()
DStream.java423 Stream<T> peek(Consumer<? super T> action); in peek()
498 void forEach(Consumer<? super T> action); in forEach()
517 void forEachOrdered(Consumer<? super T> action); in forEachOrdered()
/libcore/ojluni/src/main/java/java/nio/
DCharBufferSpliterator.java64 public void forEachRemaining(IntConsumer action) { in forEachRemaining()
77 public boolean tryAdvance(IntConsumer action) { in tryAdvance()
/libcore/ojluni/annotations/sdk/nullability/java/lang/
DIterable.annotated.java36 … default void forEach(@NonNull Consumer<? super T> action) { throw new RuntimeException("Stub!"); } in forEach()
/libcore/ojluni/src/main/java/java/lang/
DIterable.java72 default void forEach(Consumer<? super T> action) { in forEach()
/libcore/ojluni/annotations/sdk/nullability/java/util/
DIterator.annotated.java35 …onsumer<? super @libcore.util.NullFromTypeParam E> action) { throw new RuntimeException("Stub!"); } in forEachRemaining()
/libcore/ojluni/src/main/java/java/net/
DSocketPermission.java41 public SocketPermission(String host, String action) { super(""); } in SocketPermission()
/libcore/metrictests/memory/host/src/libcore/heapmetrics/
DMetricsRunner.java118 Result runAllInstrumentations(String action) in runAllInstrumentations()
154 String action, String relativeDirectoryName, String deviceDirectoryName, String apk) in runInstrumentation()
207 String deviceDirectoryName, String relativeDumpFilename, String action) in fetchHeapDump()
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DPrivilegedActionTest.java34 MyPrivilegedAction action = new MyPrivilegedAction(); in testRun() local
/libcore/ojluni/annotations/sdk/nullability/java/util/concurrent/
DConcurrentHashMap.annotated.java104 …util.function.BiConsumer<? super @libcore.util.NonNull K,? super @libcore.util.NonNull V> action) … in forEach()
130 …util.function.BiConsumer<? super @libcore.util.NonNull K,? super @libcore.util.NonNull V> action) … in forEach()
132 …e.util.Nullable U> transformer, @libcore.util.NonNull java.util.function.Consumer<? super @libcore… in forEach()
144 …hKey(long parallelismThreshold, @libcore.util.NonNull java.util.function.Consumer<? super @libcore… in forEachKey()
146 …e.util.Nullable U> transformer, @libcore.util.NonNull java.util.function.Consumer<? super @libcore… in forEachKey()
160 …alue(long parallelismThreshold, @libcore.util.NonNull java.util.function.Consumer<? super @libcore… in forEachValue()
162 …e.util.Nullable U> transformer, @libcore.util.NonNull java.util.function.Consumer<? super @libcore… in forEachValue()
176 …il.Map.@libcore.util.NonNull Entry<@libcore.util.NonNull K, @libcore.util.NonNull V>> action) { th… in forEachEntry()
178 …e.util.Nullable U> transformer, @libcore.util.NonNull java.util.function.Consumer<? super @libcore… in forEachEntry()
215 …function.Consumer<? super @libcore.util.NonNull K> action) { throw new RuntimeException("Stub!"); } in forEach()
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DSliceOpTest.java204 public boolean tryAdvance(Consumer<? super T> action) { in testSkipLimitOpsWithNonSplittingSpliterator()
209 public void forEachRemaining(Consumer<? super T> action) { in testSkipLimitOpsWithNonSplittingSpliterator()
/libcore/benchmarks/src/benchmarks/regression/
DDoPrivilegedBenchmark.java55 final PrivilegedAction<String> action = new ReusableAction("line.separator"); in timeReusedAction() local
/libcore/ojluni/annotations/hiddenapi/java/util/
DHashMap.java187 public void forEach(java.util.function.BiConsumer<? super K, ? super V> action) { in forEach()
330 public void forEach(java.util.function.Consumer<? super java.util.Map.Entry<K, V>> action) { in forEach()
350 java.util.function.Consumer<? super java.util.Map.Entry<K, V>> action) { in forEachRemaining()
355 java.util.function.Consumer<? super java.util.Map.Entry<K, V>> action) { in tryAdvance()
465 public void forEach(java.util.function.Consumer<? super K> action) { in forEach()
484 public void forEachRemaining(java.util.function.Consumer<? super K> action) { in forEachRemaining()
488 public boolean tryAdvance(java.util.function.Consumer<? super K> action) { in tryAdvance()
661 public void forEachRemaining(java.util.function.Consumer<? super V> action) { in forEachRemaining()
665 public boolean tryAdvance(java.util.function.Consumer<? super V> action) { in tryAdvance()
701 public void forEach(java.util.function.Consumer<? super V> action) { in forEach()

1234