OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hashCode
(Results
1176 - 1200
of
5552
) sorted by null
<<
41
42
43
44
45
46
47
48
49
50
>>
/dalvik/dx/src/com/android/dx/dex/file/
AnnotationItem.java
127
public int
hashCode
() {
128
return annotation.
hashCode
();
EncodedField.java
58
public int
hashCode
() {
59
return field.
hashCode
();
ParameterAnnotationStruct.java
82
public int
hashCode
() {
83
return method.
hashCode
();
TypeListItem.java
54
public int
hashCode
() {
/dalvik/dx/src/com/android/dx/rop/annotation/
Annotation.java
83
public int
hashCode
() {
84
int hash = type.
hashCode
();
85
hash = (hash * 31) + elements.
hashCode
();
86
hash = (hash * 31) + visibility.
hashCode
();
Annotations.java
91
public int
hashCode
() {
92
return annotations.
hashCode
();
/dalvik/dx/src/com/android/dx/rop/code/
BasicBlock.java
129
* Return the identity
hashcode
of this instance. This is proper,
133
public int
hashCode
() {
/dalvik/dx/src/com/android/dx/util/
FixedSizeList.java
64
public int
hashCode
() {
65
return Arrays.
hashCode
(arr);
/developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
FilledAutofillField.java
130
public int
hashCode
() {
131
int result = mTextValue != null ? mTextValue.
hashCode
() : 0;
132
result = 31 * result + (mDateValue != null ? mDateValue.
hashCode
() : 0);
133
result = 31 * result + (mToggleValue != null ? mToggleValue.
hashCode
() : 0);
/developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/model/
Message.java
141
public int
hashCode
() {
142
int result = id != null ? id.
hashCode
() : 0;
143
result = 31 * result + senderId.
hashCode
();
144
result = 31 * result + (name != null ? name.
hashCode
() : 0);
145
result = 31 * result + (text != null ? text.
hashCode
() : 0);
Profile.java
157
public int
hashCode
() {
158
int result = id.
hashCode
();
159
result = 31 * result + (email != null ? email.
hashCode
() : 0);
160
result = 31 * result + name.
hashCode
();
161
result = 31 * result + profileImageUri.
hashCode
();
162
result = 31 * result + (lastUpdatedTime != null ? lastUpdatedTime.
hashCode
() : 0);
/developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/model/
Message.java
141
public int
hashCode
() {
142
int result = id != null ? id.
hashCode
() : 0;
143
result = 31 * result + senderId.
hashCode
();
144
result = 31 * result + (name != null ? name.
hashCode
() : 0);
145
result = 31 * result + (text != null ? text.
hashCode
() : 0);
Profile.java
157
public int
hashCode
() {
158
int result = id.
hashCode
();
159
result = 31 * result + (email != null ? email.
hashCode
() : 0);
160
result = 31 * result + name.
hashCode
();
161
result = 31 * result + profileImageUri.
hashCode
();
162
result = 31 * result + (lastUpdatedTime != null ? lastUpdatedTime.
hashCode
() : 0);
/development/tools/bugreport/src/com/android/bugreport/inspector/
DeadlockDetector.java
56
public int
hashCode
() {
58
hash = hash * 31 + this.process.
hashCode
();
59
hash = hash * 31 + this.thread.
hashCode
();
92
public int
hashCode
() {
94
hash = hash * 31 + this.process.
hashCode
();
96
hash = hash * 31 + this.lock.address.
hashCode
();
/external/annotation-tools/scene-lib/src/annotations/
Annotation.java
210
* {@link Annotation#
hashCode
}. Subclasses may wish to override
214
public int
hashCode
() {
215
return def.
hashCode
() + fieldValues.
hashCode
();
295
// public int
hashCode
() {
296
// return tldef.
hashCode
() + ann.
hashCode
();
/external/annotation-tools/scene-lib/src/annotations/el/
AMethod.java
87
public int
hashCode
() {
88
return super.
hashCode
()
89
+ bounds.
hashCode
() + receiver.
hashCode
()
90
+ parameters.
hashCode
() + throwsException.
hashCode
()
91
+ body.
hashCode
() + methodName.
hashCode
();
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunction.java
330
public int
hashCode
() {
333
result = prime * result + Arrays.
hashCode
(coefficients);
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
StatisticalSummaryValues.java
154
public int
hashCode
() {
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
VectorialCovariance.java
123
public int
hashCode
() {
128
result = prime * result + Arrays.
hashCode
(productsSums);
129
result = prime * result + Arrays.
hashCode
(sums);
/external/apache-http/src/org/apache/http/auth/
AuthScope.java
286
* @see java.lang.Object#
hashCode
()
289
public int
hashCode
() {
291
hash = LangUtils.
hashCode
(hash, this.host);
292
hash = LangUtils.
hashCode
(hash, this.port);
293
hash = LangUtils.
hashCode
(hash, this.realm);
294
hash = LangUtils.
hashCode
(hash, this.scheme);
/external/apache-http/src/org/apache/http/conn/routing/
HttpRoute.java
385
public final int
hashCode
() {
387
int hc = this.targetHost.
hashCode
();
390
hc ^= localAddress.
hashCode
();
393
for (HttpHost aProxyChain : proxyChain) hc ^= aProxyChain.
hashCode
();
399
hc ^= this.tunnelled.
hashCode
();
400
hc ^= this.layered.
hashCode
();
/external/apache-xml/src/main/java/org/apache/xml/utils/
QName.java
73
* The cached
hashcode
, which is calculated at construction time.
125
m_hashCode = toString().
hashCode
();
179
m_hashCode = toString().
hashCode
();
221
m_hashCode = toString().
hashCode
();
312
m_hashCode = toString().
hashCode
();
400
m_hashCode = toString().
hashCode
();
479
m_hashCode = toString().
hashCode
();
567
* Return the cached
hashcode
of the qualified name.
569
* @return the cached
hashcode
of the qualified name
571
public int
hashCode
()
[
all
...]
XMLStringDefault.java
373
* Returns a
hashcode
for this string. The
hashcode
for a
385
public int
hashCode
()
387
return m_str.
hashCode
();
/external/autotest/frontend/client/src/autotest/tko/
ParameterizedField.java
25
public int
hashCode
() {
26
return type.
hashCode
() + 31 * value.
hashCode
();
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
AttributeCertificateHolder.java
358
public int
hashCode
()
360
return this.holder.
hashCode
();
Completed in 1583 milliseconds
<<
41
42
43
44
45
46
47
48
49
50
>>