Searched refs:hashCode (Results 201 - 225 of 787) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DBCRSAPublicKey.java97 public int hashCode() method in class:BCRSAPublicKey
99 return this.getModulus().hashCode() ^ this.getPublicExponent().hashCode();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCERSAPrivateKey.java104 public int hashCode() method in class:JCERSAPrivateKey
106 return getModulus().hashCode() ^ getPrivateExponent().hashCode();
H A DJCERSAPublicKey.java99 public int hashCode() method in class:JCERSAPublicKey
101 return this.getModulus().hashCode() ^ this.getPublicExponent().hashCode();
/external/proguard/src/proguard/evaluation/
H A DTracedVariables.java206 public int hashCode() method in class:TracedVariables
208 return super.hashCode() ^
209 producerVariables.hashCode();
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DDTMXRTreeFrag.java50 public final int hashCode() { return m_dtmIdentity; } method in class:DTMXRTreeFrag
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DAnnotation.java83 public int hashCode() { method in class:Annotation
84 int hash = type.hashCode();
85 hash = (hash * 31) + elements.hashCode();
86 hash = (hash * 31) + visibility.hashCode();
/external/easymock/src/org/easymock/internal/matchers/
H A DEquals.java59 public int hashCode() { method in class:Equals
60 throw new UnsupportedOperationException("hashCode() is not supported");
/external/guava/guava/src/com/google/common/base/
H A DEquivalences.java40 * Returns an equivalence that delegates to {@link Object#equals} and {@link Object#hashCode}.
70 return o.hashCode();
H A DOptional.java160 @Override public abstract int hashCode(); method in class:Optional
244 @Override public int hashCode() { method in class:Optional.Present
245 return 0x598df91c + reference.hashCode();
292 @Override public int hashCode() { method in class:Optional.Absent
/external/guava/guava/src/com/google/common/collect/
H A DCount.java65 public int hashCode() { method in class:Count
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractTableReadTest.java144 int expected = Objects.hashCode("foo", 1, 'a')
145 + Objects.hashCode("bar", 1, 'b')
146 + Objects.hashCode("foo", 3, 'c');
147 assertEquals(expected, table.hashCode());
/external/icu4c/common/
H A Duhash_us.cpp27 return (str == NULL) ? 0 : str->hashCode();
/external/icu4c/test/intltest/
H A Dsfwdchit.h29 virtual int32_t hashCode(void) const;
H A Dtstnrapi.cpp37 // test clone(), ==, and hashCode()
42 // clone must have the same hashCode()
43 if(clone->hashCode()!=copy.hashCode()) {
44 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
49 // position changed, must change hashCode()
50 if(clone->hashCode()==copy.hashCode()) {
51 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next().hashCode()
[all...]
/external/javassist/src/test/test/javassist/proxy/
H A DProxySerializationTest.java100 public int hashCode() method in class:ProxySerializationTest.TestFilter
102 return TestFilter.class.hashCode();
122 public int hashCode() method in class:ProxySerializationTest.TestHandler
124 return TestHandler.class.hashCode();
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DTexture2D.java198 public int hashCode() { method in class:Texture2D
199 int hash = super.hashCode();
200 hash = 79 * hash + (this.wrapS != null ? this.wrapS.hashCode() : 0);
201 hash = 79 * hash + (this.wrapT != null ? this.wrapT.hashCode() : 0);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DProfileLevelIndicationDescriptor.java67 public int hashCode() { method in class:ProfileLevelIndicationDescriptor
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DRollRecoveryEntry.java74 public int hashCode() { method in class:RollRecoveryEntry
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DBooleanEncodedValue.java106 public int hashCode() { method in class:BooleanEncodedValue
H A DByteEncodedValue.java83 public int hashCode() { method in class:ByteEncodedValue
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
H A DReadOnlyDoubleBufferTest.java51 assertEquals(buf.hashCode(), duplicate.hashCode());
H A DReadOnlyFloatBufferTest.java51 assertEquals(buf.hashCode(), duplicate.hashCode());
H A DReadOnlyIntBufferTest.java51 assertEquals(buf.hashCode(), duplicate.hashCode());
H A DReadOnlyLongBufferTest.java51 assertEquals(buf.hashCode(), duplicate.hashCode());
H A DReadOnlyShortBufferTest.java51 assertEquals(buf.hashCode(), duplicate.hashCode());

Completed in 793 milliseconds

1234567891011>>