Home
last modified time | relevance | path

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

123

/tools/tradefederation/core/test_result_interfaces/com/android/tradefed/result/
DFailureDescription.java175 public int hashCode() { in hashCode() method in FailureDescription
178 result = prime * result + ((mActionInProgress == null) ? 0 : mActionInProgress.hashCode()); in hashCode()
179 result = prime * result + ((mDebugHelpMessage == null) ? 0 : mDebugHelpMessage.hashCode()); in hashCode()
180 result = prime * result + ((mErrorMessage == null) ? 0 : mErrorMessage.hashCode()); in hashCode()
181 result = prime * result + ((mFailureStatus == null) ? 0 : mFailureStatus.hashCode()); in hashCode()
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()
/tools/tradefederation/core/src/com/android/tradefed/config/
DOptionSetter.java131 public int hashCode() { in hashCode() method in OptionSetter.FieldDef
132 return Objects.hashCode(object, field, key); in hashCode()
1197 public int hashCode() { in hashCode() method in OptionSetter.MapHandler
1198 return Objects.hashCode(MapHandler.class, mKeyHandler, mValueHandler); in hashCode()
1252 public int hashCode() { in hashCode() method in OptionSetter.EnumHandler
1253 return Objects.hashCode(EnumHandler.class, mEnumType); in hashCode()
DConfigurationFactory.java112 public int hashCode() { in hashCode() method in ConfigurationFactory.ConfigId
113 return 2 * ((name == null) ? 0 : name.hashCode()) + 3 * templateMap.hashCode(); in hashCode()
/tools/tradefederation/core/test_framework/com/android/tradefed/util/statsd/
DConfigUtil.java94 long configId = UUID.randomUUID().hashCode(); in pushBinaryStatsConfig()
148 long configId = UUID.randomUUID().hashCode(); in generateStatsdConfig()
155 long atomMatcherId = UUID.randomUUID().hashCode(); in generateStatsdConfig()
156 long eventMatcherId = UUID.randomUUID().hashCode(); in generateStatsdConfig()
/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()
/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/apksig/src/main/java/com/android/apksig/
DApkVerifier.java1794 mHashCode = Arrays.hashCode(mArray); in ByteArray()
1798 public int hashCode() { in hashCode() method in ApkVerifier.ByteArray
1814 if (hashCode() != other.hashCode()) { in equals()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/io/
DDataSlice.kt54 && hashCode() != other.hashCode()) return false in equals()
69 override fun hashCode(): Int { in hashCode() method in trebuchet.io.DataSlice
/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()
/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()
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DTextPropertyItem.kt47 override fun hashCode(): Int = name().hashCode() method
DTextPackageItem.kt65 override fun hashCode(): Int { in hashCode() method
66 return name.hashCode() in hashCode()
DTextFieldItem.kt48 override fun hashCode(): Int = name().hashCode() in hashCode() method
/tools/tradefederation/core/src/com/android/tradefed/util/testmapping/
DTestOption.java83 public int hashCode() { in hashCode() method in TestOption
84 return this.toString().hashCode(); in hashCode()
/tools/tradefederation/core/common_util/com/android/tradefed/testtype/
DAbi.java82 public int hashCode() { in hashCode() method in Abi
83 return Objects.hashCode(mName, mBitness); in hashCode()
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
DPsiPropertyItem.kt67 override fun hashCode(): Int { in hashCode() method
68 return name.hashCode() in hashCode()
DPsiFieldItem.kt109 override fun hashCode(): Int { in hashCode() method
110 return name.hashCode() in hashCode()
DPsiPackageItem.kt111 override fun hashCode(): Int = qualifiedName.hashCode() in hashCode() method
/tools/tradefederation/core/common_util/com/android/tradefed/util/
DByteArrayList.java227 public int hashCode() { in hashCode() method in ByteArrayList
228 return Arrays.hashCode(mStorage); in hashCode()
DMultiMap.java229 public int hashCode() { in hashCode() method in MultiMap
230 return mInternalMap.hashCode(); in hashCode()
/tools/tradefederation/core/src/com/android/tradefed/result/
DInvocationToJUnitResultForwarder.java159 public int hashCode() { in hashCode() method in InvocationToJUnitResultForwarder.TestIdentifierResult
160 return mTestId.hashCode(); in hashCode()
/tools/tradefederation/core/common_util/com/android/tradefed/util/zip/
DCentralDirectoryInfo.java269 public int hashCode() { in hashCode() method in CentralDirectoryInfo
270 return this.toString().hashCode(); 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()

123