Home
last modified time | relevance | path

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

123

/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 …]
DLinkedHashMap.java587 public final void forEach(Consumer<? super K> action) { in forEach()
637 public final void forEach(Consumer<? super V> action) { in forEach()
701 public final void forEach(Consumer<? super Map.Entry<K,V>> action) { in forEach()
715 public void forEach(BiConsumer<? super K, ? super V> action) { in forEach()
DWeakHashMap.java1016 public void forEach(BiConsumer<? super K, ? super V> action) { in forEach()
1112 public void forEachRemaining(Consumer<? super K> action) { in forEachRemaining()
1146 public boolean tryAdvance(Consumer<? super K> action) { in tryAdvance()
1192 public void forEachRemaining(Consumer<? super V> action) { in forEachRemaining()
1224 public boolean tryAdvance(Consumer<? super V> action) { in tryAdvance()
1270 public void forEachRemaining(Consumer<? super Map.Entry<K, V>> action) { in forEachRemaining()
1306 public boolean tryAdvance(Consumer<? super Map.Entry<K,V>> action) { in tryAdvance()
/libcore/ojluni/src/main/java/java/security/
DAccessController.java40 public static <T> T doPrivileged(PrivilegedAction<T> action) { in doPrivileged()
47 public static <T> T doPrivilegedWithCombiner(PrivilegedAction<T> action) { in doPrivilegedWithCombiner()
55 public static <T> T doPrivileged(PrivilegedAction<T> action, in doPrivileged()
64 doPrivileged(PrivilegedExceptionAction<T> action) in doPrivileged()
80 (PrivilegedExceptionAction<T> action) throws PrivilegedActionException { in doPrivilegedWithCombiner()
89 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 …]
DCompletableFuture.java2022 public CompletableFuture<Void> thenAccept(Consumer<? super T> action) { in thenAccept()
2026 public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action) { in thenAcceptAsync()
2030 public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action, in thenAcceptAsync()
2035 public CompletableFuture<Void> thenRun(Runnable action) { in thenRun()
2039 public CompletableFuture<Void> thenRunAsync(Runnable action) { in thenRunAsync()
2043 public CompletableFuture<Void> thenRunAsync(Runnable action, in thenRunAsync()
2068 BiConsumer<? super T, ? super U> action) { in thenAcceptBoth()
2074 BiConsumer<? super T, ? super U> action) { in thenAcceptBothAsync()
2080 BiConsumer<? super T, ? super U> action, Executor executor) { in thenAcceptBothAsync()
2085 Runnable action) { in runAfterBoth()
[all …]
DConcurrentHashMap.java1607 public void forEach(BiConsumer<? super K, ? super V> action) { in forEach()
3584 public void forEachRemaining(Consumer<? super K> action) { in forEachRemaining()
3590 public boolean tryAdvance(Consumer<? super K> action) { in tryAdvance()
3623 public void forEachRemaining(Consumer<? super V> action) { in forEachRemaining()
3629 public boolean tryAdvance(Consumer<? super V> action) { in tryAdvance()
3663 public void forEachRemaining(Consumer<? super Map.Entry<K,V>> action) { in forEachRemaining()
3669 public boolean tryAdvance(Consumer<? super Map.Entry<K,V>> action) { in tryAdvance()
3713 BiConsumer<? super K,? super V> action) { in forEach()
3735 Consumer<? super U> action) { in forEach()
3880 Consumer<? super K> action) { in forEachKey()
[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.java222 DoubleStream peek(DoubleConsumer action); in peek()
296 void forEach(DoubleConsumer action); in forEach()
310 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.java221 LongStream peek(LongConsumer action); in peek()
295 void forEach(LongConsumer action); in forEach()
309 void forEachOrdered(LongConsumer action); in forEachOrdered()
DStream.java420 Stream<T> peek(Consumer<? super T> action); in peek()
495 void forEach(Consumer<? super T> action); in forEach()
514 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/src/main/java/java/lang/
DIterable.java72 default void forEach(Consumer<? super T> action) { in forEach()
/libcore/ojluni/src/main/java/java/net/
DSocketPermission.java39 public SocketPermission(String host, String action) { super(""); } in SocketPermission()
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DPrivilegedActionTest.java34 MyPrivilegedAction action = new MyPrivilegedAction(); in testRun() local
/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/tzdata/update_test_app/src/libcore/tzdata/update_test_app/installupdatetestapp/
DMainActivity.java82 final String action = actionEditText.getText().toString(); in onClick() local
134 File contentFile, String action, String version, String required) { in sendIntent()
/libcore/benchmarks/src/benchmarks/regression/
DDoPrivilegedBenchmark.java55 final PrivilegedAction<String> action = new ReusableAction("line.separator"); in timeReusedAction() local
/libcore/luni/src/main/java/org/w3c/dom/ls/
DLSParser.java456 short action) in parseWithContext()

123