Searched defs:hashCode (Results 126 - 150 of 794) sorted by last modified time

1234567891011>>

/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/DataEntryWriterFactory.class DataEntryWriterFactory.java package proguard public ...
H A Dproguardgui.jarMETA-INF/ META-INF/MANIFEST.MF proguard/gui/OptimizationsDialog$3.class OptimizationsDialog.java ...
/external/proguard/src/proguard/
H A DClassSpecification.java234 public int hashCode() method in class:ClassSpecification
237 // (comments == null ? 0 : comments.hashCode() ) ^
240 (annotationType == null ? 0 : annotationType.hashCode() ) ^
241 (className == null ? 0 : className.hashCode() ) ^
242 (extendsAnnotationType == null ? 0 : extendsAnnotationType.hashCode()) ^
243 (extendsClassName == null ? 0 : extendsClassName.hashCode() ) ^
244 (fieldSpecifications == null ? 0 : fieldSpecifications.hashCode() ) ^
245 (methodSpecifications == null ? 0 : methodSpecifications.hashCode() );
H A DKeepClassSpecification.java115 public int hashCode() method in class:KeepClassSpecification
123 super.hashCode();
H A DMemberSpecification.java105 public int hashCode() method in class:MemberSpecification
110 (annotationType == null ? 0 : annotationType.hashCode()) ^
111 (name == null ? 0 : name.hashCode() ) ^
112 (descriptor == null ? 0 : descriptor.hashCode() );
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DFullFrame.java162 public int hashCode() method in class:FullFrame
164 int hashCode = super.hashCode();
168 hashCode ^= variables[index].hashCode();
173 hashCode ^= stack[index].hashCode();
176 return hashCode;
H A DLessZeroFrame.java93 public int hashCode() method in class:LessZeroFrame
95 return super.hashCode() ^ choppedVariablesCount;
H A DMoreZeroFrame.java133 public int hashCode() method in class:MoreZeroFrame
135 int hashCode = super.hashCode();
139 hashCode ^= additionalVariables[index].hashCode();
142 return hashCode;
H A DObjectType.java96 public int hashCode() method in class:ObjectType
98 return super.hashCode() ^
H A DSameOneFrame.java105 public int hashCode() method in class:SameOneFrame
107 return super.hashCode() ^ stackItem.hashCode();
H A DStackMapFrame.java106 public int hashCode() method in class:StackMapFrame
108 return getClass().hashCode() ^
H A DUninitializedType.java95 public int hashCode() method in class:UninitializedType
97 return super.hashCode() ^
H A DVerificationType.java99 public int hashCode() method in class:VerificationType
101 return this.getClass().hashCode();
/external/proguard/src/proguard/classfile/editor/
H A DComparableConstant.java245 public int hashCode() method in class:ComparableConstant
247 return this.getClass().hashCode();
/external/proguard/src/proguard/evaluation/
H A DStack.java529 public int hashCode() method in class:Stack
531 int hashCode = currentSize;
538 hashCode ^= value.hashCode();
542 return hashCode;
H A DTracedStack.java305 public int hashCode() method in class:TracedStack
307 return super.hashCode() ^
308 producerStack.hashCode();
H A DTracedVariables.java176 public int hashCode() method in class:TracedVariables
178 return super.hashCode() ^
179 producerVariables.hashCode();
H A DVariables.java316 public int hashCode() method in class:Variables
318 int hashCode = size;
325 hashCode ^= value.hashCode();
329 return hashCode;
/external/proguard/src/proguard/evaluation/value/
H A DComparisonValue.java57 public int hashCode() method in class:ComparisonValue
59 return super.hashCode() ^
60 value1.hashCode() ^
61 value2.hashCode();
H A DCompositeDoubleValue.java69 public int hashCode() method in class:CompositeDoubleValue
71 return super.hashCode() ^
72 doubleValue1.hashCode() ^
73 doubleValue2.hashCode();
H A DCompositeFloatValue.java69 public int hashCode() method in class:CompositeFloatValue
71 return super.hashCode() ^
72 floatValue1.hashCode() ^
73 floatValue2.hashCode();
H A DCompositeIntegerValue.java75 public int hashCode() method in class:CompositeIntegerValue
77 return super.hashCode() ^
78 integerValue1.hashCode() ^
79 integerValue2.hashCode();
H A DCompositeLongValue.java75 public int hashCode() method in class:CompositeLongValue
77 return super.hashCode() ^
78 longValue1.hashCode() ^
79 longValue2.hashCode();
H A DConvertedByteValue.java53 public int hashCode() method in class:ConvertedByteValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedCharacterValue.java53 public int hashCode() method in class:ConvertedCharacterValue
55 return super.hashCode() ^
56 value.hashCode();

Completed in 223 milliseconds

1234567891011>>