Searched refs:isInheritor (Results 1 – 3 of 3) sorted by relevance
/external/smali/smalidea/src/test/java/org/jf/smalidea/ |
D | SmaliClassTest.java | 144 Assert.assertTrue(smaliClass.isInheritor(exceptionClass, true)); in testIsInheritor() 145 Assert.assertTrue(smaliClass.isInheritor(throwableClass, true)); in testIsInheritor() 146 Assert.assertTrue(smaliClass.isInheritor(objectClass, true)); in testIsInheritor() 152 Assert.assertTrue(smaliClass.isInheritor(exceptionClass, false)); in testIsInheritor() 153 Assert.assertFalse(smaliClass.isInheritor(throwableClass, false)); in testIsInheritor() 154 Assert.assertFalse(smaliClass.isInheritor(objectClass, false)); in testIsInheritor()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/ |
D | SmaliClass.java | 272 @Override public boolean isInheritor(@NotNull PsiClass baseClass, boolean checkDeep) { in isInheritor() method in SmaliClass 273 return InheritanceImplUtil.isInheritor(this, baseClass, checkDeep); in isInheritor()
|
/external/dokka/core/src/main/kotlin/Java/ |
D | JavaPsiDocumentationBuilder.kt | 233 fun PsiClass.isException() = InheritanceUtil.isInheritor(this, "java.lang.Throwable") in appendFile()
|