Searched refs:hashcode (Results 1 - 11 of 11) sorted by relevance

/openjdk7/langtools/test/tools/apt/Basics/
H A DAggregate.java36 public int hashcode() {return 42;} method in class:Aggregate
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DValueRepositoryId.java51 private String hashcode; // The computed hashcode field in class:ValueRepositoryId
63 hashcode = null;
66 /**Add a value to the hashcode being computed.
105 /** Get the hashcode computed for the value type. This method MUST not be
108 @return the 64 bit hashcode for the value type represented as a
112 if (hashcode == null)
115 hashcode = hexOf (digest[0]) + hexOf (digest[1]) +
120 return hashcode;
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelIdentifier.java138 int hashcode = instance;
139 if(object != null) hashcode |= object.hashCode();
140 if(variable != null) hashcode |= variable.hashCode();
141 return hashcode;
/openjdk7/jdk/test/java/util/Locale/
H A DBug4518797.java44 final int hashcode = loc.hashCode();
46 System.out.println("correct hash code: " + hashcode);
51 if (hc != hashcode) {
53 message = "t1: wrong hashcode: " + hc;
74 if (hc != hashcode) {
76 message = "t2: wrong hashcode: " + hc;
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeDataSupport.java425 int hashcode = compositeType.hashCode();
429 hashcode += Arrays.deepHashCode((Object[]) o);
431 hashcode += Arrays.hashCode((byte[]) o);
433 hashcode += Arrays.hashCode((short[]) o);
435 hashcode += Arrays.hashCode((int[]) o);
437 hashcode += Arrays.hashCode((long[]) o);
439 hashcode += Arrays.hashCode((char[]) o);
441 hashcode += Arrays.hashCode((float[]) o);
443 hashcode += Arrays.hashCode((double[]) o);
445 hashcode
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DDigitList.java613 int hashcode = decimalAt;
616 hashcode = hashcode * 37 + digits[i];
619 return hashcode;
H A DDateFormatSymbols.java609 int hashcode = 0;
612 hashcode ^= zoneStrings[0][index].hashCode();
613 return hashcode;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c62 * The full 32bit hashcode and key length is saved for comparisons, the
105 HashCode hcode; /* The full 32bit hashcode for the key. */
361 hashcode(void *key_ptr, int key_len) function
826 hcode = hashcode(key_ptr, key_len);
853 hcode = hashcode(key_ptr, key_len);
879 hcode = hashcode(key_ptr, key_len);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLImpl.java1218 volatile int hashcode = 0; field in class:X509CRLImpl.X509IssuerSerial
1286 if (hashcode == 0) {
1290 hashcode = result;
1292 return hashcode;
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipPath.java64 private int hashcode = 0; // cached hashcode (created lazily) field in class:ZipPath
545 int h = hashcode;
547 hashcode = h = Arrays.hashCode(path);
H A DZipFileSystem.java1742 int hashcode; // node is hashable/hashed by its name field in class:ZipFileSystem.IndexNode
1756 this.hashcode = Arrays.hashCode(name);
1777 return hashcode;

Completed in 53 milliseconds