Searched defs:hashCode (Results 426 - 450 of 794) sorted by relevance

<<11121314151617181920>>

/external/mockito/src/org/mockito/internal/util/collections/
H A DHashCodeAndEqualsSafeSet.java18 * hashCode and equals safe hash based set.
21 * Useful for holding mocks that have un-stubbable hashCode or equals method,
90 @Override public int hashCode() { method in class:HashCodeAndEqualsSafeSet
91 return backingHashSet.hashCode();
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DEditListBox.java222 public int hashCode() { method in class:EditListBox.Entry
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
H A DSampleFlags.java197 public int hashCode() { method in class:SampleFlags
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DRateShareEntry.java148 public int hashCode() { method in class:RateShareEntry.Entry
189 public int hashCode() { method in class:RateShareEntry
192 result = 31 * result + (entries != null ? entries.hashCode() : 0);
H A DSampleToGroupBox.java144 public int hashCode() { method in class:SampleToGroupBox.Entry
/external/nist-sip/java/gov/nist/core/
H A DDuplicateNameValueList.java257 public int hashCode() { method in class:DuplicateNameValueList
258 return this.nameValueMap.keySet().hashCode();
H A DHost.java296 public int hashCode() { method in class:Host
297 return this.getHostname().hashCode();
H A DNameValue.java281 public int hashCode() { method in class:NameValue
282 return this.encode().toLowerCase().hashCode();
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAuthority.java232 public int hashCode() { method in class:Authority
234 return this.hostPort.encode().hashCode();
/external/okhttp/okio/src/main/java/okio/
H A DByteString.java45 private transient int hashCode; // Lazily computed; 0 if unknown. field in class:ByteString
190 @Override public int hashCode() { method in class:ByteString
191 int result = hashCode;
192 return result != 0 ? result : (hashCode = Arrays.hashCode(data));
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DVerificationType.java99 public int hashCode() method in class:VerificationType
101 return this.getClass().hashCode();
/external/proguard/src/proguard/evaluation/
H A DTracedStack.java305 public int hashCode() method in class:TracedStack
307 return super.hashCode() ^
308 producerStack.hashCode();
/external/proguard/src/proguard/evaluation/value/
H A DParticularIntegerValue.java372 public int hashCode() method in class:ParticularIntegerValue
374 return this.getClass().hashCode() ^
H A DParticularLongValue.java260 public int hashCode() method in class:ParticularLongValue
262 return this.getClass().hashCode() ^
H A DReferenceValue.java527 public int hashCode() method in class:ReferenceValue
529 return this.getClass().hashCode() ^
530 (type == null ? 0 : type.hashCode() ^ (mayBeNull ? 0 : 1));
H A DSpecificIntegerValue.java350 public int hashCode() method in class:SpecificIntegerValue
352 return this.getClass().hashCode();
H A DSpecificLongValue.java255 public int hashCode() method in class:SpecificLongValue
257 return this.getClass().hashCode();
H A DUnknownIntegerValue.java206 public int hashCode() method in class:UnknownIntegerValue
208 return this.getClass().hashCode();
H A DUnknownLongValue.java150 public int hashCode() method in class:UnknownLongValue
152 return this.getClass().hashCode();
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DAbstractMessage.java167 public int hashCode() { method in class:AbstractMessage
169 hash = (19 * hash) + getDescriptorForType().hashCode();
170 hash = (53 * hash) + getAllFields().hashCode();
171 hash = (29 * hash) + getUnknownFields().hashCode();
H A DExtensionRegistry.java254 public int hashCode() { method in class:ExtensionRegistry.DescriptorIntPair
255 return descriptor.hashCode() * ((1 << 16) - 1) + number;
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DFieldArray.java213 public int hashCode() { method in class:FieldArray
220 result = 31 * result + mData[i].hashCode();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBitmapDrawable.java131 public int hashCode() { method in class:ShadowBitmapDrawable
132 return bitmap != null ? bitmap.hashCode() : 0;
H A DShadowContentValues.java302 public int hashCode() { method in class:ShadowContentValues
303 return values.hashCode();
H A DShadowPath.java97 public int hashCode() { method in class:ShadowPath.Point
100 result = 31 * result + (type != null ? type.hashCode() : 0);

Completed in 201 milliseconds

<<11121314151617181920>>