Home | History | Annotate | Download | only in shrink

Lines Matching refs:clazz

41     private       Clazz   clazz;
61 * @param clazz the class causing this mark.
66 Clazz clazz)
68 this(previousUsageMark, reason, cost, clazz, null);
76 * @param clazz the class causing this mark.
83 Clazz clazz,
89 this.clazz = clazz;
105 this.clazz = otherUsageMark.clazz;
141 public boolean isCausedBy(Clazz clazz)
143 return clazz.equals(this.clazz);
153 if (clazz != null &&
156 clazz.accept(classVisitor);
166 if (clazz != null &&
169 member.accept(clazz, memberVisitor);
180 (clazz != null ? clazz.getName() : "(none)") + ": " +
181 (member != null ? member.getName(clazz) : "(none)");