Home
last modified time | relevance | path

Searched refs:otherClass (Results 1 – 6 of 6) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DArrayProto.java113 TypeProto otherClass = classPath.getClass(((ArrayProto)other).elementType); in getCommonSuperclass() local
114 TypeProto mergedClass = thisClass.getCommonSuperclass(otherClass); in getCommonSuperclass()
118 if (otherClass == mergedClass) { in getCommonSuperclass()
/external/testng/src/main/java/org/testng/internal/
DClonedMethod.java303 Class<?> otherClass = ((ITestNGMethod) o).getRealClass(); in compareTo() local
304 if (thisClass.isAssignableFrom(otherClass)) { in compareTo()
306 } else if (otherClass.isAssignableFrom(thisClass)) { in compareTo()
DBaseTestMethod.java144 Class<?> otherClass = ((ITestNGMethod) o).getRealClass(); in compareTo() local
147 } else if (thisClass.isAssignableFrom(otherClass)) { in compareTo()
149 } else if (otherClass.isAssignableFrom(thisClass)) { in compareTo()
/external/mesa3d/src/mesa/main/
Dcopyimage.c315 enum mesa_block_class compressedClass, otherClass; in compressed_format_compatible() local
404 otherClass = BLOCK_CLASS_128_BITS; in compressed_format_compatible()
414 otherClass = BLOCK_CLASS_64_BITS; in compressed_format_compatible()
420 return compressedClass == otherClass; in compressed_format_compatible()
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DModuleValidator.java180 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()
/external/protobuf/objectivec/
DGPBMessage.m2361 Class otherClass = [other class];
2362 if (!([selfClass isSubclassOfClass:otherClass] ||
2363 [otherClass isSubclassOfClass:selfClass])) {
2365 format:@"Classes must match %@ != %@", selfClass, otherClass];