HomeSort by relevance Sort by last modified time
    Searched defs:hashCode (Results 51 - 75 of 5552) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
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();
ConvertedIntegerValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedLongValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedShortValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
IdentifiedDoubleValue.java 55 public int hashCode()
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
IdentifiedFloatValue.java 55 public int hashCode()
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
IdentifiedIntegerValue.java 55 public int hashCode()
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
IdentifiedLongValue.java 55 public int hashCode()
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
NegatedDoubleValue.java 60 public int hashCode()
62 return super.hashCode() ^
63 doubleValue.hashCode();
NegatedFloatValue.java 60 public int hashCode()
62 return super.hashCode() ^
63 floatValue.hashCode();
NegatedIntegerValue.java 60 public int hashCode()
62 return super.hashCode() ^
63 integerValue.hashCode();
NegatedLongValue.java 60 public int hashCode()
62 return super.hashCode() ^
63 longValue.hashCode();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowColorDrawable.java 34 public int hashCode() {
35 int result = super.hashCode();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/util/
DataSource.java 47 public int hashCode() {
48 return ((dataSource == null) ? 0 : dataSource.hashCode());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseNullEncodedValue.java 44 public int hashCode() {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
AnnotationElement.java 58 * Returns a hashcode for this AnnotationElement.
60 * This hashCode is defined to be the following:
64 * int hashCode = getName().hashCode();
65 * hashCode = hashCode*31 + getValue().hashCode();
70 @Override int hashCode();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/reference/
StringReference.java 56 * Returns a hashcode for this StringReference.
58 * This is defined to be getString().hashCode().
62 @Override int hashCode();
TypeReference.java 61 * Returns a hashcode for this TypeReference.
63 * This is defined to be getType().hashCode()
67 @Override int hashCode();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
ArrayEncodedValue.java 50 * Returns a hashcode for this EncodedArrayValue.
52 * This hashCode is defined to be the following:
56 * int hashCode = getValue().hashCode();
61 @Override int hashCode();
BooleanEncodedValue.java 49 * Returns a hashcode for this EncodedBooleanValue.
51 * This hashCode is defined to be the following:
55 * int hashCode = getValue()?1:0;
60 @Override int hashCode();
ByteEncodedValue.java 49 * Returns a hashcode for this EncodedByteValue.
51 * This hashCode is defined to be the following:
55 * int hashCode = getValue();
60 @Override int hashCode();
CharEncodedValue.java 49 * Returns a hashcode for this EncodedCharValue.
51 * This hashCode is defined to be the following:
55 * int hashCode = getValue();
60 @Override int hashCode();
DoubleEncodedValue.java 49 * Returns a hashcode for this EncodedDoubleValue.
51 * This hashCode is defined to be the following:
56 * int hashCode = (int)(v^(v>>>32));
59 * Note: This is slightly different than the definition of Double.hashCode(). This uses doubleToRawLongBits()
64 @Override int hashCode();

Completed in 569 milliseconds

1 23 4 5 6 7 8 91011>>