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

<<11121314151617181920>>

  /frameworks/base/core/tests/coretests/src/android/app/servertransaction/
TransactionParcelTests.java 86 assertEquals(item.hashCode(), result.hashCode());
100 assertEquals(item.hashCode(), result.hashCode());
113 assertEquals(item.hashCode(), result.hashCode());
126 assertEquals(item.hashCode(), result.hashCode());
139 assertEquals(item.hashCode(), result.hashCode());
    [all...]
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
TransferOwnershipMetadataManager.java 220 public int hashCode() {
221 int hashCode = 1;
222 hashCode = 31 * hashCode + userId;
223 hashCode = 31 * hashCode + sourceComponent.hashCode();
224 hashCode = 31 * hashCode + targetComponent.hashCode();
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetReadsTester.java 70 0, getMultiset().entrySet().hashCode());
76 1 ^ samples.e0.hashCode(), getMultiset().entrySet().hashCode());
103 0, getMultiset().hashCode());
109 1 ^ samples.e0.hashCode(), getMultiset().hashCode());
  /external/guava/guava-tests/test/com/google/common/hash/
HashCodeTest.java 31 * Unit tests for {@link HashCode}.
69 HashCode fromInt = HashCode.fromInt(expected.asInt);
79 HashCode fromLong = HashCode.fromLong(expected.asLong);
87 HashCode fromBytes = HashCode.fromBytes(expected.bytes);
94 HashCode hashCode = HashCode.fromBytes(bytes)
    [all...]
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
ManifestIdentifier.java 89 public int hashCode() {
90 int result = manifestFile != null ? manifestFile.hashCode() : 0;
91 result = 31 * result + (resDir != null ? resDir.hashCode() : 0);
92 result = 31 * result + (assetDir != null ? assetDir.hashCode() : 0);
93 result = 31 * result + (packageName != null ? packageName.hashCode() : 0);
94 result = 31 * result + (libraries != null ? libraries.hashCode() : 0);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
TypeListPool.java 89 public int hashCode() {
90 int hashCode = 1;
92 hashCode = hashCode*31 + type.toString().hashCode();
94 return hashCode;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/
BigJavaBean.java 77 public int hashCode() {
80 result = prime * result + ((address == null) ? 0 : address.hashCode());
81 result = prime * result + ((data == null) ? 0 : data.hashCode());
82 result = prime * result + ((description == null) ? 0 : description.hashCode());
84 result = prime * result + ((name == null) ? 0 : name.hashCode());
85 result = prime * result + ((numbers == null) ? 0 : numbers.hashCode());
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedCharacterIteratorAttributeTest.java 115 * java.text.AttributedCharacterIterator.Attribute#hashCode()
125 .hashCode() != mac2.hashCode());
131 .hashCode() != mac3.hashCode());
136 mac1.hashCode() == mac4.hashCode());
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
CommonNicknameCache.java 80 int hashCode = normalizedName.hashCode();
81 mNicknameBloomFilter.set(hashCode & NICKNAME_BLOOM_FILTER_SIZE);
99 int hashCode = normalizedName.hashCode();
100 if (!mNicknameBloomFilter.get(hashCode & NICKNAME_BLOOM_FILTER_SIZE)) {
  /external/guice/core/src/com/google/inject/matcher/
Matchers.java 85 @Override public int hashCode() {
86 return -delegate.hashCode();
130 @Override public int hashCode() {
131 return 37 * annotationType.hashCode();
169 @Override public int hashCode() {
170 return 37 * annotation.hashCode();
205 @Override public int hashCode() {
206 return 37 * superclass.hashCode();
240 @Override public int hashCode() {
241 return 37 * value.hashCode();
    [all...]
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/model/
WorkSpec.java 267 public int hashCode() {
268 int result = id.hashCode();
269 result = 31 * result + state.hashCode();
270 result = 31 * result + workerClassName.hashCode();
271 result = 31 * result + (inputMergerClassName != null ? inputMergerClassName.hashCode() : 0);
272 result = 31 * result + input.hashCode();
273 result = 31 * result + output.hashCode();
277 result = 31 * result + constraints.hashCode();
279 result = 31 * result + backoffPolicy.hashCode();
315 public int hashCode() {
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionData.java 221 public int hashCode() {
224 result = prime * result + ((mFormat == null) ? 0 : mFormat.hashCode());
225 result = prime * result + ((mIcon1 == null) ? 0 : mIcon1.hashCode());
226 result = prime * result + ((mIcon2 == null) ? 0 : mIcon2.hashCode());
227 result = prime * result + ((mIntentAction == null) ? 0 : mIntentAction.hashCode());
228 result = prime * result + ((mIntentData == null) ? 0 : mIntentData.hashCode());
229 result = prime * result + ((mIntentExtraData == null) ? 0 : mIntentExtraData.hashCode());
230 result = prime * result + ((mLogType == null) ? 0 : mLogType.hashCode());
231 result = prime * result + ((mShortcutId == null) ? 0 : mShortcutId.hashCode());
232 result = prime * result + ((mSource == null) ? 0 : mSource.hashCode());
    [all...]
  /art/test/522-checker-regression-monitor-exit/smali/
Test.smali 32 invoke-virtual {p0}, Ljava/lang/Object;->hashCode()I
  /cts/hostsidetests/api/src/com/android/cts/api/
DefinedField.java 58 public int hashCode() {
59 return getFullSignature().hashCode();
DefinedMethod.java 58 public int hashCode() {
59 return getFullSignature().hashCode();
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstAnnotation.java 55 public int hashCode() {
56 return annotation.hashCode();
CstString.java 63 public int hashCode() {
64 return string.hashCode();
  /dalvik/dx/src/com/android/dx/rop/cst/
CstAnnotation.java 55 public int hashCode() {
56 return annotation.hashCode();
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
PicassoBackgroundManagerTarget.java 64 public int hashCode() {
65 return mBackgroundManager.hashCode();
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
PicassoBackgroundManagerTarget.java 67 public int hashCode() {
68 return mBackgroundManager.hashCode();
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
Item.java 59 return mName.hashCode() + mFileName.hashCode();
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
Item.java 59 return mName.hashCode() + mFileName.hashCode();
  /development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
Item.java 59 return mName.hashCode() + mFileName.hashCode();
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
DataflowValue.java 89 public int hashCode() {
90 return insns.hashCode();
IntMap.java 53 int h = (key.hashCode() & 0x7FFFFFFF) % n;
66 int i = (key.hashCode() & 0x7FFFFFFF) % n;

Completed in 678 milliseconds

<<11121314151617181920>>