Searched refs:otherDesc (Results 1 – 2 of 2) sorted by relevance
86 TestDescriptor otherDesc = (TestDescriptor)otherObj; in equals() local87 return otherDesc.getClassName().equals(this.getClassName()) && in equals()88 otherDesc.getTestName().equals(this.getTestName()); in equals()
1052 BandDescriptor otherDesc = other.getDescriptor(); in equals() local1053 if ((mDescriptor == null) != (otherDesc == null)) return false; in equals()1054 if (mDescriptor != null && !mDescriptor.equals(otherDesc)) return false; in equals()