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.java305 IType superType = type; in testClassForManifest() local
307 while ((superType = hierarchy.getSuperclass(superType)) != null && in testClassForManifest()
308 superType.exists()) { in testClassForManifest()
309 if (superClassName.equals(superType.getFullyQualifiedName())) { in testClassForManifest()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DEclipseLintClient.java995 IType superType = hierarchy.getSuperclass(type);
996 if (superType != null) {
997 String key = superType.getKey();
1003 String fqcn = superType.getFullyQualifiedName();
1047 for (IType superType : allSupertypes) {
1048 if (target.equals(superType.getKey())) {