Searched refs:hashCode (Results 1 - 25 of 53) 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
/cts/tools/signature-tools/src/signature/model/impl/
H A DSigArrayType.java37 public int hashCode() { method in class:SigArrayType
38 return SigArrayType.hashCode(this);
41 public static int hashCode(IArrayType type) { method in class:SigArrayType
42 return type.getComponentType().hashCode();
H A DSigClassReference.java51 public int hashCode() { method in class:SigClassReference
52 return SigClassReference.hashCode(this);
55 public static int hashCode(IClassReference thiz) { method in class:SigClassReference
56 return thiz.getClassDefinition().hashCode();
H A DSigTypeVariableReference.java48 public int hashCode() { method in class:SigTypeVariableReference
49 return getTypeVariableDefinition().hashCode();
H A DSigWildcardType.java46 public int hashCode() { method in class:SigWildcardType
47 return SigWildcardType.hashCode(this);
50 public static int hashCode(IWildcardType type) { method in class:SigWildcardType
55 .hashCode());
56 result = prime * result + type.getUpperBounds().hashCode();
H A DSigParameterizedType.java61 public int hashCode() { method in class:SigParameterizedType
62 return hashCode(this);
65 public static int hashCode(IParameterizedType type) { method in class:SigParameterizedType
68 result = prime * type.getRawType().hashCode();
69 result = prime * result + type.getTypeArguments().hashCode();
H A DSigClassDefinition.java175 public int hashCode() { method in class:SigClassDefinition
176 return SigClassDefinition.hashCode(this);
179 public static int hashCode(IClassDefinition definition) { method in class:SigClassDefinition
183 // return definition.getQualifiedName().hashCode();
188 .hashCode());
192 .getPackageName().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/tools/vm-tests-tf/src/util/build/
H A DJavacBuildStep.java88 public int hashCode() { method in class:JavacBuildStep
89 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode();
H A DJarBuildStep.java83 public int hashCode() { method in class:JarBuildStep
84 return inputFile.hashCode() ^ outputFile.hashCode()
85 ^ destFileName.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 DDexBuildStep.java67 public int hashCode() { method in class:DexBuildStep
68 return inputFile.hashCode() ^ outputFile.hashCode();
H A DBuildStep.java46 public int hashCode() { method in class:BuildStep.BuildFile
47 return fileName.hashCode();
97 public abstract int hashCode(); method in class:BuildStep
/cts/tools/signature-tools/src/signature/compare/model/subst/
H A DArrayTypeProjection.java43 public int hashCode() { method in class:ArrayTypeProjection
44 return SigArrayType.hashCode(this);
H A DClassReferenceProjection.java48 public int hashCode() { method in class:ClassReferenceProjection
49 return SigClassReference.hashCode(this);
H A DWildcardTypeProjection.java50 public int hashCode() { method in class:WildcardTypeProjection
51 return SigWildcardType.hashCode(this);
H A DParameterizedTypeProjection.java76 public int hashCode() { method in class:ParameterizedTypeProjection
77 return SigParameterizedType.hashCode(this);
/cts/tools/signature-tools/src/signature/converter/dex/
H A DFieldPool.java45 public int hashCode() { method in class:FieldPool.FieldKey
47 int result = prime * fieldName.hashCode();
48 result = prime * result + qualifiedClassName.hashCode();
/cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
H A DStreamingVideoActivity.java78 public int hashCode() { method in class:StreamingVideoActivity.Stream
79 return name.hashCode() ^ uri.hashCode() ^ code.hashCode();
/cts/tests/tests/graphics/src/android/graphics/cts/
H A DPointTest.java70 assertTrue(p.hashCode() != mPoint.hashCode());

Completed in 210 milliseconds

123