Searched refs:otherClass (Results 1 – 7 of 7) sorted by relevance
113 TypeProto otherClass = classPath.getClass(((ArrayProto)other).elementType); in getCommonSuperclass() local114 TypeProto mergedClass = thisClass.getCommonSuperclass(otherClass); in getCommonSuperclass()118 if (otherClass == mergedClass) { in getCommonSuperclass()
303 Class<?> otherClass = ((ITestNGMethod) o).getRealClass(); in compareTo() local304 if (thisClass.isAssignableFrom(otherClass)) { in compareTo()306 } else if (otherClass.isAssignableFrom(thisClass)) { in compareTo()
144 Class<?> otherClass = ((ITestNGMethod) o).getRealClass(); in compareTo() local147 } else if (thisClass.isAssignableFrom(otherClass)) { in compareTo()149 } else if (otherClass.isAssignableFrom(thisClass)) { in compareTo()
180 public boolean apply(Class<? extends Annotation> otherClass) { in validateReferencedModules()181 return MoreElements.isAnnotationPresent(element, otherClass); in validateReferencedModules()197 Class<? extends Annotation> otherClass) { in validateReferencedModules()198 return "@" + otherClass.getSimpleName(); in validateReferencedModules()
394 enum mesa_block_class compressedClass, otherClass; in compressed_format_compatible() local483 otherClass = BLOCK_CLASS_128_BITS; in compressed_format_compatible()493 otherClass = BLOCK_CLASS_64_BITS; in compressed_format_compatible()499 return compressedClass == otherClass; in compressed_format_compatible()
171 ResolvedReferenceTypeDeclaration otherClass = mock(ResolvedReferenceTypeDeclaration.class); in solveTypeInSamePackage() local172 when(otherClass.getQualifiedName()).thenReturn("com.foo.OtherClassInSamePackage"); in solveTypeInSamePackage()174 memoryTypeSolver.addDeclaration("com.foo.OtherClassInSamePackage", otherClass); in solveTypeInSamePackage()
2361 Class otherClass = [other class];2362 if (!([selfClass isSubclassOfClass:otherClass] ||2363 [otherClass isSubclassOfClass:selfClass])) {2365 format:@"Classes must match %@ != %@", selfClass, otherClass];