Searched refs:hashCode (Results 1 - 25 of 26) sorted by relevance

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/
H A DItem.java98 int hashCode; field in class:Item
132 hashCode = i.hashCode;
143 this.hashCode = 0x7FFFFFFF & (type + intVal);
154 this.hashCode = 0x7FFFFFFF & (type + (int) longVal);
165 this.hashCode = 0x7FFFFFFF & (type + (int) floatVal);
176 this.hashCode = 0x7FFFFFFF & (type + (int) doubleVal);
201 hashCode = 0x7FFFFFFF & (type + strVal1.hashCode());
204 hashCode
[all...]
H A DClassWriter.java1116 Item i = items[key.hashCode % items.length];
1137 int index = j.hashCode % newItems.length;
1147 int index = i.hashCode % items.length;
H A DType.java704 // Equals, hashCode and toString
742 public int hashCode() { method in class:Type
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DSecondaryKeyMetadata.java114 public int hashCode() { method in class:SecondaryKeyMetadata
115 return super.hashCode() +
116 relationship.hashCode() +
117 deleteAction.hashCode() +
118 ClassMetadata.hashCode(keyName) +
119 ClassMetadata.hashCode(elementClassName) +
120 ClassMetadata.hashCode(relatedEntity);
H A DPrimaryKeyMetadata.java58 public int hashCode() { method in class:PrimaryKeyMetadata
59 return super.hashCode() + ClassMetadata.hashCode(sequenceName);
H A DFieldMetadata.java76 public int hashCode() { method in class:FieldMetadata
77 return ClassMetadata.hashCode(name) +
78 ClassMetadata.hashCode(className) +
79 ClassMetadata.hashCode(declaringClassName);
H A DClassMetadata.java139 public int hashCode() { method in class:ClassMetadata
142 hashCode(className) +
143 hashCode(proxiedClassName) +
144 hashCode(primaryKey) +
145 hashCode(secondaryKeys) +
146 hashCode(compositeKeyFields);
157 static int hashCode(Object o) { method in class:ClassMetadata
159 return o.hashCode();
H A DEntityMetadata.java82 public int hashCode() { method in class:EntityMetadata
83 return ClassMetadata.hashCode(className) +
84 ClassMetadata.hashCode(primaryKey) +
85 ClassMetadata.hashCode(secondaryKeys);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DMapEntryParameter.java49 * java.util.Map.Entry#hashCode}.
53 public int hashCode() { method in class:MapEntryParameter
55 return ((key == null) ? 0 : key.hashCode()) ^
56 ((value == null) ? 0 : value.hashCode());
H A DStoredMap.java519 * equals(), but not hashCode().
521 public int hashCode() { method in class:StoredMap
522 return super.hashCode();
H A DStoredCollection.java402 * equals(), but not hashCode().
404 public int hashCode() { method in class:StoredCollection
405 return super.hashCode();
H A DStoredList.java576 * equals(), but not hashCode().
578 public int hashCode() { method in class:StoredList
579 return super.hashCode();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/evolve/
H A DEntityConverter.java79 public int hashCode() { method in class:EntityConverter
80 return deletedKeys.hashCode() + super.hashCode();
H A DMutation.java73 public int hashCode() { method in class:Mutation
74 return className.hashCode() +
76 ((fieldName != null) ? fieldName.hashCode() : 0);
H A DRenamer.java94 public int hashCode() { method in class:Renamer
95 return newName.hashCode() + super.hashCode();
H A DConverter.java115 public int hashCode() { method in class:Converter
116 return conversion.hashCode() + super.hashCode();
H A DMutations.java176 public int hashCode() { method in class:Mutations
177 return renamers.hashCode() +
178 deleters.hashCode() +
179 converters.hashCode();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/
H A DTestEntity.java35 public int hashCode() { method in class:TestEntity
H A DTestSR15721.java92 int hash = currentTxn.hashCode();
96 hash2 = currentTxn.hashCode();
116 hash2 = currentTxn.hashCode();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DFieldInfo.java23 * <p>Note that the equals(), compareTo() and hashCode() methods only use the
136 public int hashCode() { method in class:FieldInfo
137 return name.hashCode();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/internal/
H A DDbTxn.java77 * We must override Object.hashCode whenever we override
81 public int hashCode() method in class:DbTxn
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/raw/
H A DRawObject.java202 public int hashCode() { method in class:RawObject
205 (values != null ? values.hashCode() : 0) +
206 (superObject != null ? superObject.hashCode() : 0);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DDatabaseEntry.java682 public int hashCode() { method in class:DatabaseEntry
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/libdb_java/
H A Ddb_java.i628 * We must override Object.hashCode whenever we override
632 public int hashCode()
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DBindingTest.java703 public int hashCode() { method in class:BindingTest.Address
1049 public int hashCode() { method in class:BindingTest.CompositeKey
1170 public int hashCode() { method in class:BindingTest.ComparableKey

Completed in 201 milliseconds

12