Home
last modified time | relevance | path

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

12345

/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()
623 boolean tryAdvance(T_CONS action); in tryAdvance()
641 default void forEachRemaining(T_CONS action) { in forEachRemaining()
656 boolean tryAdvance(IntConsumer action); in tryAdvance()
659 default void forEachRemaining(IntConsumer action) { in forEachRemaining()
674 default boolean tryAdvance(Consumer<? super Integer> action) { in tryAdvance()
697 default void forEachRemaining(Consumer<? super Integer> action) { in forEachRemaining()
720 boolean tryAdvance(LongConsumer action); in tryAdvance()
723 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.java130 default void forEachRemaining(Consumer<? super E> action) { in forEachRemaining()
DOptionalLong.java158 public void ifPresent(LongConsumer action) { in ifPresent()
176 public void ifPresentOrElse(LongConsumer action, Runnable emptyAction) { in ifPresentOrElse()
DOptionalDouble.java157 public void ifPresent(DoubleConsumer action) { in ifPresent()
175 public void ifPresentOrElse(DoubleConsumer action, Runnable emptyAction) { in ifPresentOrElse()
DOptionalInt.java158 public void ifPresent(IntConsumer action) { in ifPresent()
176 public void ifPresentOrElse(IntConsumer action, Runnable emptyAction) { in ifPresentOrElse()
/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/nio/channels/
DSelector.java482 public int select(Consumer<SelectionKey> action, long timeout) in select()
519 public int select(Consumer<SelectionKey> action) throws IOException { in select()
552 public int selectNow(Consumer<SelectionKey> action) throws IOException { in selectNow()
559 private int doSelect(Consumer<SelectionKey> action, long timeout) in doSelect()
/libcore/luni/src/test/java/libcore/java/util/
DSpliteratorTest.java46 public boolean tryAdvance(IntConsumer action) { in tryAdvance()
66 public boolean tryAdvance(Consumer<? super Integer> action) { in tryAdvance()
86 IntConsumer action = (i) -> sum.addAndGet(i); in testOfPrimitiveForEachRemaining() local
/libcore/luni/src/test/java/libcore/java/net/
DSocketPermissionTest.java33 String action = "Connect"; in testGetAction() local
42 String action = "Connect"; in testImplies() local
/libcore/ojluni/src/test/java/util/concurrent/tck/
DCountedCompleter8Test.java59 public static <E> void forEach1(E[] array, Consumer<E> action) { in forEach1()
83 public static <E> void forEach2(E[] array, Consumer<E> action) { in forEach2()
107 public static <E> void forEach3(E[] array, Consumer<E> action) { in forEach3()
129 public static <E> void forEach4(E[] array, Consumer<E> action) { in forEach4()
149 BiConsumer<Integer[], Consumer<Integer>> action) { in testRecursiveDecomposition()
/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()
/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/
DStringUTF16.java232 public boolean tryAdvance(Consumer<? super String> action) { in tryAdvance()
244 public void forEachRemaining(Consumer<? super String> action) { in forEachRemaining()
346 public void forEachRemaining(IntConsumer action) { in forEachRemaining()
369 public boolean tryAdvance(IntConsumer action) { in tryAdvance()
443 public void forEachRemaining(IntConsumer action) { in forEachRemaining()
466 public boolean tryAdvance(IntConsumer action) { in tryAdvance()
482 private static int advance(String a, int i, int hi, IntConsumer action) { in advance()
DIterable.java72 default void forEach(Consumer<? super T> action) { in forEach()
/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/annotations/sdk/nullability/java/util/
DIterator.annotated.java35 …onsumer<? super @libcore.util.NullFromTypeParam E> action) { throw new RuntimeException("Stub!"); } in forEachRemaining()
/libcore/luni/src/test/java/libcore/java/security/
DAllPermissionTest.java32 String action = "test action"; in testGetAction() local
/libcore/ojluni/src/main/java/java/net/
DSocketPermission.java41 public SocketPermission(String host, String action) { super(""); } in SocketPermission()
/libcore/ojluni/src/main/java/jdk/internal/ref/
DCleanerImpl.java167 private final Runnable action; field in CleanerImpl.PhantomCleanableRef
175 public PhantomCleanableRef(Object obj, Cleaner cleaner, Runnable action) { in PhantomCleanableRef()
/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()

12345