Lines Matching defs:that

151     // mAllConstructors will not contain *all* constructors. Only the constructors that pass
154 // mAllSelfMethods will not contain *all* self methods. Only the methods that pass
158 // mAllSelfFields will not contain *all* self fields. Only the fields that pass
161 // mEnumConstants will not contain *all* enum constants. Only the enums that pass
221 public int compareTo(Object that) {
222 if (that instanceof ClassInfo) {
223 return mQualifiedName.compareTo(((ClassInfo) that).mQualifiedName);
225 return this.hashCode() - that.hashCode();
410 * A list of ClassTypePairs that contain all superclasses
815 * @return all methods that are marked as removed, regardless of access levels.
823 * @return all public/protected methods that are removed. @removed methods should never be
824 * deleted from source code because they were once public API. Methods that override
832 * @return all public constructors that are removed.
842 * @return all public/protected fields that are removed.
851 * @return all public/protected enumConstants that are removed.
861 * @return true if this class contains any self members that are removed
971 // rearrange our little inheritance hierarchy, because we need to hide classes that
1254 // the containing package -- note that this can be passed to type_link,
1689 // ClassDoc.findClass has this bug that we're working around here:
1700 // ClassDoc.findClass won't find inner classes. To deal with that,
1701 // we try what they gave us first, but if that didn't work, then
1770 public boolean equals(ClassInfo that) {
1771 if (that != null) {
1772 return this.qualifiedName().equals(that.qualifiedName());
1867 // mAllConstructors will not contain *all* constructors. Only the constructors that pass
1870 // mAllSelfMethods will not contain *all* self methods. Only the methods that pass
1916 // @removed self methods that do not override any parent methods
1923 * Returns true if {@code cl} implements the interface {@code iface} either by either being that
1924 * interface, implementing that interface or extending a type that implements the interface.
2066 * to see if there's an inherited version that still fulfills the API requirement.