HomeSort by relevance Sort by last modified time
    Searched defs:hashCode (Results 1 - 25 of 624) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/tests/088-ssa-combine-blocks/
Blort.java 31 hashCode();
32 hashCode();
  /dalvik/libcore/security/src/main/java/java/security/
Principal.java 49 * required by the general contract of {@link Object#hashCode}.
55 public int hashCode();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
AbstractCorpus.java 43 public int hashCode() {
44 return getName().hashCode();
  /cts/tools/dasm/src/java_cup/
action_part.java 78 public int hashCode()
80 return super.hashCode() ^
81 (code_string()==null ? 0 : code_string().hashCode());
parse_action.java 74 public int hashCode()
production_part.java 76 public int hashCode()
78 return label()==null ? 0 : label().hashCode();
reduce_action.java 69 public int hashCode()
72 return reduce_with().hashCode();
shift_action.java 69 public int hashCode()
72 return shift_to().hashCode();
symbol_part.java 81 public int hashCode()
83 return super.hashCode() ^
84 (the_symbol()==null ? 0 : the_symbol().hashCode());
  /cts/tools/signature-tools/src/signature/model/impl/
SigClassReference.java 51 public int hashCode() {
52 return SigClassReference.hashCode(this);
55 public static int hashCode(IClassReference thiz) {
56 return thiz.getClassDefinition().hashCode();
SigTypeVariableReference.java 48 public int hashCode() {
49 return getTypeVariableDefinition().hashCode();
  /dalvik/dx/tests/086-ssa-edge-split/
Blort.java 49 hashCode();
50 hashCode();
  /dalvik/libcore/annotation/src/main/java/java/lang/annotation/
Annotation.java 91 * (0x7f * n.hashCode()) ^ v.hashCode())}, where {@code n} is the
97 * Integer.valueOf(v).hashCode()} is used for an {@code int} value
102 * using the corresponding {@code hashCode(v)} helper function in
107 * calling their {@code hashCode} method.
113 int hashCode();
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/misc/
HashCode.java 24 * <code>java.util.List.hashCode</code>.
46 * public int hashCode() {
47 * int hashCode = HashCode.EMPTY_HASH_CODE;
48 * hashCode = HashCode.combine(hashCode, id);
49 * hashCode = HashCode.combine(hashCode, name)
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/spec/
ECFieldFp.java 90 * Returns the hashcode value for this finite field.
92 * @return the hashcode value for this finite field.
94 public int hashCode() {
95 return p.hashCode();
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
ASN1Null.java 17 public int hashCode()
DERObject.java 14 public abstract int hashCode();
  /external/apache-http/src/org/apache/http/util/
LangUtils.java 36 * {@link Object#equals equals} and {@link Object#hashCode hashCode} methods.
51 public static int hashCode(final int seed, final int hashcode) {
52 return seed * HASH_OFFSET + hashcode;
55 public static int hashCode(final int seed, final boolean b) {
56 return hashCode(seed, b ? 1 : 0);
59 public static int hashCode(final int seed, final Object obj) {
60 return hashCode(seed, obj != null ? obj.hashCode() : 0)
    [all...]
  /external/guava/src/com/google/common/collect/
ForwardingSet.java 45 @Override public int hashCode() {
46 return delegate().hashCode();
  /external/proguard/src/proguard/
MemberSpecification.java 105 public int hashCode()
110 (annotationType == null ? 0 : annotationType.hashCode()) ^
111 (name == null ? 0 : name.hashCode() ) ^
112 (descriptor == null ? 0 : descriptor.hashCode() );
  /external/proguard/src/proguard/evaluation/value/
ComparisonValue.java 57 public int hashCode()
59 return super.hashCode() ^
60 value1.hashCode() ^
61 value2.hashCode();
ConvertedByteValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedCharacterValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedDoubleValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedFloatValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();

Completed in 520 milliseconds

1 2 3 4 5 6 7 8 91011>>