OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hashCode
(Results
226 - 250
of
4740
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/mockito/src/main/java/org/mockito/internal/matchers/
Equals.java
47
public int
hashCode
() {
/external/mockito/src/main/java/org/mockito/internal/util/collections/
HashCodeAndEqualsMockWrapper.java
10
*
hashCode
and equals safe mock wrapper.
13
* It doesn't use the actual mock {@link Object#
hashCode
} and {@link Object#equals} method as they might
20
* <li>For
hashCode
: <strong>use {@link System#identityHashCode}</strong></li>
50
public int
hashCode
() {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ProfileLevelIndicationDescriptor.java
67
public int
hashCode
() {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Challenge.java
46
@Override public int
hashCode
() {
48
result = 31 * result + (realm != null ? realm.
hashCode
() : 0);
49
result = 31 * result + (scheme != null ? scheme.
hashCode
() : 0);
Handshake.java
113
@Override public int
hashCode
() {
115
result = 31 * result + cipherSuite.
hashCode
();
116
result = 31 * result + peerCertificates.
hashCode
();
117
result = 31 * result + localCertificates.
hashCode
();
Route.java
91
@Override public int
hashCode
() {
93
result = 31 * result + address.
hashCode
();
94
result = 31 * result + proxy.
hashCode
();
95
result = 31 * result + inetSocketAddress.
hashCode
();
/external/owasp/sanitizer/src/main/org/owasp/html/
AttributePolicy.java
134
public int
hashCode
() {
135
return policies.
hashCode
();
FilterUrlByProtocolAttributePolicy.java
158
public int
hashCode
() {
159
return protocols.
hashCode
();
StylingPolicy.java
227
public int
hashCode
() {
228
return cssSchema.
hashCode
();
/external/proguard/src/proguard/
KeepClassSpecification.java
128
public int
hashCode
()
137
super.
hashCode
();
/external/proguard/src/proguard/classfile/attribute/preverification/
LessZeroFrame.java
93
public int
hashCode
()
95
return super.
hashCode
() ^ choppedVariablesCount;
/external/proguard/src/proguard/evaluation/value/
ArrayReferenceValue.java
154
public int
hashCode
()
156
return super.
hashCode
() ^
157
arrayLength.
hashCode
();
CompositeDoubleValue.java
69
public int
hashCode
()
71
return super.
hashCode
() ^
72
doubleValue1.
hashCode
() ^
73
doubleValue2.
hashCode
();
CompositeFloatValue.java
69
public int
hashCode
()
71
return super.
hashCode
() ^
72
floatValue1.
hashCode
() ^
73
floatValue2.
hashCode
();
IdentifiedArrayReferenceValue.java
147
public int
hashCode
()
149
return super.
hashCode
() ^
150
valuefactory.
hashCode
() ^
IdentifiedReferenceValue.java
147
public int
hashCode
()
149
return super.
hashCode
() ^
150
valuefactory.
hashCode
() ^
TopValue.java
69
public int
hashCode
()
71
return this.getClass().
hashCode
();
/external/protobuf/java/core/src/main/java/com/google/protobuf/
TextFormatParseLocation.java
100
public int
hashCode
() {
102
return Arrays.
hashCode
(values);
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
UnknownFieldData.java
82
public int
hashCode
() {
85
result = 31 * result + Arrays.
hashCode
(bytes);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowGeoPoint.java
48
public int
hashCode
() {
ShadowOverlayItem.java
56
public int
hashCode
() {
58
result = title == null ? result : 19 * result + title.
hashCode
();
59
result = snippet == null ? result : 19 * result + snippet.
hashCode
();
60
result = geoPoint == null ? result : 19 * result + geoPoint.
hashCode
();
ShadowPoint.java
60
public int
hashCode
() {
ShadowPointF.java
62
public int
hashCode
() {
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
PairTest.java
36
assertThat(Pair.create("1", 2).
hashCode
(), equalTo(Pair.create("1", 2).
hashCode
()));
/external/slf4j/slf4j-api/src/main/java/org/slf4j/
Marker.java
137
* @return the computed
hashCode
140
public int
hashCode
();
Completed in 1298 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>