HomeSort by relevance Sort by last modified time
    Searched refs:hashCode (Results 401 - 425 of 6226) sorted by null

<<11121314151617181920>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/reference/
MethodProtoReference.java 57 * Returns a hashcode for this MethodProtoReference.
59 * This hashCode is defined to be the following:
63 * int hashCode = getReturnType().hashCode();
64 * hashCode = hashCode*31 + CharSequenceUtils.listHashCode(getParameters());
69 @Override int hashCode();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
EnumEncodedValue.java 53 * Returns a hashcode for this EncodedEnumValue.
55 * This hashCode is defined to be the following:
59 * int hashCode = getValue.hashCode();
64 @Override int hashCode();
FieldEncodedValue.java 51 * Returns a hashcode for this EncodedFieldValue.
53 * This hashCode is defined to be the following:
57 * int hashCode = getValue.hashCode();
62 @Override int hashCode();
MethodEncodedValue.java 51 * Returns a hashcode for this EncodedMethodValue.
53 * This hashCode is defined to be the following:
57 * int hashCode = getValue.hashCode();
62 @Override int hashCode();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue38/
Bean.java 34 public int hashCode() {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue48/
Bean.java 39 public int hashCode() {
  /frameworks/base/core/java/android/hardware/display/
DisplayViewport.java 101 public int hashCode() {
107 result += prime * result + logicalFrame.hashCode();
108 result += prime * result + physicalFrame.hashCode();
111 result += prime * result + uniqueId.hashCode();
  /frameworks/base/media/java/android/media/
AudioHandle.java 46 public int hashCode() {
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLDisplayImpl.java 40 public int hashCode() {
  /frameworks/base/sax/java/android/sax/
Children.java 31 int hash = uri.hashCode() * 31 + localName.hashCode();
66 int hash = uri.hashCode() * 31 + localName.hashCode();
  /libcore/luni/src/main/java/libcore/reflect/
ParameterizedTypeImpl.java 94 public int hashCode() {
95 return 31 * (31 * Objects.hashCode(getRawType()) + Objects.hashCode(getOwnerType())) +
96 Arrays.hashCode(args.getResolvedTypes());
  /libcore/luni/src/test/java/libcore/java/lang/
BooleanTest.java 38 assertEquals(Boolean.TRUE.hashCode(), Boolean.hashCode(true));
39 assertEquals(Boolean.FALSE.hashCode(), Boolean.hashCode(false));
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldAttributesTest.java 71 assertNotSame(a.hashCode(), b.hashCode());
74 assertNotSame(a.hashCode(), b.hashCode());
  /libcore/ojluni/src/main/java/java/lang/
StackTraceElement.java 229 public int hashCode() {
230 int result = 31*declaringClass.hashCode() + methodName.hashCode();
231 result = 31*result + Objects.hashCode(fileName);
  /libcore/ojluni/src/main/java/java/security/spec/
EllipticCurve.java 188 * (field.hashCode() << 6) + (a.hashCode() << 4) + (b.hashCode() << 2)
191 public int hashCode() {
192 return (field.hashCode() << 6 +
193 (a.hashCode() << 4) +
194 (b.hashCode() << 2));
  /libcore/ojluni/src/main/java/java/text/
StringCharacterIterator.java 247 if (hashCode() != that.hashCode())
257 * Computes a hashcode for this iterator.
260 public int hashCode()
262 return text.hashCode() ^ pos ^ begin ^ end;
  /packages/apps/TV/common/src/com/android/tv/common/feature/
GServiceFeature.java 41 return "GService[hash=" + mKey.hashCode() + "]";
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AccountWithDataSet.java 80 public int hashCode() {
81 int result = mAccountName != null ? mAccountName.hashCode() : 0;
82 result = 31 * result + (mAccountType != null ? mAccountType.hashCode() : 0);
83 result = 31 * result + (mDataSet != null ? mDataSet.hashCode() : 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleAttribute.java 113 public int hashCode() {
114 long c = mName.hashCode();
115 // uses the formula defined in java.util.List.hashCode()
116 c = 31*c + mUri.hashCode();
117 c = 31*c + mValue.hashCode();
  /art/test/596-monitor-inflation/src-art/
Main.java 28 all.put(obj, obj.hashCode());
59 if (obj.hashCode() != all.get(obj)) {
60 throw new AssertionError("Failed hashcode test!");
67 if (obj.hashCode() != all.get(obj)) {
68 throw new AssertionError("Failed hashcode test!");
  /cts/tools/vm-tests-tf/src/util/build/
DFHBuildStep.java 78 public int hashCode() {
79 return (inputFile == null ? 31 : inputFile.hashCode())
80 ^ (outputFile == null ? 37 : outputFile.hashCode());
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
NameValuePair.java 63 public int hashCode() {
64 return name.hashCode() * 31 + value.hashCode();
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
LocalItem.java 108 public int hashCode() {
109 return (name == null ? 0 : name.hashCode()) * 31
110 + (signature == null ? 0 : signature.hashCode());
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstMemberRef.java 62 public final int hashCode() {
63 return (definingClass.hashCode() * 31) ^ nat.hashCode();
CstNat.java 73 public int hashCode() {
74 return (name.hashCode() * 31) ^ descriptor.hashCode();

Completed in 1014 milliseconds

<<11121314151617181920>>