Searched refs:hashCode (Results 226 - 250 of 916) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DBCRSAPublicKey.java95 public int hashCode() method in class:BCRSAPublicKey
97 return this.getModulus().hashCode() ^ this.getPublicExponent().hashCode();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCERSAPrivateKey.java101 public int hashCode() method in class:JCERSAPrivateKey
103 return getModulus().hashCode() ^ getPrivateExponent().hashCode();
H A DJCERSAPublicKey.java97 public int hashCode() method in class:JCERSAPublicKey
99 return this.getModulus().hashCode() ^ this.getPublicExponent().hashCode();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java282 public static int hashCode(byte[] data) method in class:Arrays
301 public static int hashCode(char[] data) method in class:Arrays
320 public static int hashCode(int[][] ints) method in class:Arrays
326 hc = hc * 257 + hashCode(ints[i]);
332 public static int hashCode(int[] data) method in class:Arrays
351 public static int hashCode(short[][][] shorts) method in class:Arrays
357 hc = hc * 257 + hashCode(shorts[i]);
363 public static int hashCode(short[][] shorts) method in class:Arrays
369 hc = hc * 257 + hashCode(shorts[i]);
375 public static int hashCode(shor method in class:Arrays
394 public static int hashCode(BigInteger[] data) method in class:Arrays
[all...]
/external/proguard/src/proguard/evaluation/
H A DTracedVariables.java206 public int hashCode() method in class:TracedVariables
208 return super.hashCode() ^
209 producerVariables.hashCode();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAccount.java76 public int hashCode() { method in class:ShadowAccount
78 result = 31 * result + realObject.name.hashCode();
79 result = 31 * result + realObject.type.hashCode();
H A DShadowComponentName.java94 public int hashCode() { method in class:ShadowComponentName
95 int result = pkg != null ? pkg.hashCode() : 0;
96 result = 31 * result + (cls != null ? cls.hashCode() : 0);
/external/smack/src/org/jivesoftware/smack/packet/
H A DMessage.java497 public int hashCode() { method in class:Message
499 result = (type != null ? type.hashCode() : 0);
500 result = 31 * result + subjects.hashCode();
501 result = 31 * result + (thread != null ? thread.hashCode() : 0);
502 result = 31 * result + (language != null ? language.hashCode() : 0);
503 result = 31 * result + bodies.hashCode();
545 public int hashCode() { method in class:Message.Subject
548 result = prime * result + this.language.hashCode();
549 result = prime * result + this.subject.hashCode();
607 public int hashCode() { method in class:Message.Body
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DAnnotationDirectoryItem.java492 public int hashCode() { method in class:AnnotationDirectoryItem
496 return parentType.hashCode();
499 return classAnnotations.hashCode();
539 public int hashCode() { method in class:AnnotationDirectoryItem.FieldAnnotation
540 return field.hashCode() + 31 * annotationSet.hashCode();
570 public int hashCode() { method in class:AnnotationDirectoryItem.MethodAnnotation
571 return method.hashCode() + 31 * annotationSet.hashCode();
602 public int hashCode() { method in class:AnnotationDirectoryItem.ParameterAnnotation
[all...]
/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/chromium_org/third_party/icu/source/common/
H A Duhash_us.cpp27 return (str == NULL) ? 0 : str->hashCode();
/external/chromium_org/third_party/icu/source/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/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/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/mockito/src/org/mockito/internal/util/collections/
H A DHashCodeAndEqualsMockWrapper.java10 * hashCode and equals safe mock wrapper.
13 * It doesn't use the actual mock {@link Object#hashCode} and {@link Object#equals} method as they might
20 * <li>For hashCode : <strong>use {@link System#identityHashCode}</strong></li>
50 public int hashCode() { method in class:HashCodeAndEqualsMockWrapper
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DProfileLevelIndicationDescriptor.java67 public int hashCode() { method in class:ProfileLevelIndicationDescriptor

Completed in 802 milliseconds

1234567891011>>