OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hashCode
(Results
1451 - 1475
of
5552
) sorted by null
<<
51
52
53
54
55
56
57
58
59
60
>>
/frameworks/support/preference/src/androidTest/java/androidx/preference/tests/
SimplePreferenceComparisonCallbackTest.java
170
public int
hashCode
() {
/frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
Selection.java
233
public int
hashCode
() {
234
return mSelection.
hashCode
() ^ mProvisionalSelection.
hashCode
();
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
GenericEntityTest.java
106
public int
hashCode
() {
107
int result = id.
hashCode
();
108
result = 31 * result + (mField != null ? mField.
hashCode
() : 0);
138
public int
hashCode
() {
139
int result = super.
hashCode
();
140
result = 31 * result + (name != null ? name.
hashCode
() : 0);
RelationWithReservedKeywordTest.java
97
public int
hashCode
() {
99
result = 31 * result + (name != null ? name.
hashCode
() : 0);
174
public int
hashCode
() {
177
result = 31 * result + (to != null ? to.
hashCode
() : 0);
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
User.java
153
public int
hashCode
() {
155
result = 31 * result + (mName != null ? mName.
hashCode
() : 0);
156
result = 31 * result + (mLastName != null ? mLastName.
hashCode
() : 0);
160
result = 31 * result + (mBirthday != null ? mBirthday.
hashCode
() : 0);
161
result = 31 * result + (mCustomField != null ? mCustomField.
hashCode
() : 0);
162
result = 31 * result + (mWorkDays != null ? mWorkDays.
hashCode
() : 0);
/frameworks/support/work/workmanager/src/main/java/androidx/work/
Constraints.java
155
public int
hashCode
() {
156
int result = mRequiredNetworkType.
hashCode
();
161
result = 31 * result + (mContentUriTriggers != null ? mContentUriTriggers.
hashCode
() : 0);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
RefSortedMap.java
65
public int
hashCode
() {
66
return (getKey() == null ? 0 : getKey().
hashCode
())
67
^ (getValue() == null ? 0 : getValue().
hashCode
());
/libcore/luni/src/test/java/libcore/java/lang/
DoubleTest.java
147
assertEquals(Double.valueOf(567.0).
hashCode
(), Double.
hashCode
(567.0));
FloatTest.java
142
assertEquals(Float.valueOf(567.0f).
hashCode
(), Float.
hashCode
(567.0f));
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java
104
* Class under test for String
hashCode
()
113
assertTrue(one.
hashCode
() == two.
hashCode
());
114
assertTrue(one.
hashCode
() != three.
hashCode
());
115
assertTrue(two.
hashCode
() != three.
hashCode
());
118
four.
hashCode
();
/libcore/ojluni/src/main/java/java/lang/
Byte.java
393
public int
hashCode
() {
394
return Byte.
hashCode
(value);
399
* {@code Byte.
hashCode
()}.
405
public static int
hashCode
(byte value) {
Short.java
398
public int
hashCode
() {
399
return Short.
hashCode
(value);
404
* {@code Short.
hashCode
()}.
410
public static int
hashCode
(short value) {
/libcore/ojluni/src/main/java/java/lang/reflect/
Constructor.java
205
* Returns a
hashcode
for this {@code Constructor}. The
hashcode
is
206
* the same as the
hashcode
for the underlying constructor's
209
public int
hashCode
() {
210
return getDeclaringClass().getName().
hashCode
();
Method.java
257
* Returns a
hashcode
for this {@code Method}. The
hashcode
is computed
261
public int
hashCode
() {
262
return getDeclaringClass().getName().
hashCode
() ^ getName().
hashCode
();
Parameter.java
97
public int
hashCode
() {
98
return executable.
hashCode
() ^ index;
/libcore/ojluni/src/main/java/java/net/
InetSocketAddress.java
129
public final int
hashCode
() {
131
return addr.
hashCode
() + port;
133
return hostname.toLowerCase().
hashCode
() + port;
426
* Returns a
hashcode
for this socket address.
431
public final int
hashCode
() {
432
return holder.
hashCode
();
/libcore/ojluni/src/main/java/java/nio/file/attribute/
AclEntry.java
360
return h * 127 + o.
hashCode
();
367
* Object#
hashCode
} method.
370
public int
hashCode
() {
374
int h = type.
hashCode
();
/libcore/ojluni/src/main/java/java/security/
Identity.java
487
* Returns a
hashcode
for this identity.
489
* @return a
hashcode
for this identity.
491
public int
hashCode
() {
492
return name.
hashCode
();
PKCS12Attribute.java
205
* Returns the
hashcode
for this {@code PKCS12Attribute}.
211
public int
hashCode
() {
213
Arrays.
hashCode
(encoded);
/libcore/ojluni/src/main/java/java/text/
PatternEntry.java
78
public int
hashCode
() {
79
return chars.
hashCode
();
/libcore/ojluni/src/main/java/java/time/
Clock.java
432
* their state and to meet the contract of {@link Object#
hashCode
}.
433
* If not overridden, the behavior is defined by {@link Object#
hashCode
}
438
public int
hashCode
() {
439
return super.
hashCode
();
481
public int
hashCode
() {
482
return zone.
hashCode
() + 1;
532
public int
hashCode
() {
533
return instant.
hashCode
() ^ zone.
hashCode
();
582
public int
hashCode
() {
[
all
...]
/libcore/ojluni/src/main/java/java/time/chrono/
ChronoLocalDate.java
[
all
...]
ChronoLocalDateImpl.java
422
public int
hashCode
() {
424
return getChronology().
hashCode
() ^ ((int) (epDay ^ (epDay >>> 32)));
ChronoLocalDateTime.java
589
int
hashCode
();
Chronology.java
[
all
...]
Completed in 1357 milliseconds
<<
51
52
53
54
55
56
57
58
59
60
>>