Home | History | Annotate | Download | only in proguard

Lines Matching refs:null

53         this(null,
56 null,
57 null,
58 null,
59 null);
92 * to apply. The name may be null to
94 * @param className the class name. The name may be null to
100 * to apply. The name may be null to
104 * apply. The name may be null to specify
122 null,
123 null);
139 * to apply. The name may be null to
141 * @param className the class name. The name may be null to
147 * to apply. The name may be null to
151 * apply. The name may be null to specify
185 if (fieldSpecifications == null)
201 if (methodSpecifications == null)
215 if (object == null ||
223 // (this.comments == null ? other.comments == null : this.comments.equals(other.comments) ) &&
226 (this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.annotationType) ) &&
227 (this.className == null ? other.className == null : this.className.equals(other.className) ) &&
228 (this.extendsAnnotationType == null ? other.extendsAnnotationType == null : this.extendsAnnotationType.equals(other.extendsAnnotationType)) &&
229 (this.extendsClassName == null ? other.extendsClassName == null : this.extendsClassName.equals(other.extendsClassName) ) &&
230 (this.fieldSpecifications == null ? other.fieldSpecifications == null : this.fieldSpecifications.equals(other.fieldSpecifications) ) &&
231 (this.methodSpecifications == null ? other.methodSpecifications == null : this.methodSpecifications.equals(other.methodSpecifications) );
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() );
256 return null;