Home
last modified time | relevance | path

Searched defs:other (Results 1 – 25 of 187) sorted by relevance

12345678

/libcore/ojluni/src/main/java/java/nio/file/
DPath.java240 boolean startsWith(Path other); in startsWith()
258 boolean startsWith(String other); in startsWith()
285 boolean endsWith(Path other); in endsWith()
306 boolean endsWith(String other); in endsWith()
358 Path resolve(Path other); in resolve()
378 Path resolve(String other); in resolve()
399 Path resolveSibling(Path other); in resolveSibling()
416 Path resolveSibling(String other); in resolveSibling()
458 Path relativize(Path other); in relativize()
751 int compareTo(Path other); in compareTo()
[all …]
DFileSystemException.java43 private final String other; field in FileSystemException
72 public FileSystemException(String file, String other, String reason) { in FileSystemException()
DNotLinkException.java60 public NotLinkException(String file, String other, String reason) { in NotLinkException()
DFileAlreadyExistsException.java60 public FileAlreadyExistsException(String file, String other, String reason) { in FileAlreadyExistsException()
DAccessDeniedException.java65 public AccessDeniedException(String file, String other, String reason) { in AccessDeniedException()
DNoSuchFileException.java60 public NoSuchFileException(String file, String other, String reason) { in NoSuchFileException()
/libcore/ojluni/src/main/java/sun/nio/fs/
DAbstractPath.java42 public final boolean startsWith(String other) { in startsWith()
47 public final boolean endsWith(String other) { in endsWith()
52 public final Path resolve(String other) { in resolve()
57 public final Path resolveSibling(Path other) { in resolveSibling()
65 public final Path resolveSibling(String other) { in resolveSibling()
DUnixException.java77 private IOException translateToIOException(String file, String other) { in translateToIOException()
99 void rethrowAsIOException(UnixPath file, UnixPath other) throws IOException { in rethrowAsIOException()
/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java309 (CompletionStage<? extends U> other, in thenCombine()
329 (CompletionStage<? extends U> other, in thenCombineAsync()
350 (CompletionStage<? extends U> other, in thenCombineAsync()
369 (CompletionStage<? extends U> other, in thenAcceptBoth()
388 (CompletionStage<? extends U> other, in thenAcceptBothAsync()
408 (CompletionStage<? extends U> other, in thenAcceptBothAsync()
424 public CompletionStage<Void> runAfterBoth(CompletionStage<?> other, in runAfterBoth()
439 public CompletionStage<Void> runAfterBothAsync(CompletionStage<?> other, in runAfterBothAsync()
456 public CompletionStage<Void> runAfterBothAsync(CompletionStage<?> other, in runAfterBothAsync()
474 (CompletionStage<? extends T> other, in applyToEither()
[all …]
/libcore/ojluni/annotations/mmodule/java/util/concurrent/
DCompletableFuture.annotated.java88 …util.concurrent.CompletableFuture<V> thenCombine(java.util.concurrent.CompletionStage<? extends U>… in thenCombine()
90 …concurrent.CompletableFuture<V> thenCombineAsync(java.util.concurrent.CompletionStage<? extends U>… in thenCombineAsync()
92 …concurrent.CompletableFuture<V> thenCombineAsync(java.util.concurrent.CompletionStage<? extends U>… in thenCombineAsync()
94 …CompletableFuture<java.lang.Void> thenAcceptBoth(java.util.concurrent.CompletionStage<? extends U>… in thenAcceptBoth()
96 …etableFuture<java.lang.Void> thenAcceptBothAsync(java.util.concurrent.CompletionStage<? extends U>… in thenAcceptBothAsync()
98 …etableFuture<java.lang.Void> thenAcceptBothAsync(java.util.concurrent.CompletionStage<? extends U>… in thenAcceptBothAsync()
100 …urrent.CompletableFuture<java.lang.Void> runAfterBoth(java.util.concurrent.CompletionStage<?> othe… in runAfterBoth()
102 …t.CompletableFuture<java.lang.Void> runAfterBothAsync(java.util.concurrent.CompletionStage<?> othe… in runAfterBothAsync()
104 …t.CompletableFuture<java.lang.Void> runAfterBothAsync(java.util.concurrent.CompletionStage<?> othe… in runAfterBothAsync()
106 …il.concurrent.CompletableFuture<U> applyToEither(java.util.concurrent.CompletionStage<? extends T>… in applyToEither()
[all …]
/libcore/ojluni/src/main/java/java/util/function/
DIntPredicate.java68 default IntPredicate and(IntPredicate other) { in and()
100 default IntPredicate or(IntPredicate other) { in or()
DDoublePredicate.java68 default DoublePredicate and(DoublePredicate other) { in and()
100 default DoublePredicate or(DoublePredicate other) { in or()
DLongPredicate.java68 default LongPredicate and(LongPredicate other) { in and()
100 default LongPredicate or(LongPredicate other) { in or()
DPredicate.java67 default Predicate<T> and(Predicate<? super T> other) { in and()
99 default Predicate<T> or(Predicate<? super T> other) { in or()
DBiPredicate.java71 default BiPredicate<T, U> and(BiPredicate<? super T, ? super U> other) { in and()
103 default BiPredicate<T, U> or(BiPredicate<? super T, ? super U> other) { in or()
/libcore/ojluni/src/main/java/java/util/
DOptionalInt.java147 public int orElse(int other) { in orElse()
161 public int orElseGet(IntSupplier other) { in orElseGet()
212 OptionalInt other = (OptionalInt) obj; in equals() local
DOptionalDouble.java147 public double orElse(double other) { in orElse()
161 public double orElseGet(DoubleSupplier other) { in orElseGet()
212 OptionalDouble other = (OptionalDouble) obj; in equals() local
DOptionalLong.java147 public long orElse(long other) { in orElse()
161 public long orElseGet(LongSupplier other) { in orElseGet()
212 OptionalLong other = (OptionalLong) obj; in equals() local
DOptional.java248 public T orElse(T other) { in orElse()
262 public T orElseGet(Supplier<? extends T> other) { in orElseGet()
313 Optional<?> other = (Optional<?>) obj; in equals() local
/libcore/ojluni/src/main/java/java/time/chrono/
DChronoLocalDate.java703 default int compareTo(ChronoLocalDate other) { in compareTo()
725 default boolean isAfter(ChronoLocalDate other) { in isAfter()
743 default boolean isBefore(ChronoLocalDate other) { in isBefore()
761 default boolean isEqual(ChronoLocalDate other) { in isEqual()
DChronoLocalDateTime.java499 default int compareTo(ChronoLocalDateTime<?> other) { in compareTo()
524 default boolean isAfter(ChronoLocalDateTime<?> other) { in isAfter()
545 default boolean isBefore(ChronoLocalDateTime<?> other) { in isBefore()
566 default boolean isEqual(ChronoLocalDateTime<?> other) { in isEqual()
DChronoZonedDateTime.java569 default int compareTo(ChronoZonedDateTime<?> other) { in compareTo()
599 default boolean isBefore(ChronoZonedDateTime<?> other) { in isBefore()
619 default boolean isAfter(ChronoZonedDateTime<?> other) { in isAfter()
639 default boolean isEqual(ChronoZonedDateTime<?> other) { in isEqual()
/libcore/ojluni/src/main/java/java/time/
DMonthDay.java673 public int compareTo(MonthDay other) { in compareTo()
687 public boolean isAfter(MonthDay other) { in isAfter()
697 public boolean isBefore(MonthDay other) { in isBefore()
716 MonthDay other = (MonthDay) obj; in equals() local
/libcore/support/src/test/java/tests/support/
DSupport_GetPutFieldsDefaulted.java82 SimpleClass other = (SimpleClass) obj; in equals() local
104 Support_GetPutFieldsDefaulted other = (Support_GetPutFieldsDefaulted) obj; in equals() local
DSupport_GetPutFieldsDeprecated.java73 SimpleClass other = (SimpleClass) obj; in equals() local
95 Support_GetPutFields other = (Support_GetPutFields) obj; in equals() local

12345678