HomeSort by relevance Sort by last modified time
    Searched defs:hashCode (Results 1476 - 1500 of 5552) sorted by null

<<51525354555657585960>>

  /libcore/ojluni/src/main/java/java/time/temporal/
ValueRange.java 400 public int hashCode() {
  /libcore/ojluni/src/main/java/java/time/zone/
ZoneOffsetTransition.java 431 public int hashCode() {
432 return transition.hashCode() ^ offsetBefore.hashCode() ^ Integer.rotateLeft(offsetAfter.hashCode(), 16);
  /libcore/ojluni/src/main/java/java/util/
List.java 47 * <tt>hashCode</tt> methods. Declarations for other inherited methods are
73 * extreme caution is advised: the <tt>equals</tt> and <tt>hashCode</tt>
540 * int hashCode = 1;
542 * hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
545 * <tt>list1.hashCode()==list2.hashCode()</tt> for any two lists,
547 * contract of {@link Object#hashCode}.
553 int hashCode();
    [all...]
Map.java 56 * advised: the {@code equals} and {@code hashCode} methods are no longer
102 * {@link Object#hashCode()} specification guarantees that two objects with
111 * {@code equals()}, {@code hashCode()} and {@code toString()} methods.
443 * (e.getKey()==null ? 0 : e.getKey().hashCode()) ^
444 * (e.getValue()==null ? 0 : e.getValue().hashCode())
447 * {@code e1.hashCode()==e2.hashCode()} for any two Entries
449 * contract of {@code Object.hashCode}.
452 * @see Object#hashCode()
456 int hashCode();
    [all...]
UUID.java 394 public int hashCode() {
  /libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
Handler.java 96 protected int hashCode(URL u) {
101 h += protocol.hashCode();
107 return h + file.hashCode();
113 h += enclosedURL.hashCode();
115 h += fileWithoutEntry.hashCode();
119 h += entry.hashCode();
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixUserPrincipals.java 103 public int hashCode() {
104 return (id != -1) ? id : name.hashCode();
  /libcore/ojluni/src/main/java/sun/security/jca/
ProviderConfig.java 151 public int hashCode() {
152 return className.hashCode() + argument.hashCode();
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
CertId.java 67 private int myhash = -1; // hashcode for this CertId
174 * Returns a hashcode value for this CertId.
176 * @return the hashcode value.
178 @Override public int hashCode() {
180 myhash = hashAlgId.hashCode();
187 myhash += certSerialNumber.getNumber().hashCode();
  /libcore/ojluni/src/main/java/sun/security/util/
BitArray.java 204 public int hashCode() {
205 int hashCode = 0;
208 hashCode = 31*hashCode + repn[i];
210 return hashCode ^ length;
  /libcore/ojluni/src/main/java/sun/security/x509/
EDIPartyName.java 198 public int hashCode() {
200 myhash = 37 + (party == null ? 1 : party.hashCode());
202 myhash = 37 * myhash + assigner.hashCode();
Extension.java 235 * Returns a hashcode value for this Extension.
237 * @return the hashcode value.
239 public int hashCode() {
247 h = h * hashMagic + extensionId.hashCode();
IPAddressName.java 356 public int hashCode() {
OtherName.java 208 public int hashCode() {
210 myhash = 37 + oid.hashCode();
PolicyInformation.java 144 public int hashCode() {
145 int myhash = 37 + policyIdentifier.hashCode();
146 myhash = 37 * myhash + policyQualifiers.hashCode();
URIName.java 284 public int hashCode() {
285 return uri.hashCode();
  /libcore/ojluni/src/main/java/sun/util/calendar/
Era.java 137 public int hashCode() {
139 hash = name.hashCode() ^ abbr.hashCode() ^ (int)since ^ (int)(since >> 32)
  /libcore/ojluni/src/main/java/sun/util/locale/
LocaleExtensions.java 228 public int hashCode() {
229 return id.hashCode();
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKClock.java 104 public int hashCode() {
TCKInstant.java 167 assertEquals(instant.hashCode(), instant.hashCode());
    [all...]
  /libcore/ojluni/src/test/java/time/tck/java/time/serial/
TCKZoneIdSerialization.java 104 // getId, equals, hashCode, toString and normalized are OK
108 assertEquals(deser.hashCode(), deser.hashCode());
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAccountItem.java 141 public int hashCode() {
144 result = prime * result + ((mId == null) ? 0 : mId.hashCode());
145 result = prime * result + ((mName == null) ? 0 : mName.hashCode());
146 result = prime * result + ((mPackageName == null) ? 0 : mPackageName.hashCode());
148 prime * result + ((mProviderAuthority == null) ? 0 : mProviderAuthority.hashCode());
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PhonebookEntry.java 53 public int hashCode() {
54 int result = 23 * (family == null ? 0 : family.hashCode());
55 result = 23 * result + (given == null ? 0 : given.hashCode());
56 result = 23 * result + (middle == null ? 0 : middle.hashCode());
57 result = 23 * result + (prefix == null ? 0 : prefix.hashCode());
58 result = 23 * result + (suffix == null ? 0 : suffix.hashCode());
96 public int hashCode() {
97 return 23 * type + number.hashCode();
153 public int hashCode() {
154 return name.hashCode() + 23 * phones.hashCode()
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/common/
PictureSizeCalculator.java 105 public int hashCode() {
106 return Objects.hashCode(mSize, mPostCrop);
  /packages/apps/Camera2/src/com/android/camera/util/
AspectRatio.java 97 public int hashCode() {
98 return Objects.hashCode(mWidth, mHeight);

Completed in 1027 milliseconds

<<51525354555657585960>>