OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hashCode
(Results
401 - 425
of
5552
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/frameworks/opt/telephony/src/java/com/android/internal/telephony/util/
TimeStampedValue.java
60
public int
hashCode
() {
61
int result = mValue != null ? mValue.
hashCode
() : 0;
/frameworks/support/compat/src/main/java/androidx/core/graphics/
PathSegment.java
82
public int
hashCode
() {
83
int result = mStart.
hashCode
();
85
result = 31 * result + mEnd.
hashCode
();
/frameworks/support/compat/src/main/java/androidx/core/os/
LocaleListInterface.java
53
int
hashCode
();
/frameworks/support/compat/src/main/java/androidx/core/util/
Pair.java
62
* @return a
hashcode
of the Pair
65
public int
hashCode
() {
66
return (first == null ? 0 : first.
hashCode
()) ^ (second == null ? 0 : second.
hashCode
());
/frameworks/support/compat/src/main/java/androidx/core/view/
DisplayCutoutCompat.java
120
public int
hashCode
() {
121
return mDisplayCutout == null ? 0 : mDisplayCutout.
hashCode
();
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
Coordinates.java
35
public int
hashCode
() {
NameAndLastName.java
50
public int
hashCode
() {
51
int result = mName != null ? mName.
hashCode
() : 0;
52
result = 31 * result + (mLastName != null ? mLastName.
hashCode
() : 0);
PetCouple.java
56
public int
hashCode
() {
57
int result = male != null ? male.
hashCode
() : 0;
58
result = 31 * result + (mFemale != null ? mFemale.
hashCode
() : 0);
PetWithToyIds.java
55
public int
hashCode
() {
56
int result = pet != null ? pet.
hashCode
() : 0;
57
result = 31 * result + (toyIds != null ? toyIds.
hashCode
() : 0);
PetsToys.java
51
public int
hashCode
() {
53
result = 31 * result + (toys != null ? toys.
hashCode
() : 0);
UserAndPetAdoptionDates.java
58
public int
hashCode
() {
59
int result = user != null ? user.
hashCode
() : 0;
60
result = 31 * result + (petAdoptionDates != null ? petAdoptionDates.
hashCode
() : 0);
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/model/
MutableMediaMetadata.java
51
public int
hashCode
() {
52
return trackId.
hashCode
();
/frameworks/support/slices/core/src/main/java/androidx/slice/
SliceSpec.java
90
public int
hashCode
() {
91
return mType.
hashCode
() + mRevision;
/frameworks/support/work/workmanager/src/main/java/androidx/work/
ContentUriTriggers.java
67
public int
hashCode
() {
68
return mTriggers.
hashCode
();
110
public int
hashCode
() {
111
int result = mUri.
hashCode
();
WorkStatus.java
83
public int
hashCode
() {
84
int result = mId != null ? mId.
hashCode
() : 0;
85
result = 31 * result + (mState != null ? mState.
hashCode
() : 0);
86
result = 31 * result + (mOutputData != null ? mOutputData.
hashCode
() : 0);
87
result = 31 * result + (mTags != null ? mTags.
hashCode
() : 0);
/libcore/luni/src/main/java/android/system/
UnixSocketAddress.java
109
public int
hashCode
() {
110
return Arrays.
hashCode
(sun_path);
/libcore/luni/src/main/java/libcore/reflect/
WildcardTypeImpl.java
54
public int
hashCode
() {
55
return 31 * Arrays.
hashCode
(getLowerBounds()) +
56
Arrays.
hashCode
(getUpperBounds());
/libcore/ojluni/src/main/java/java/net/
InterfaceAddress.java
121
* @see java.net.InterfaceAddress#
hashCode
()
138
* Returns a
hashcode
for this Interface address.
142
public int
hashCode
() {
143
return address.
hashCode
() + ((broadcast != null) ? broadcast.
hashCode
() : 0) + maskLength;
Proxy.java
162
* Returns a
hashcode
for this Proxy.
166
public final int
hashCode
() {
168
return type().
hashCode
();
169
return type().
hashCode
() + address().
hashCode
();
/libcore/ojluni/src/main/java/java/security/cert/
X509CRLEntry.java
101
* Returns a
hashcode
value for this CRL entry from its
104
* @return the
hashcode
value.
106
public int
hashCode
() {
/libcore/ojluni/src/main/java/java/security/spec/
ECPoint.java
110
public int
hashCode
() {
112
return x.
hashCode
() << 5 + y.
hashCode
();
/libcore/ojluni/src/main/java/java/text/
ParsePosition.java
137
public int
hashCode
() {
RuleBasedCollator.java
408
public int
hashCode
() {
410
return icuColl.
hashCode
();
/libcore/ojluni/src/main/java/java/util/
AbstractSet.java
42
* for <tt>equals</tt> and <tt>
hashCode
</tt>.<p>
108
* <tt>s1.
hashCode
()==s2.
hashCode
()</tt> for any two sets <tt>s1</tt>
110
* {@link Object#
hashCode
}.
113
* <tt>
hashCode
</tt> method on each element in the set, and adding up
120
public int
hashCode
() {
126
h += obj.
hashCode
();
Objects.java
95
* @see Object#
hashCode
97
public static int
hashCode
(Object o) {
98
return o != null ? o.
hashCode
() : 0;
105
* Arrays#
hashCode
(Object[])}.
108
* Object#
hashCode
()} on objects containing multiple fields. For
113
* @Override public int
hashCode
() {
120
* value can be computed by calling {@link #
hashCode
(Object)}.
124
* @see Arrays#
hashCode
(Object[])
125
* @see List#
hashCode
128
return Arrays.
hashCode
(values)
[
all
...]
Completed in 1241 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>