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

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
H A DAnnotationElement.java60 * This hashCode is defined to be the following:
64 * int hashCode = getName().hashCode();
65 * hashCode = hashCode*31 + getValue().hashCode();
70 @Override int hashCode(); method in interface:AnnotationElement
H A DExceptionHandler.java69 * This hashCode is defined to be the following:
74 * int hashCode = exceptionType==null?0:exceptionType.hashCode();
75 * return hashCode*31 + getHandlerCodeAddress();
80 @Override int hashCode(); method in interface:ExceptionHandler
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/reference/
H A DFieldReference.java65 * This hashCode is defined to be the following:
69 * int hashCode = getDefiningClass().hashCode();
70 * hashCode = hashCode*31 + getName().hashCode();
71 * hashCode = hashCode*31 + getType().hashCode();
76 @Override int hashCode(); method in interface:FieldReference
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
H A DEnumEncodedValue.java55 * This hashCode is defined to be the following:
59 * int hashCode = getValue.hashCode();
64 @Override int hashCode(); method in interface:EnumEncodedValue
H A DFieldEncodedValue.java53 * This hashCode is defined to be the following:
57 * int hashCode = getValue.hashCode();
62 @Override int hashCode(); method in interface:FieldEncodedValue
H A DMethodEncodedValue.java53 * This hashCode is defined to be the following:
57 * int hashCode = getValue.hashCode();
62 @Override int hashCode(); method in interface:MethodEncodedValue
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
H A DLinearObjectiveFunction.java122 public int hashCode() { method in class:LinearObjectiveFunction
123 return Double.valueOf(constantTerm).hashCode() ^ coefficients.hashCode();
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java374 public int hashCode() { method in class:WeakHashtable.Entry
376 return (getKey()==null ? 0 : getKey().hashCode()) ^
377 (getValue()==null ? 0 : getValue().hashCode());
398 private final int hashCode; field in class:WeakHashtable.Referenced
406 // Calc a permanent hashCode so calls to Hashtable.remove()
408 hashCode = referant.hashCode();
417 // Calc a permanent hashCode so calls to Hashtable.remove()
419 hashCode = key.hashCode();
423 public int hashCode() { method in class:WeakHashtable.Referenced
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DNTUserPrincipal.java92 public int hashCode() { method in class:NTUserPrincipal
94 hash = LangUtils.hashCode(hash, this.username);
95 hash = LangUtils.hashCode(hash, this.domain);
/external/apache-http/src/org/apache/http/message/
H A DBasicNameValuePair.java183 public int hashCode() { method in class:BasicNameValuePair
185 hash = LangUtils.hashCode(hash, this.name);
186 hash = LangUtils.hashCode(hash, this.value);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECParameterSpec.java117 public int hashCode() method in class:ECParameterSpec
119 return this.getCurve().hashCode() ^ this.getG().hashCode();
/external/conscrypt/src/main/java/org/conscrypt/
H A DX509PublicKey.java60 public int hashCode() { method in class:X509PublicKey
63 result = prime * result + ((algorithm == null) ? 0 : algorithm.hashCode());
64 result = prime * result + Arrays.hashCode(encoded);
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DNameValuePair.java57 public int hashCode() { method in class:NameValuePair
58 return name.hashCode() * 31 + value.hashCode();
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalItem.java108 public int hashCode() { method in class:LocalItem
109 return (name == null ? 0 : name.hashCode()) * 31
110 + (signature == null ? 0 : signature.hashCode());
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstMemberRef.java62 public final int hashCode() { method in class:CstMemberRef
63 return (definingClass.hashCode() * 31) ^ nat.hashCode();
H A DCstNat.java73 public int hashCode() { method in class:CstNat
74 return (name.hashCode() * 31) ^ descriptor.hashCode();
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DFieldId.java67 @Override public int hashCode() { method in class:FieldId
68 return declaringType.hashCode() + 37 * name.hashCode();
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
H A DPair.java54 public int hashCode() { method in class:Pair
55 int hLeft = getLeft() == null ? 0 : getLeft().hashCode();
56 int hRight = getRight() == null ? 0 : getRight().hashCode();
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DAttribute.java43 public abstract int hashCode (); method in class:Attribute
67 public int hashCode () method in class:Attribute.AttributeImpl
69 return m_name.hashCode ();
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapEntry.java27 * Implementation of the {@code equals}, {@code hashCode}, and {@code toString}
55 @Override public int hashCode() { method in class:AbstractMapEntry
58 return ((k == null) ? 0 : k.hashCode()) ^ ((v == null) ? 0 : v.hashCode());
/external/guava/guava/src/com/google/common/reflect/
H A DAbstractInvocationHandler.java30 * {@link Object#hashCode} and {@link Object#toString}. For example: <pre>
53 * <li>{@code proxy.hashCode()} delegates to {@link AbstractInvocationHandler#hashCode}
68 if (args.length == 0 && method.getName().equals("hashCode")) {
69 return hashCode();
92 * except {@link Object#equals}, {@link Object#hashCode} and {@link Object#toString}. The result
114 * By default delegates to {@link Object#hashCode}. The dynamic proxies' {@code hashCode()} will
117 @Override public int hashCode() { method in class:AbstractInvocationHandler
118 return super.hashCode();
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DTesterRequirements.java71 @Override public int hashCode() { method in class:TesterRequirements
72 return presentFeatures.hashCode() * 31 + absentFeatures.hashCode();
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DSignature.java70 public int hashCode() { method in class:Signature
71 return name.hashCode() ^ desc.hashCode();
/external/mockito/src/org/mockito/internal/util/reflection/
H A DInstanceField.java123 public int hashCode() { method in class:InstanceField
124 int result = field.hashCode();
125 result = 31 * result + instance.hashCode();
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DHeader.java46 @Override public int hashCode() { method in class:Header
48 result = 31 * result + name.hashCode();
49 result = 31 * result + value.hashCode();

Completed in 510 milliseconds

1234567891011>>