Searched refs:hashCode (Results 1 - 25 of 64) sorted by relevance

123

/cts/tools/dasm/src/java_cup/
H A Daction_part.java78 public int hashCode() method in class:action_part
80 return super.hashCode() ^
81 (code_string()==null ? 0 : code_string().hashCode());
H A Dsymbol_part.java81 public int hashCode() method in class:symbol_part
83 return super.hashCode() ^
84 (the_symbol()==null ? 0 : the_symbol().hashCode());
H A Dproduction_part.java76 public int hashCode() method in class:production_part
78 return label()==null ? 0 : label().hashCode();
H A Dreduce_action.java69 public int hashCode() method in class:reduce_action
72 return reduce_with().hashCode();
H A Dshift_action.java69 public int hashCode() method in class:shift_action
72 return shift_to().hashCode();
H A Dparse_action.java74 public int hashCode() method in class:parse_action
H A Dlalr_item.java290 public int hashCode() method in class:lalr_item
292 return super.hashCode();
303 // result += "(" + hashCode() + ")";
322 // result += propagate_items().elementAt(i).hashCode() + " ";
/cts/libs/vogar-expect/src/vogar/
H A DOutcome.java161 @Override public int hashCode() { method in class:Outcome
162 int hashCode = 17;
163 hashCode = 37 * hashCode + outcomeName.hashCode();
164 hashCode = 37 * hashCode + result.hashCode();
165 hashCode = 37 * hashCode
[all...]
/cts/tests/JobScheduler/src/android/jobscheduler/cts/
H A 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/tests/tests/jni/src/android/jni/cts/
H A DClassLoaderHelper.java41 return ClassLoaderStaticNonce.class.hashCode();
/cts/tools/vm-tests-tf/src/util/build/
H A DJarBuildStep.java83 public int hashCode() { method in class:JarBuildStep
84 return inputFile.hashCode() ^ outputFile.hashCode()
85 ^ destFileName.hashCode();
H A DJavacBuildStep.java92 public int hashCode() { method in class:JavacBuildStep
93 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode();
H A DDFHBuildStep.java78 public int hashCode() { method in class:DFHBuildStep
79 return (inputFile == null ? 31 : inputFile.hashCode())
80 ^ (outputFile == null ? 37 : outputFile.hashCode());
H A DDxBuildStep.java67 public int hashCode() { method in class:DxBuildStep
68 return inputFile.hashCode() ^ outputFile.hashCode();
H A DJillBuildStep.java92 public int hashCode() { method in class:JillBuildStep
93 return inputFile.hashCode() ^ outputFile.hashCode();
H A DJackBuildStep.java135 public int hashCode() { method in class:JackBuildStep
136 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode();
H A DBuildStep.java50 public int hashCode() { method in class:BuildStep.BuildFile
51 return fileName.hashCode();
102 public abstract int hashCode(); method in class:BuildStep
H A DJackDexBuildStep.java102 public int hashCode() { method in class:JackDexBuildStep
103 return inputFile.hashCode() ^ outputFile.hashCode();
H A DDasmBuildStep.java171 public int hashCode() { method in class:DasmBuildStep
172 return inputFile.hashCode() ^ outputFile.hashCode()
/cts/tests/tests/graphics/src/android/graphics/cts/
H A DPointTest.java70 assertTrue(p.hashCode() != mPoint.hashCode());
/cts/apps/CtsVerifier/src/com/android/cts/verifier/jobscheduler/
H A DConnectivityConstraintTestActivity.java29 ConnectivityConstraintTestActivity.class.hashCode() + 0;
31 ConnectivityConstraintTestActivity.class.hashCode() + 1;
33 ConnectivityConstraintTestActivity.class.hashCode() + 2;
35 ConnectivityConstraintTestActivity.class.hashCode() + 3;
/cts/tests/camera/src/android/hardware/camera2/cts/rs/
H A DScript.java173 public int hashCode() { method in class:Script.ScriptParameter
174 return mScriptClass.hashCode() ^ mValueClass.hashCode();
/cts/tools/dasm/etc/
H A Djava_cup-new.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ java_cup/runtime/symbol.class symbol. ...
H A Djava_cup.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/action_part.class action_part.java package java_cup ...
H A Djava_cup.jar.oldMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/action_part.class action_part.java package java_cup ...

Completed in 337 milliseconds

123