Home
last modified time | relevance | path

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

1234

/cts/libs/vogar-expect/src/vogar/
DOutcome.java161 @Override public int hashCode() { in hashCode() method in Outcome
162 int hashCode = 17; in hashCode() local
163 hashCode = 37 * hashCode + outcomeName.hashCode(); in hashCode()
164 hashCode = 37 * hashCode + result.hashCode(); in hashCode()
165 hashCode = 37 * hashCode + output.hashCode(); in hashCode()
166 return hashCode; in hashCode()
/cts/tools/dasm/src/java_cup/
Daction_part.java78 public int hashCode() in hashCode() method in action_part
80 return super.hashCode() ^ in hashCode()
81 (code_string()==null ? 0 : code_string().hashCode()); in hashCode()
Dsymbol_part.java81 public int hashCode() in hashCode() method in symbol_part
83 return super.hashCode() ^ in hashCode()
84 (the_symbol()==null ? 0 : the_symbol().hashCode()); in hashCode()
Dshift_action.java69 public int hashCode() in hashCode() method in shift_action
72 return shift_to().hashCode(); in hashCode()
Dreduce_action.java69 public int hashCode() in hashCode() method in reduce_action
72 return reduce_with().hashCode(); in hashCode()
Dproduction_part.java76 public int hashCode() in hashCode() method in production_part
78 return label()==null ? 0 : label().hashCode(); in hashCode()
/cts/tests/JobScheduler/src/android/jobscheduler/cts/
DTimingConstraintsTest.java28 private static final int TIMING_JOB_ID = TimingConstraintsTest.class.hashCode() + 0;
29 private static final int CANCEL_JOB_ID = TimingConstraintsTest.class.hashCode() + 1;
30 private static final int EXPIRED_JOB_ID = TimingConstraintsTest.class.hashCode() + 2;
31 private static final int UNEXPIRED_JOB_ID = TimingConstraintsTest.class.hashCode() + 3;
/cts/tools/vm-tests-tf/src/util/build/
DJavacBuildStep.java92 public int hashCode() { in hashCode() method in JavacBuildStep
93 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode(); in hashCode()
DJarBuildStep.java83 public int hashCode() { in hashCode() method in JarBuildStep
84 return inputFile.hashCode() ^ outputFile.hashCode() in hashCode()
85 ^ destFileName.hashCode(); in hashCode()
DDxBuildStep.java67 public int hashCode() { in hashCode() method in DxBuildStep
68 return inputFile.hashCode() ^ outputFile.hashCode(); in hashCode()
DDFHBuildStep.java78 public int hashCode() { in hashCode() method in DFHBuildStep
79 return (inputFile == null ? 31 : inputFile.hashCode()) in hashCode()
80 ^ (outputFile == null ? 37 : outputFile.hashCode()); in hashCode()
DJillBuildStep.java92 public int hashCode() { in hashCode() method in JillBuildStep
93 return inputFile.hashCode() ^ outputFile.hashCode(); in hashCode()
DJackBuildStep.java135 public int hashCode() { in hashCode() method in JackBuildStep
136 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode(); in hashCode()
DBuildStep.java50 public int hashCode() { in hashCode() method in BuildStep.BuildFile
51 return fileName.hashCode(); in hashCode()
102 public abstract int hashCode(); in hashCode() method in BuildStep
DJackDexBuildStep.java102 public int hashCode() { in hashCode() method in JackDexBuildStep
103 return inputFile.hashCode() ^ outputFile.hashCode(); in hashCode()
DDasmBuildStep.java171 public int hashCode() { in hashCode() method in DasmBuildStep
172 return inputFile.hashCode() ^ outputFile.hashCode() in hashCode()
/cts/tests/tests/net/src/android/net/wifi/aware/cts/
DTestUtils.java65 public int hashCode() { in hashCode() method in TestUtils.MacWrapper
66 return Arrays.hashCode(mMac); in hashCode()
/cts/tools/dasm/etc/
Djava_cup.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/action_part.class action_part ...
Djava_cup-new.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ java_cup/ ...
Djava_cup.jar.oldMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/action_part.class action_part ...
/cts/apps/CtsVerifier/src/com/android/cts/verifier/jobscheduler/
DConnectivityConstraintTestActivity.java29 ConnectivityConstraintTestActivity.class.hashCode() + 0;
31 ConnectivityConstraintTestActivity.class.hashCode() + 1;
33 ConnectivityConstraintTestActivity.class.hashCode() + 2;
35 ConnectivityConstraintTestActivity.class.hashCode() + 3;
/cts/tests/tests/util/src/android/util/cts/
DHalfTest.java562 assertNotEquals(Half.hashCode(POSITIVE_INFINITY), Half.hashCode(NEGATIVE_INFINITY)); in hashCodeGeneration()
563 assertNotEquals(Half.hashCode(POSITIVE_ZERO), Half.hashCode(NEGATIVE_ZERO)); in hashCodeGeneration()
564 assertNotEquals(Half.hashCode(toHalf(1.999f)), Half.hashCode(toHalf(1.998f))); in hashCodeGeneration()
565 assertEquals(Half.hashCode(NaN), Half.hashCode((short) 0x7c01)); in hashCodeGeneration()
566 assertEquals(Half.hashCode(NaN), Half.hashCode((short) 0xfc98)); in hashCodeGeneration()
568 assertEquals(Half.hashCode(POSITIVE_INFINITY), Half.valueOf(POSITIVE_INFINITY).hashCode()); in hashCodeGeneration()
569 assertEquals(Half.hashCode(NEGATIVE_INFINITY), Half.valueOf(NEGATIVE_INFINITY).hashCode()); in hashCodeGeneration()
570 assertEquals(Half.hashCode(POSITIVE_ZERO), Half.valueOf(POSITIVE_ZERO).hashCode()); in hashCodeGeneration()
571 assertEquals(Half.hashCode(NEGATIVE_ZERO), Half.valueOf(NEGATIVE_ZERO).hashCode()); in hashCodeGeneration()
572 assertEquals(Half.hashCode(NaN), Half.valueOf(NaN).hashCode()); in hashCodeGeneration()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
DStreamingVideoActivity.java90 public int hashCode() { in hashCode() method in StreamingVideoActivity.Stream
91 return name.hashCode() ^ uri.hashCode() ^ code.hashCode(); in hashCode()
/cts/tests/camera/src/android/hardware/camera2/cts/rs/
DScript.java173 public int hashCode() { in hashCode() method in Script.ScriptParameter
174 return mScriptClass.hashCode() ^ mValueClass.hashCode(); in hashCode()
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DCddCoverage.java70 public int hashCode() { in hashCode() method in CddCoverage.CddRequirement
71 return mRequirementId.hashCode(); in hashCode()

1234