/cts/libs/vogar-expect/src/vogar/ |
D | Outcome.java | 161 @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/ |
D | SigClassReference.java | 51 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()
|
D | SigArrayType.java | 37 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()
|
D | SigWildcardType.java | 46 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()
|
D | SigParameterizedType.java | 61 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()
|
D | SigTypeVariableReference.java | 48 public int hashCode() { in hashCode() method in SigTypeVariableReference 49 return getTypeVariableDefinition().hashCode(); in hashCode()
|
D | SigClassDefinition.java | 175 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/ |
D | action_part.java | 78 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()
|
D | symbol_part.java | 81 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()
|
D | shift_action.java | 69 public int hashCode() in hashCode() method in shift_action 72 return shift_to().hashCode(); in hashCode()
|
D | reduce_action.java | 69 public int hashCode() in hashCode() method in reduce_action 72 return reduce_with().hashCode(); in hashCode()
|
D | production_part.java | 76 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/ |
D | JavacBuildStep.java | 87 public int hashCode() { in hashCode() method in JavacBuildStep 88 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode(); in hashCode()
|
D | JackBuildStep.java | 90 public int hashCode() { in hashCode() method in JackBuildStep 91 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode(); in hashCode()
|
D | JarBuildStep.java | 83 public int hashCode() { in hashCode() method in JarBuildStep 84 return inputFile.hashCode() ^ outputFile.hashCode() in hashCode() 85 ^ destFileName.hashCode(); in hashCode()
|
D | DxBuildStep.java | 67 public int hashCode() { in hashCode() method in DxBuildStep 68 return inputFile.hashCode() ^ outputFile.hashCode(); in hashCode()
|
D | JillBuildStep.java | 72 public int hashCode() { in hashCode() method in JillBuildStep 73 return inputFile.hashCode() ^ outputFile.hashCode(); in hashCode()
|
D | DFHBuildStep.java | 78 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()
|
D | JackDexBuildStep.java | 80 public int hashCode() { in hashCode() method in JackDexBuildStep 81 return inputFile.hashCode() ^ outputFile.hashCode(); in hashCode()
|
D | BuildStep.java | 46 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/ |
D | TimingConstraintsTest.java | 28 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/ |
D | FieldPool.java | 45 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/ |
D | ArrayTypeProjection.java | 43 public int hashCode() { in hashCode() method in ArrayTypeProjection 44 return SigArrayType.hashCode(this); in hashCode()
|
D | ClassReferenceProjection.java | 48 public int hashCode() { in hashCode() method in ClassReferenceProjection 49 return SigClassReference.hashCode(this); in hashCode()
|
D | WildcardTypeProjection.java | 50 public int hashCode() { in hashCode() method in WildcardTypeProjection 51 return SigWildcardType.hashCode(this); in hashCode()
|