Home
last modified time | relevance | path

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

123

/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()
Dreduce_action.java69 public int hashCode() in hashCode() method in reduce_action
72 return reduce_with().hashCode(); in hashCode()
Dshift_action.java69 public int hashCode() in hashCode() method in shift_action
72 return shift_to().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/tools/dasm/etc/
Djava_cup-new.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ java_cup/ ...
Djava_cup.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/action_part.class action_part ...
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/graphics/src/android/graphics/cts/
DPointTest.java70 assertTrue(p.hashCode() != mPoint.hashCode()); in testHashCode()
/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/tests/util/src/android/util/cts/
DArrayMapTest.java107 public final int hashCode() { in hashCode() method in ArrayMapTest.ControlledHash
173 if (map.entrySet().hashCode() != array.entrySet().hashCode()) { in compareMaps()
175 + Integer.toHexString(map.entrySet().hashCode()) + " array=0x" in compareMaps()
176 + Integer.toHexString(array.entrySet().hashCode())); in compareMaps()
187 if (map.keySet().hashCode() != array.keySet().hashCode()) { in compareMaps()
189 + Integer.toHexString(map.keySet().hashCode()) + " array=0x" in compareMaps()
190 + Integer.toHexString(array.keySet().hashCode())); in compareMaps()
/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/tests/tests/content/src/android/content/cts/
DContentValuesTest.java152 assertEquals(0, mContentValues.hashCode()); in testHashCode()
156 assertTrue(0 != mContentValues.hashCode()); in testHashCode()
158 int hashcode = mContentValues.hashCode(); in testHashCode()
160 assertTrue(hashcode != mContentValues.hashCode()); in testHashCode()
163 assertTrue(hashcode == mContentValues.hashCode()); in testHashCode()
166 assertEquals(0, mContentValues.hashCode()); in testHashCode()

123