Home
last modified time | relevance | path

Searched refs:superType (Results 1 – 3 of 3) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
DReplaceStringsVisitor.java372 int superType) { in findContextCandidates() argument
375 if (superType != 0 && Modifier.isPrivate(mb.getModifiers())) { in findContextCandidates()
394 Integer rating = Integer.valueOf(10000 + 1000 * superType + argsLen); in findContextCandidates()
408 if (superType != 0 && Modifier.isPrivate(var.getModifiers())) { in findContextCandidates()
414 Integer rating = Integer.valueOf(superType); in findContextCandidates()
423 findContextCandidates(results, clazzType, superType + 1); in findContextCandidates()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DBaseProjectHelper.java302 IType superType = type; in testClassForManifest() local
304 while ((superType = hierarchy.getSuperclass(superType)) != null && in testClassForManifest()
305 superType.exists()) { in testClassForManifest()
306 if (superClassName.equals(superType.getFullyQualifiedName())) { in testClassForManifest()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DEclipseLintClient.java957 IType superType = hierarchy.getSuperclass(type); in getSuperClass() local
958 if (superType != null) { in getSuperClass()
959 String key = superType.getKey(); in getSuperClass()
965 String fqcn = superType.getFullyQualifiedName(); in getSuperClass()
1009 for (IType superType : allSupertypes) { in isSubclassOf()
1010 if (target.equals(superType.getKey())) { in isSubclassOf()