Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
DReplaceStringsVisitor.java338 private Expression findContextFieldOrMethod(ITypeBinding clazzType) { in findContextFieldOrMethod() argument
340 findContextCandidates(results, clazzType, 0 /*superType*/); in findContextFieldOrMethod()
371 ITypeBinding clazzType, in findContextCandidates() argument
373 for (IMethodBinding mb : clazzType.getDeclaredMethods()) { in findContextCandidates()
406 for (IVariableBinding var : clazzType.getDeclaredFields()) { in findContextCandidates()
421 clazzType = clazzType.getSuperclass(); in findContextCandidates()
422 if (clazzType != null) { in findContextCandidates()
423 findContextCandidates(results, clazzType, superType + 1); in findContextCandidates()