Home
last modified time | relevance | path

Searched refs:hashCode (Results 1 – 25 of 49) 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()
/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/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/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/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/testmapping/
DTestOption.java83 public int hashCode() { in hashCode() method in TestOption
84 return this.toString().hashCode(); in hashCode()
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DTextPropertyItem.kt49 override fun hashCode(): Int = name().hashCode() method
DTextPackageItem.kt67 override fun hashCode(): Int { in hashCode() method
68 return name.hashCode() in hashCode()
DTextFieldItem.kt50 override fun hashCode(): Int = name().hashCode() in hashCode() method
DTextMethodItem.kt77 override fun hashCode(): Int { in hashCode() method
78 return name().hashCode() in hashCode()
DTextParameterItem.kt63 override fun hashCode(): Int = parameterIndex method
/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/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()
/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/platform-compat/java/android/processor/compat/
DSourcePosition.java72 public int hashCode() { in hashCode() method in SourcePosition

12