Searched refs:hashCode (Results 176 - 200 of 787) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/attribute/preverification/
H A DObjectType.java96 public int hashCode() method in class:ObjectType
98 return super.hashCode() ^
H A DUninitializedType.java95 public int hashCode() method in class:UninitializedType
97 return super.hashCode() ^
/external/proguard/src/proguard/evaluation/value/
H A DUnknownLongValue.java150 public int hashCode() method in class:UnknownLongValue
152 return this.getClass().hashCode();
H A DInstructionOffsetValue.java273 public int hashCode() method in class:InstructionOffsetValue
275 int hashCode = this.getClass().hashCode();
281 hashCode ^= values[index];
285 return hashCode;
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DEnumEncodedValue.java92 public int hashCode() { method in class:EnumEncodedValue
93 return value.hashCode();
H A DFieldEncodedValue.java92 public int hashCode() { method in class:FieldEncodedValue
93 return value.hashCode();
H A DMethodEncodedValue.java92 public int hashCode() { method in class:MethodEncodedValue
93 return value.hashCode();
H A DStringEncodedValue.java93 public int hashCode() { method in class:StringEncodedValue
94 return value.hashCode();
H A DTypeEncodedValue.java92 public int hashCode() { method in class:TypeEncodedValue
93 return value.hashCode();
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSet.java51 * HashSet} for objects with very fast {@link Object#hashCode} implementations
165 int hashCode = 0;
168 int hash = element.hashCode();
178 hashCode += hash;
200 return new SingletonImmutableSet<E>(element, hashCode);
206 return new RegularImmutableSet<E>(uniqueElements, hashCode, table, mask);
351 /** Returns {@code true} if the {@code hashCode()} method runs quickly. */
363 && hashCode() != object.hashCode()) {
369 @Override public int hashCode() { method in class:ImmutableSet
450 final int hashCode; field in class:ImmutableSet.TransformedImmutableSet
452 TransformedImmutableSet(D[] source, int hashCode) argument
496 @Override public final int hashCode() { method in class:ImmutableSet.TransformedImmutableSet
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DAuthScope.java281 * @see java.lang.Object#hashCode()
284 public int hashCode() { method in class:AuthScope
286 hash = LangUtils.hashCode(hash, this.host);
287 hash = LangUtils.hashCode(hash, this.port);
288 hash = LangUtils.hashCode(hash, this.realm);
289 hash = LangUtils.hashCode(hash, this.scheme);
H A DNTCredentials.java148 public int hashCode() { method in class:NTCredentials
150 hash = LangUtils.hashCode(hash, this.principal);
151 hash = LangUtils.hashCode(hash, this.workstation);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERExternal.java97 * @see java.lang.Object#hashCode()
99 public int hashCode() method in class:DERExternal
104 ret = directReference.hashCode();
108 ret ^= indirectReference.hashCode();
112 ret ^= dataValueDescriptor.hashCode();
114 ret ^= externalContent.hashCode();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPrivateKey.java124 public int hashCode() method in class:BCDSAPrivateKey
126 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
127 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
H A DBCDSAPublicKey.java130 public int hashCode() method in class:BCDSAPublicKey
132 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
133 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJDKDSAPrivateKey.java135 public int hashCode() method in class:JDKDSAPrivateKey
137 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
138 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
H A DJDKDSAPublicKey.java138 public int hashCode() method in class:JDKDSAPublicKey
140 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
141 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
/external/emma/core/java12/com/vladium/emma/data/
H A DClassDescriptor.java78 if (hashCode () != _rhs.hashCode ()) return false;
86 public final int hashCode () method in class:ClassDescriptor
90 final int hash = m_name.hashCode () + 16661 * m_packageVMName.hashCode ();
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashCodesTest.java99 private void assertReadableBytes(HashCode hashCode) { argument
100 assertTrue(hashCode.bits() >= 32); // sanity
101 byte[] hashBytes = hashCode.asBytes();
102 int totalBytes = hashCode.bits() / 8;
106 hashCode.writeBytesTo(bb, 0, bb.length);
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DTextureCubeMap.java181 public int hashCode() { method in class:TextureCubeMap
182 int hash = super.hashCode();
183 hash = 53 * hash + (this.wrapS != null ? this.wrapS.hashCode() : 0);
184 hash = 53 * hash + (this.wrapT != null ? this.wrapT.hashCode() : 0);
185 hash = 53 * hash + (this.wrapR != null ? this.wrapR.hashCode() : 0);
/external/proguard/src/proguard/evaluation/
H A DVariables.java317 public int hashCode() method in class:Variables
319 int hashCode = size;
326 hashCode ^= value.hashCode();
330 return hashCode;
/external/icu4c/common/unicode/
H A Dstringtriebuilder.h161 * they call the static Node::hashCode() which checks for a NULL pointer first.
176 inline int32_t hashCode() const { return hash; } function in class:StringTrieBuilder::Node
178 static inline int32_t hashCode(const Node *node) { return node==NULL ? 0 : node->hashCode(); } function in class:StringTrieBuilder::Node
268 : ValueNode(0x222222*37+hashCode(nextNode)), next(nextNode) { setValue(v); }
280 : ValueNode((0x333333*37+len)*37+hashCode(nextNode)),
318 hash=(hash*37+c)*37+hashCode(node);
332 hashCode(lessThanNode))*37+hashCode(greaterOrEqualNode)),
348 : ValueNode((0x666666*37+len)*37+hashCode(subNod
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DExtension.java223 public int hashCode() method in class:Extension
227 return this.getExtnValue().hashCode();
230 return ~this.getExtnValue().hashCode();
H A DX509Extension.java205 public int hashCode() method in class:X509Extension
209 return this.getValue().hashCode();
212 return ~this.getValue().hashCode();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DBCRSAPrivateKey.java104 public int hashCode() method in class:BCRSAPrivateKey
106 return getModulus().hashCode() ^ getPrivateExponent().hashCode();

Completed in 1737 milliseconds

1234567891011>>