Searched defs:other (Results 101 - 104 of 104) sorted by relevance

12345

/libcore/ojluni/src/main/java/java/time/
H A DOffsetDateTime.java44 * and/or other materials provided with the distribution.
164 * @param datetime2 the other date-time to compare to, not null
280 * Non test-code will typically use other methods to create an offset time.
467 * All other {@code ChronoField} instances will return false.
508 * All other {@code ChronoUnit} instances will return false.
533 * or for some other reason, an exception is thrown.
538 * All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}.
567 * or for some other reason, an exception is thrown.
574 * All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}.
608 * or for some other reaso
1796 compareTo(OffsetDateTime other) argument
1815 isAfter(OffsetDateTime other) argument
1832 isBefore(OffsetDateTime other) argument
1849 isEqual(OffsetDateTime other) argument
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DResourceBundle.java166 * as well as a generic <code>getObject</code> method for any other
603 public boolean equals(Object other) { argument
604 if (this == other) {
608 final CacheKey otherEntry = (CacheKey)other;
1180 * contained locales other than Locale(""), put the bundle on hold and
1867 * methods during the bundle loading process. In other words, a
2266 * or "TW" (Taiwan), "Hant" is supplied. For all other countries or when the country
2614 * if the instantiation of a class fails for some other
2752 * <code>loadTime</code> or some other criteria. The method returns
2836 // ignore other exception
[all...]
/libcore/ojluni/src/main/java/sun/security/x509/
H A DX500Name.java43 * This class contains other useful methods for checking name constraints
89 * <li>attribute values in types other than PrintableString are case
399 X500Name other = (X500Name)obj;
401 if ((this.canonicalDn != null) && (other.canonicalDn != null)) {
402 return this.canonicalDn.equals(other.canonicalDn);
406 if (n != other.names.length) {
411 RDN r2 = other.names[i];
418 String otherCanonical = other.getRFC2253CanonicalName();
1237 * OIDs from other sources which show up in X.500 names we
1303 * it is within the subtree of the other
1308 isWithinSubtree(X500Name other) argument
1350 commonAncestor(X500Name other) argument
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCompletableFuture.java63 * completes the current CompletableFuture, or by any other caller of
80 * other public methods, so the behavior of one method is not impacted
107 * null, but passing a null value for any other parameter will result
216 * volatile because they are only visible to other threads upon
2049 CompletionStage<? extends U> other,
2051 return biApplyStage(null, other, fn);
2055 CompletionStage<? extends U> other,
2057 return biApplyStage(defaultExecutor(), other, fn);
2061 CompletionStage<? extends U> other,
2063 return biApplyStage(screenExecutor(executor), other, f
2048 thenCombine( CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn) argument
2054 thenCombineAsync( CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn) argument
2060 thenCombineAsync( CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn, Executor executor) argument
2066 thenAcceptBoth( CompletionStage<? extends U> other, BiConsumer<? super T, ? super U> action) argument
2072 thenAcceptBothAsync( CompletionStage<? extends U> other, BiConsumer<? super T, ? super U> action) argument
2078 thenAcceptBothAsync( CompletionStage<? extends U> other, BiConsumer<? super T, ? super U> action, Executor executor) argument
2084 runAfterBoth(CompletionStage<?> other, Runnable action) argument
2089 runAfterBothAsync(CompletionStage<?> other, Runnable action) argument
2094 runAfterBothAsync(CompletionStage<?> other, Runnable action, Executor executor) argument
2100 applyToEither( CompletionStage<? extends T> other, Function<? super T, U> fn) argument
2105 applyToEitherAsync( CompletionStage<? extends T> other, Function<? super T, U> fn) argument
2110 applyToEitherAsync( CompletionStage<? extends T> other, Function<? super T, U> fn, Executor executor) argument
2116 acceptEither( CompletionStage<? extends T> other, Consumer<? super T> action) argument
2121 acceptEitherAsync( CompletionStage<? extends T> other, Consumer<? super T> action) argument
2126 acceptEitherAsync( CompletionStage<? extends T> other, Consumer<? super T> action, Executor executor) argument
2132 runAfterEither(CompletionStage<?> other, Runnable action) argument
2137 runAfterEitherAsync(CompletionStage<?> other, Runnable action) argument
2142 runAfterEitherAsync(CompletionStage<?> other, Runnable action, Executor executor) argument
[all...]

Completed in 163 milliseconds

12345