Home
last modified time | relevance | path

Searched refs:hashCode (Results 1 – 25 of 76) 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/signature-tools/src/signature/model/impl/
DSigClassReference.java51 public int hashCode() { in hashCode() method in SigClassReference
52 return SigClassReference.hashCode(this); in hashCode()
55 public static int hashCode(IClassReference thiz) { in hashCode() method in SigClassReference
56 return thiz.getClassDefinition().hashCode(); in hashCode()
DSigArrayType.java37 public int hashCode() { in hashCode() method in SigArrayType
38 return SigArrayType.hashCode(this); in hashCode()
41 public static int hashCode(IArrayType type) { in hashCode() method in SigArrayType
42 return type.getComponentType().hashCode(); in hashCode()
DSigWildcardType.java46 public int hashCode() { in hashCode() method in SigWildcardType
47 return SigWildcardType.hashCode(this); in hashCode()
50 public static int hashCode(IWildcardType type) { in hashCode() method in SigWildcardType
55 .hashCode()); in hashCode()
56 result = prime * result + type.getUpperBounds().hashCode(); in hashCode()
DSigParameterizedType.java61 public int hashCode() { in hashCode() method in SigParameterizedType
62 return hashCode(this); in hashCode()
65 public static int hashCode(IParameterizedType type) { in hashCode() method in SigParameterizedType
68 result = prime * type.getRawType().hashCode(); in hashCode()
69 result = prime * result + type.getTypeArguments().hashCode(); in hashCode()
DSigTypeVariableReference.java48 public int hashCode() { in hashCode() method in SigTypeVariableReference
49 return getTypeVariableDefinition().hashCode(); in hashCode()
DSigClassDefinition.java175 public int hashCode() { in hashCode() method in SigClassDefinition
176 return SigClassDefinition.hashCode(this); in hashCode()
179 public static int hashCode(IClassDefinition definition) { in hashCode() method in SigClassDefinition
188 .hashCode()); in hashCode()
192 .getPackageName().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/tools/vm-tests-tf/src/util/build/
DJavacBuildStep.java87 public int hashCode() { in hashCode() method in JavacBuildStep
88 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode(); in hashCode()
DJackBuildStep.java90 public int hashCode() { in hashCode() method in JackBuildStep
91 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()
DJillBuildStep.java72 public int hashCode() { in hashCode() method in JillBuildStep
73 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()
DJackDexBuildStep.java80 public int hashCode() { in hashCode() method in JackDexBuildStep
81 return inputFile.hashCode() ^ outputFile.hashCode(); in hashCode()
DBuildStep.java46 public int hashCode() { in hashCode() method in BuildStep.BuildFile
47 return fileName.hashCode(); in hashCode()
97 public abstract int hashCode(); in hashCode() method in BuildStep
/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/signature-tools/src/signature/converter/dex/
DFieldPool.java45 public int hashCode() { in hashCode() method in FieldPool.FieldKey
47 int result = prime * fieldName.hashCode(); in hashCode()
48 result = prime * result + qualifiedClassName.hashCode(); in hashCode()
/cts/tools/signature-tools/src/signature/compare/model/subst/
DArrayTypeProjection.java43 public int hashCode() { in hashCode() method in ArrayTypeProjection
44 return SigArrayType.hashCode(this); in hashCode()
DClassReferenceProjection.java48 public int hashCode() { in hashCode() method in ClassReferenceProjection
49 return SigClassReference.hashCode(this); in hashCode()
DWildcardTypeProjection.java50 public int hashCode() { in hashCode() method in WildcardTypeProjection
51 return SigWildcardType.hashCode(this); in hashCode()

1234