Home
last modified time | relevance | path

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

12345678

/libcore/ojluni/src/main/java/java/nio/file/
DPath.java354 boolean startsWith(Path other); in startsWith()
372 boolean startsWith(String other); in startsWith()
399 boolean endsWith(Path other); in endsWith()
420 boolean endsWith(String other); in endsWith()
472 Path resolve(Path other); in resolve()
492 Path resolve(String other); in resolve()
513 Path resolveSibling(Path other); in resolveSibling()
530 Path resolveSibling(String other); in resolveSibling()
572 Path relativize(Path other); in relativize()
865 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()
DNoSuchFileException.java60 public NoSuchFileException(String file, String other, String reason) { in NoSuchFileException()
DAccessDeniedException.java65 public AccessDeniedException(String file, String other, String reason) { in AccessDeniedException()
/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.java83 private IOException translateToIOException(String file, String other) { in translateToIOException()
108 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()
DLongPredicate.java68 default LongPredicate and(LongPredicate other) { in and()
100 default LongPredicate or(LongPredicate other) { in or()
DDoublePredicate.java68 default DoublePredicate and(DoublePredicate other) { in and()
100 default DoublePredicate or(DoublePredicate 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()
DPredicate.java67 default Predicate<T> and(Predicate<? super T> other) { in and()
99 default Predicate<T> or(Predicate<? super T> other) { in or()
/libcore/luni/src/test/java/libcore/java/util/concurrent/
DCompletionStageTest.java139 public <U,V> CompletionStage<V> thenCombine(CompletionStage<? extends U> other, in thenCombine()
144 public <U,V> CompletionStage<V> thenCombineAsync(CompletionStage<? extends U> other, in thenCombineAsync()
149 public <U,V> CompletionStage<V> thenCombineAsync(CompletionStage<? extends U> other, in thenCombineAsync()
155 public <U> CompletionStage<Void> thenAcceptBoth(CompletionStage<? extends U> other, in thenAcceptBoth()
160 public <U> CompletionStage<Void> thenAcceptBothAsync(CompletionStage<? extends U> other, in thenAcceptBothAsync()
165 public <U> CompletionStage<Void> thenAcceptBothAsync(CompletionStage<? extends U> other, in thenAcceptBothAsync()
171 public CompletionStage<Void> runAfterBoth(CompletionStage<?> other, in runAfterBoth()
176 public CompletionStage<Void> runAfterBothAsync(CompletionStage<?> other, in runAfterBothAsync()
181 public CompletionStage<Void> runAfterBothAsync(CompletionStage<?> other, in runAfterBothAsync()
187 public <U> CompletionStage<U> applyToEither(CompletionStage<? extends T> other, in applyToEither()
[all …]
/libcore/ojluni/src/main/java/java/time/chrono/
DChronoLocalDateTime.java506 default int compareTo(ChronoLocalDateTime<?> other) { in compareTo()
531 default boolean isAfter(ChronoLocalDateTime<?> other) { in isAfter()
552 default boolean isBefore(ChronoLocalDateTime<?> other) { in isBefore()
573 default boolean isEqual(ChronoLocalDateTime<?> other) { in isEqual()
DChronoLocalDate.java706 default int compareTo(ChronoLocalDate other) { in compareTo()
728 default boolean isAfter(ChronoLocalDate other) { in isAfter()
746 default boolean isBefore(ChronoLocalDate other) { in isBefore()
764 default boolean isEqual(ChronoLocalDate other) { in isEqual()
DChronoZonedDateTime.java576 default int compareTo(ChronoZonedDateTime<?> other) { in compareTo()
606 default boolean isBefore(ChronoZonedDateTime<?> other) { in isBefore()
626 default boolean isAfter(ChronoZonedDateTime<?> other) { in isAfter()
646 default boolean isEqual(ChronoZonedDateTime<?> other) { in isEqual()
/libcore/support/src/test/java/tests/support/
DSupport_GetPutFields.java71 SimpleClass other = (SimpleClass) obj; in equals() local
93 Support_GetPutFields other = (Support_GetPutFields) obj; in equals() local
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
/libcore/ojluni/src/test/java/nio/file/Path/
DPathOps.java156 PathOps resolve(String other, String expected) { in resolve()
162 PathOps resolveSibling(String other, String expected) { in resolveSibling()
168 PathOps relativize(String other, String expected) { in relativize()
175 PathOps relativizeFail(String other) { in relativizeFail()
/libcore/ojluni/src/main/java/sun/security/x509/
DGeneralSubtrees.java160 GeneralSubtrees other = (GeneralSubtrees)obj; in equals() local
320 public GeneralSubtrees intersect(GeneralSubtrees other) { in intersect()
478 public void union(GeneralSubtrees other) { in union()
/libcore/ojluni/src/test/java/lang/invoke/VarHandles/
DVarHandleTestAccessModeMethodNames.java89 VarHandle.AccessMode other = VarHandle.AccessMode.valueFromMethodName(am.methodName()); in testValueFromMethodName() local

12345678