Home | History | Annotate | Download | only in impl

Lines Matching defs:thiz

65     public static boolean equals(IWildcardType thiz, Object obj) {
66 if (thiz == obj) return true;
70 if (thiz.getLowerBound() == null) {
72 } else if (!thiz.getLowerBound().equals(that.getLowerBound()))
74 if (!thiz.getUpperBounds().equals(that.getUpperBounds())) return false;
84 public static String toString(IWildcardType thiz) {
87 if (thiz.getLowerBound() != null) {
90 builder.append(thiz.getLowerBound());
92 if (!thiz.getUpperBounds().isEmpty()) {
94 builder.append(thiz.getUpperBounds());