/libcore/ojluni/src/main/java/java/nio/file/ |
D | Path.java | 240 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 …]
|
D | FileSystemException.java | 43 private final String other; field in FileSystemException 72 public FileSystemException(String file, String other, String reason) { in FileSystemException()
|
D | NotLinkException.java | 60 public NotLinkException(String file, String other, String reason) { in NotLinkException()
|
D | FileAlreadyExistsException.java | 60 public FileAlreadyExistsException(String file, String other, String reason) { in FileAlreadyExistsException()
|
D | AccessDeniedException.java | 65 public AccessDeniedException(String file, String other, String reason) { in AccessDeniedException()
|
D | NoSuchFileException.java | 60 public NoSuchFileException(String file, String other, String reason) { in NoSuchFileException()
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | AbstractPath.java | 42 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()
|
D | UnixException.java | 77 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/ |
D | CompletionStage.java | 309 (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/ |
D | CompletableFuture.annotated.java | 88 …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/ |
D | IntPredicate.java | 68 default IntPredicate and(IntPredicate other) { in and() 100 default IntPredicate or(IntPredicate other) { in or()
|
D | DoublePredicate.java | 68 default DoublePredicate and(DoublePredicate other) { in and() 100 default DoublePredicate or(DoublePredicate other) { in or()
|
D | LongPredicate.java | 68 default LongPredicate and(LongPredicate other) { in and() 100 default LongPredicate or(LongPredicate other) { in or()
|
D | Predicate.java | 67 default Predicate<T> and(Predicate<? super T> other) { in and() 99 default Predicate<T> or(Predicate<? super T> other) { in or()
|
D | BiPredicate.java | 71 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/ |
D | OptionalInt.java | 147 public int orElse(int other) { in orElse() 161 public int orElseGet(IntSupplier other) { in orElseGet() 212 OptionalInt other = (OptionalInt) obj; in equals() local
|
D | OptionalDouble.java | 147 public double orElse(double other) { in orElse() 161 public double orElseGet(DoubleSupplier other) { in orElseGet() 212 OptionalDouble other = (OptionalDouble) obj; in equals() local
|
D | OptionalLong.java | 147 public long orElse(long other) { in orElse() 161 public long orElseGet(LongSupplier other) { in orElseGet() 212 OptionalLong other = (OptionalLong) obj; in equals() local
|
D | Optional.java | 248 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/ |
D | ChronoLocalDate.java | 703 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()
|
D | ChronoLocalDateTime.java | 499 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()
|
D | ChronoZonedDateTime.java | 569 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/ |
D | MonthDay.java | 673 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/ |
D | Support_GetPutFieldsDefaulted.java | 82 SimpleClass other = (SimpleClass) obj; in equals() local 104 Support_GetPutFieldsDefaulted other = (Support_GetPutFieldsDefaulted) obj; in equals() local
|
D | Support_GetPutFieldsDeprecated.java | 73 SimpleClass other = (SimpleClass) obj; in equals() local 95 Support_GetPutFields other = (Support_GetPutFields) obj; in equals() local
|