Searched refs:hashCode (Results 101 - 125 of 787) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
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();
H A DMethodId.java108 @Override public int hashCode() { method in class:MethodId
110 result = 31 * result + declaringType.hashCode();
111 result = 31 * result + name.hashCode();
112 result = 31 * result + parameters.hashCode();
113 result = 31 * result + returnType.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/cache/
H A DRemovalNotification.java87 @Override public int hashCode() { method in class:RemovalNotification
90 return ((k == null) ? 0 : k.hashCode()) ^ ((v == null) ? 0 : v.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());
H A DRegularImmutableList.java167 @Override public int hashCode() { method in class:RegularImmutableList
170 int hashCode = 1;
172 hashCode = 31 * hashCode + array[i].hashCode();
174 return hashCode;
/external/guava/guava/src/com/google/common/eventbus/
H A DEventHandler.java85 @Override public int hashCode() { method in class:EventHandler
87 return (PRIME + method.hashCode()) * PRIME + target.hashCode();
/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/proguard/src/proguard/classfile/attribute/preverification/
H A DSameOneFrame.java105 public int hashCode() method in class:SameOneFrame
107 return super.hashCode() ^ stackItem.hashCode();
/external/proguard/src/proguard/
H A DClassSpecification.java234 public int hashCode() method in class:ClassSpecification
237 // (comments == null ? 0 : comments.hashCode() ) ^
240 (annotationType == null ? 0 : annotationType.hashCode() ) ^
241 (className == null ? 0 : className.hashCode() ) ^
242 (extendsAnnotationType == null ? 0 : extendsAnnotationType.hashCode()) ^
243 (extendsClassName == null ? 0 : extendsClassName.hashCode() ) ^
244 (fieldSpecifications == null ? 0 : fieldSpecifications.hashCode() ) ^
245 (methodSpecifications == null ? 0 : methodSpecifications.hashCode() );
/external/guava/guava/src/com/google/common/base/
H A DPredicates.java310 @Override public int hashCode() { method in class:Predicates.NotPredicate
311 return ~predicate.hashCode();
344 @Override public int hashCode() { method in class:Predicates.AndPredicate
346 return components.hashCode() + 0x12472c2c;
377 @Override public int hashCode() { method in class:Predicates.OrPredicate
379 return components.hashCode() + 0x053c91cf;
406 @Override public int hashCode() { method in class:Predicates.IsEqualToPredicate
407 return target.hashCode();
435 @Override public int hashCode() { method in class:Predicates.InstanceOfPredicate
436 return clazz.hashCode();
464 @Override public int hashCode() { method in class:Predicates.AssignableFromPredicate
507 @Override public int hashCode() { method in class:Predicates.InPredicate
541 @Override public int hashCode() { method in class:Predicates.CompositionPredicate
574 @Override public int hashCode() { method in class:Predicates.ContainsPatternPredicate
[all...]
H A DFunctions.java122 @Override public int hashCode() { method in class:Functions.FunctionForMapNoDefault
123 return map.hashCode();
170 @Override public int hashCode() { method in class:Functions.ForMapWithDefault
171 return Objects.hashCode(map, defaultValue);
216 @Override public int hashCode() { method in class:Functions.FunctionComposition
217 return f.hashCode() ^ g.hashCode();
258 @Override public int hashCode() { method in class:Functions.PredicateFunction
259 return predicate.hashCode();
299 @Override public int hashCode() { method in class:Functions.ConstantFunction
342 @Override public int hashCode() { method in class:Functions.SupplierFunction
[all...]
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java247 @Override public int hashCode() { method in class:Predicates.NotPredicate
248 return ~predicate.hashCode();
281 @Override public int hashCode() { method in class:Predicates.AndPredicate
283 return components.hashCode() + 0x12472c2c;
314 @Override public int hashCode() { method in class:Predicates.OrPredicate
316 return components.hashCode() + 0x053c91cf;
343 @Override public int hashCode() { method in class:Predicates.IsEqualToPredicate
344 return target.hashCode();
386 @Override public int hashCode() { method in class:Predicates.InPredicate
387 return target.hashCode();
420 @Override public int hashCode() { method in class:Predicates.CompositionPredicate
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Sequence.java233 public int hashCode() method in class:ASN1Sequence
236 int hashCode = size();
241 hashCode *= 17;
243 hashCode ^= o.hashCode();
246 return hashCode;
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultisetReadsTester.java103 0, getMultiset().entrySet().hashCode());
109 1 ^ samples.e0.hashCode(), getMultiset().entrySet().hashCode());
136 0, getMultiset().hashCode());
142 1 ^ samples.e0.hashCode(), getMultiset().hashCode());
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhonenumber.java222 public int hashCode() { method in class:Phonenumber.PhoneNumber
223 // Simplified rendition of the hashCode function automatically generated from the proto
229 hash = (53 * hash) + Long.valueOf(getNationalNumber()).hashCode();
230 hash = (53 * hash) + getExtension().hashCode();
232 hash = (53 * hash) + getRawInput().hashCode();
233 hash = (53 * hash) + getCountryCodeSource().hashCode();
234 hash = (53 * hash) + getPreferredDomesticCarrierCode().hashCode();
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ultraviolet/
H A DBaseLocationBox.java98 public int hashCode() { method in class:BaseLocationBox
99 int result = baseLocation != null ? baseLocation.hashCode() : 0;
100 result = 31 * result + (purchaseLocation != null ? purchaseLocation.hashCode() : 0);
/external/sonivox/arm-fm-22k/host_src/
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
157 if ((debugMessages[i].m_nHashCode == hashCode) &&
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
157 if ((debugMessages[i].m_nHashCode == hashCode) &&
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
/external/sonivox/arm-wt-22k/host_src/
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
157 if ((debugMessages[i].m_nHashCode == hashCode) &&
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertificateTest.java62 * Test for <code>hashCode()</code> method<br>
69 assertTrue(c1.hashCode() == c2.hashCode());
73 * Test for <code>hashCode()</code> method<br>
80 assertTrue((c1.hashCode() == c2.hashCode()) && c1.equals(c2));
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DStringCharacterIteratorTest.java456 * @tests java.text.StringCharacterIterator#hashCode()
463 assertTrue("Hash is equal", it1.hashCode() != it2.hashCode());
466 assertTrue("Hash equal1", it1.hashCode() != it3.hashCode());
468 assertTrue("Hash equal2", it1.hashCode() != it3.hashCode());
470 assertTrue("Hash equal3", it1.hashCode() != it3.hashCode());
472 assertTrue("Hash equal4", it1.hashCode() !
[all...]
/external/apache-http/src/org/apache/http/
H A DHttpHost.java58 /** The lowercase host, for {@link #equals} and {@link #hashCode}. */
204 * @see java.lang.Object#hashCode()
206 public int hashCode() { method in class:HttpHost
208 hash = LangUtils.hashCode(hash, this.lcHostname);
209 hash = LangUtils.hashCode(hash, this.port);
210 hash = LangUtils.hashCode(hash, this.schemeName);

Completed in 5223 milliseconds

1234567891011>>