Home
last modified time | relevance | path

Searched refs:hashCode (Results 1 – 25 of 34) sorted by relevance

12

/tools/tradefederation/core/src/com/android/tradefed/util/
DPair.java67 public int hashCode() { in hashCode() method in Pair
68 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode()); in hashCode()
DByteArrayList.java227 public int hashCode() { in hashCode() method in ByteArrayList
228 return Arrays.hashCode(mStorage); in hashCode()
DMultiMap.java198 public int hashCode() { in hashCode() method in MultiMap
199 return mInternalMap.hashCode(); in hashCode()
DRegexTrie.java92 public int hashCode() { in hashCode() method in RegexTrie.CompPattern
93 return mPattern.toString().hashCode(); in hashCode()
DListInstrumentationParser.java81 public int hashCode() { in hashCode() method in ListInstrumentationParser.InstrumentationTarget
/tools/apksig/src/main/java/com/android/apksig/internal/util/
DPair.java44 public int hashCode() { in hashCode() method in Pair
47 result = prime * result + ((mFirst == null) ? 0 : mFirst.hashCode()); in hashCode()
48 result = prime * result + ((mSecond == null) ? 0 : mSecond.hashCode()); in hashCode()
DGuaranteedEncodedFormX509Certificate.java58 public int hashCode() { in hashCode() method in GuaranteedEncodedFormX509Certificate
61 mHash = Arrays.hashCode(this.getEncoded()); in hashCode()
/tools/tradefederation/core/src/com/android/tradefed/result/
DTestDescription.java121 public int hashCode() { in hashCode() method in TestDescription
124 result = prime * result + ((mClassName == null) ? 0 : mClassName.hashCode()); in hashCode()
125 result = prime * result + ((mTestName == null) ? 0 : mTestName.hashCode()); in hashCode()
DTestResult.java129 public int hashCode() { in hashCode() method in TestResult
130 return Arrays.hashCode(new Object[] {mMetrics, mStackTrace, mStatus}); in hashCode()
DInvocationToJUnitResultForwarder.java153 public int hashCode() { in hashCode() method in InvocationToJUnitResultForwarder.TestIdentifierResult
154 return mTestId.hashCode(); in hashCode()
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DTextPackageItem.kt54 override fun hashCode(): Int { in hashCode() method
55 return name.hashCode() in hashCode()
DTextFieldItem.kt66 override fun hashCode(): Int = name().hashCode() in hashCode() method
DTextParameterItem.kt68 override fun hashCode(): Int = parameterIndex method
DTextClassItem.kt76 override fun hashCode(): Int { in hashCode() method
77 return qualifiedName.hashCode() in hashCode()
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
DPsiPackageItem.kt108 override fun hashCode(): Int = qualifiedName.hashCode() in hashCode() method
DPsiFieldItem.kt104 override fun hashCode(): Int { in hashCode() method
105 return name.hashCode() in hashCode()
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFat.java409 public int hashCode() { in hashCode() method in Fat
411 hash = 23 * hash + Arrays.hashCode(this.entries); in hashCode()
412 hash = 23 * hash + this.fatType.hashCode(); in hashCode()
DShortName.java225 public int hashCode() { in hashCode() method in ShortName
226 return Arrays.hashCode(this.name); in hashCode()
DClusterChain.java303 public int hashCode() { in hashCode() method in ClusterChain
306 (this.fat != null ? this.fat.hashCode() : 0); in hashCode()
/tools/loganalysis/src/com/android/loganalysis/item/
DGenericItem.java131 public int hashCode() { in hashCode() method in GenericItem
135 result += 37 * (val == null ? 0 : val.hashCode()); in hashCode()
/tools/loganalysis/src/com/android/loganalysis/util/
DRegexTrie.java92 public int hashCode() { in hashCode() method in RegexTrie.CompPattern
93 return mPattern.toString().hashCode(); in hashCode()
/tools/metalava/src/main/java/com/android/tools/metalava/model/
DItem.kt122 override fun hashCode(): Int in isHiddenOrRemoved() method
/tools/tradefederation/core/src/com/android/tradefed/config/
DOptionSetter.java125 public int hashCode() { in hashCode() method in OptionSetter.FieldDef
126 return Objects.hashCode(object, field, key); in hashCode()
1146 public int hashCode() { in hashCode() method in OptionSetter.MapHandler
1147 return Objects.hashCode(MapHandler.class, mKeyHandler, mValueHandler); in hashCode()
1201 public int hashCode() { in hashCode() method in OptionSetter.EnumHandler
1202 return Objects.hashCode(EnumHandler.class, mEnumType); in hashCode()
/tools/apksig/src/main/java/com/android/apksig/
DApkVerifier.java1770 mHashCode = Arrays.hashCode(mArray); in ByteArray()
1774 public int hashCode() { in hashCode() method in ApkVerifier.ByteArray
1790 if (hashCode() != other.hashCode()) { in equals()
/tools/loganalysis/src/com/android/loganalysis/util/config/
DOptionSetter.java892 public int hashCode() { in hashCode() method in OptionSetter.MapHandler
893 return Objects.hashCode(MapHandler.class, mKeyHandler, mValueHandler); in hashCode()
955 public int hashCode() { in hashCode() method in OptionSetter.EnumHandler
956 return Objects.hashCode(EnumHandler.class, mEnumType); in hashCode()

12