OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hashCode
(Results
1326 - 1350
of
5552
) sorted by null
<<
51
52
53
54
55
56
57
58
59
60
>>
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
ConnectionSpec.java
225
@Override public int
hashCode
() {
228
result = 31 * result + Arrays.
hashCode
(cipherSuites);
229
result = 31 * result + Arrays.
hashCode
(tlsVersions);
/external/okhttp/okio/okio/src/main/java/okio/
SegmentedByteString.java
231
@Override public int
hashCode
() {
232
int result =
hashCode
;
235
// Equivalent to Arrays.
hashCode
(toByteArray()).
248
return (
hashCode
= result);
/external/proguard/src/proguard/evaluation/
Variables.java
316
public int
hashCode
()
318
int
hashCode
= size;
325
hashCode
^= value.
hashCode
();
329
return
hashCode
;
/external/proguard/src/proguard/evaluation/value/
InstructionOffsetValue.java
286
public int
hashCode
()
288
int
hashCode
= this.getClass().
hashCode
();
294
hashCode
^= values[index];
298
return
hashCode
;
ParticularIntegerValue.java
372
public int
hashCode
()
374
return this.getClass().
hashCode
() ^
ParticularLongValue.java
260
public int
hashCode
()
262
return this.getClass().
hashCode
() ^
SpecificIntegerValue.java
350
public int
hashCode
()
352
return this.getClass().
hashCode
();
UnknownIntegerValue.java
206
public int
hashCode
()
208
return this.getClass().
hashCode
();
/external/protobuf/java/core/src/main/java/com/google/protobuf/
BooleanArrayList.java
106
public int
hashCode
() {
DoubleArrayList.java
106
public int
hashCode
() {
FloatArrayList.java
105
public int
hashCode
() {
IntArrayList.java
105
public int
hashCode
() {
LazyFieldLite.java
168
public int
hashCode
() {
LongArrayList.java
105
public int
hashCode
() {
/external/protobuf/java/core/src/test/java/com/google/protobuf/
MapForProto2Test.java
366
// Test that generated equals() and
hashCode
() will disregard the order
384
assertEquals(m1.
hashCode
(), m2.
hashCode
());
390
// Don't check m1.
hashCode
() != m2.
hashCode
() because it's not guaranteed
562
assertEquals(message.
hashCode
(), dynamicMessage.
hashCode
());
566
// Test that generated equals() and
hashCode
() will disregard the order
569
// We use DynamicMessage to test reflection based equals()/
hashCode
().
587
assertEquals(m1.
hashCode
(), m2.hashCode())
[
all
...]
MapTest.java
383
// Test that generated equals() and
hashCode
() will disregard the order
401
assertEquals(m1.
hashCode
(), m2.
hashCode
());
407
// Don't check m1.
hashCode
() != m2.
hashCode
() because it's not guaranteed
655
assertEquals(message.
hashCode
(), dynamicMessage.
hashCode
());
659
// Test that generated equals() and
hashCode
() will disregard the order
662
// We use DynamicMessage to test reflection based equals()/
hashCode
().
680
assertEquals(m1.
hashCode
(), m2.hashCode())
[
all
...]
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
FieldArray.java
216
public int
hashCode
() {
223
result = 31 * result + mData[i].
hashCode
();
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBitmapDrawable.java
131
public int
hashCode
() {
132
return bitmap != null ? bitmap.
hashCode
() : 0;
ShadowContentValues.java
302
public int
hashCode
() {
303
return values.
hashCode
();
ShadowPath.java
97
public int
hashCode
() {
100
result = 31 * result + (type != null ? type.
hashCode
() : 0);
ShadowPendingIntent.java
109
public int
hashCode
() {
116
result = prime * result + ((savedIntent == null) ? 0 : savedIntent.
hashCode
());
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
ResName.java
20
public final int
hashCode
;
27
hashCode
= computeHashCode();
40
hashCode
= computeHashCode();
118
if (
hashCode
() != resName.
hashCode
()) return false;
128
public int
hashCode
() {
129
return
hashCode
;
157
int result = packageName.
hashCode
();
158
result = 31 * result + type.
hashCode
();
159
result = 31 * result + name.
hashCode
();
[
all
...]
StyleResolver.java
163
public int
hashCode
() {
164
int
hashCode
= 0;
165
hashCode
= 31 *
hashCode
+ (theme != null ? theme.
hashCode
() : 0);
166
hashCode
= 31 *
hashCode
+ (myResName != null ? myResName.
hashCode
() : 0);
167
hashCode
= 31 *
hashCode
+ (config != null ? config.hashCode() : 0)
[
all
...]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPath.java
109
public int
hashCode
() {
112
result = 31 * result + (type != null ? type.
hashCode
() : 0);
ShadowTypeface.java
164
public int
hashCode
() {
165
int result = familyName != null ? familyName.
hashCode
() : 0;
Completed in 987 milliseconds
<<
51
52
53
54
55
56
57
58
59
60
>>