Searched refs:MethodSignature (Results 1 – 5 of 5) sorted by relevance
113 Set<MethodSignature> required = getAllRequiredToFauxveride(ancestor); in doHasAllFauxveridesTest()114 Set<MethodSignature> found = getAllFauxveridden(descendant, ancestor); in doHasAllFauxveridesTest()121 private static Set<MethodSignature> getAllRequiredToFauxveride(Class<?> ancestor) { in getAllRequiredToFauxveride()125 private static Set<MethodSignature> getAllFauxveridden( in getAllFauxveridden()130 private static Set<MethodSignature> getPublicStaticMethodsBetween( in getPublicStaticMethodsBetween()132 Set<MethodSignature> methods = newHashSet(); in getPublicStaticMethodsBetween()139 private static Set<MethodSignature> getPublicStaticMethods(Class<?> clazz) { in getPublicStaticMethods()140 Set<MethodSignature> publicStaticMethods = newHashSet(); in getPublicStaticMethods()145 publicStaticMethods.add(new MethodSignature(method)); in getPublicStaticMethods()171 private static final class MethodSignature class in FauxveridesTest[all …]
13 abstract class MethodSignature { class18 static MethodSignature fromExecutableType(String methodName, ExecutableType methodType) { in fromExecutableType()
582 Set<MethodSignature> interfaceMethods = Sets.newHashSet(); in implementInterfaceMethods()591 MethodSignature signature = MethodSignature.fromExecutableType( in implementInterfaceMethods()
226 public static class MethodSignature { class in SignatureAttribute232 MethodSignature(TypeParameter[] tp, Type[] p, Type ret, ObjectType[] ex) { in MethodSignature() method in SignatureAttribute.MethodSignature629 public static MethodSignature toMethodSignature(String sig) throws BadBytecode { in toMethodSignature()671 private static MethodSignature parseMethodSig(String sig) in parseMethodSig()700 return new MethodSignature(tp, p, ret, ex); in parseMethodSig()
45 import com.intellij.psi.util.MethodSignature;192 @NotNull @Override public MethodSignature getSignature(@NotNull PsiSubstitutor substitutor) { in getSignature()