Searched defs:isEqual (Results 1 - 12 of 12) sorted by relevance

/libcore/luni/src/test/java/tests/security/spec/
H A DEncodedKeySpec2Test.java53 isEqual(key, keys.getPublic()));
60 isEqual(key, keys.getPrivate()));
63 private boolean isEqual(Key key1, Key key2) { method in class:EncodedKeySpec2Test
/libcore/ojluni/src/main/java/java/util/function/
H A DPredicate.java114 static <T> Predicate<T> isEqual(Object targetRef) { method in interface:Predicate
/libcore/luni/src/test/java/tests/support/
H A DSupport_SQL.java91 public static boolean isEqual(byte[] b1, int off1, byte[] b2, int off2, method in class:Support_SQL
/libcore/ojluni/src/main/java/java/security/
H A DMessageDigest.java484 public static boolean isEqual(byte[] digesta, byte[] digestb) { method in class:MessageDigest
/libcore/ojluni/src/main/java/java/time/chrono/
H A DChronoLocalDateTime.java136 * @see #isEqual
566 default boolean isEqual(ChronoLocalDateTime<?> other) { method in interface:ChronoLocalDateTime
H A DChronoLocalDate.java256 * @see #isEqual
761 default boolean isEqual(ChronoLocalDate other) { method in interface:ChronoLocalDate
H A DChronoZonedDateTime.java137 * @see #isEqual
639 default boolean isEqual(ChronoZonedDateTime<?> other) { method in interface:ChronoZonedDateTime
/libcore/ojluni/src/main/java/java/time/
H A DLocalDate.java1943 * a.isEqual(b) == false
1944 * a.isEqual(a) == true
1945 * b.isEqual(a) == false
1957 public boolean isEqual(ChronoLocalDate other) { method in class:LocalDate
1961 return ChronoLocalDate.super.isEqual(other);
H A DOffsetTime.java1311 public boolean isEqual(OffsetTime other) { method in class:OffsetTime
1320 * To compare for the same instant on the time-line, use {@link #isEqual(OffsetTime)}.
H A DLocalDateTime.java1894 * a.isEqual(b) == false
1895 * a.isEqual(a) == true
1896 * b.isEqual(a) == false
1908 public boolean isEqual(ChronoLocalDateTime<?> other) { method in class:LocalDateTime
1912 return ChronoLocalDateTime.super.isEqual(other);
H A DOffsetDateTime.java153 * @see #isEqual
1849 public boolean isEqual(OffsetDateTime other) { method in class:OffsetDateTime
1859 * To compare for the same instant on the time-line, use {@link #isEqual}.
/libcore/ojluni/src/main/java/java/time/format/
H A DDateTimeFormatterBuilder.java4055 if (isEqual(c.c0, subKey.charAt(0))) {
4102 if (isEqual(c.c0, text.charAt(off))) {
4134 if (isEqual(c.c0, text.charAt(off))) {
4157 protected boolean isEqual(char c1, char c2) { method in class:DateTimeFormatterBuilder.PrefixTree
4171 if (!isEqual(key.charAt(off0++), text.charAt(off++))) {
4181 if (!isEqual(k.charAt(off), key.charAt(off))) {
4204 protected boolean isEqual(char c1, char c2) { method in class:DateTimeFormatterBuilder.PrefixTree.CI
4216 if (!isEqual(key.charAt(off0++), text.charAt(off++))) {
4272 if (!isEqual(key.charAt(koff++), text.charAt(off++))) {
4287 if (isEqual(
[all...]

Completed in 244 milliseconds