/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | Pair.java | 67 public int hashCode() { in hashCode() method in Pair 68 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode()); in hashCode()
|
D | ByteArrayList.java | 227 public int hashCode() { in hashCode() method in ByteArrayList 228 return Arrays.hashCode(mStorage); in hashCode()
|
D | MultiMap.java | 198 public int hashCode() { in hashCode() method in MultiMap 199 return mInternalMap.hashCode(); in hashCode()
|
D | RegexTrie.java | 92 public int hashCode() { in hashCode() method in RegexTrie.CompPattern 93 return mPattern.toString().hashCode(); in hashCode()
|
D | ListInstrumentationParser.java | 81 public int hashCode() { in hashCode() method in ListInstrumentationParser.InstrumentationTarget
|
/tools/apksig/src/main/java/com/android/apksig/internal/util/ |
D | Pair.java | 44 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()
|
D | GuaranteedEncodedFormX509Certificate.java | 58 public int hashCode() { in hashCode() method in GuaranteedEncodedFormX509Certificate 61 mHash = Arrays.hashCode(this.getEncoded()); in hashCode()
|
/tools/tradefederation/core/src/com/android/tradefed/result/ |
D | TestDescription.java | 121 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()
|
D | TestResult.java | 129 public int hashCode() { in hashCode() method in TestResult 130 return Arrays.hashCode(new Object[] {mMetrics, mStackTrace, mStatus}); in hashCode()
|
D | InvocationToJUnitResultForwarder.java | 153 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/ |
D | TextPackageItem.kt | 54 override fun hashCode(): Int { in hashCode() method 55 return name.hashCode() in hashCode()
|
D | TextFieldItem.kt | 66 override fun hashCode(): Int = name().hashCode() in hashCode() method
|
D | TextParameterItem.kt | 68 override fun hashCode(): Int = parameterIndex method
|
D | TextClassItem.kt | 76 override fun hashCode(): Int { in hashCode() method 77 return qualifiedName.hashCode() in hashCode()
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/ |
D | PsiPackageItem.kt | 108 override fun hashCode(): Int = qualifiedName.hashCode() in hashCode() method
|
D | PsiFieldItem.kt | 104 override fun hashCode(): Int { in hashCode() method 105 return name.hashCode() in hashCode()
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
D | Fat.java | 409 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()
|
D | ShortName.java | 225 public int hashCode() { in hashCode() method in ShortName 226 return Arrays.hashCode(this.name); in hashCode()
|
D | ClusterChain.java | 303 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/ |
D | GenericItem.java | 131 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/ |
D | RegexTrie.java | 92 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/ |
D | Item.kt | 122 override fun hashCode(): Int in isHiddenOrRemoved() method
|
/tools/tradefederation/core/src/com/android/tradefed/config/ |
D | OptionSetter.java | 125 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/ |
D | ApkVerifier.java | 1770 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/ |
D | OptionSetter.java | 892 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()
|