Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/collect/
DFauxveridesTest.java113 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 …]
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DMethodSignature.java13 abstract class MethodSignature { class
18 static MethodSignature fromExecutableType(String methodName, ExecutableType methodType) { in fromExecutableType()
DAbstractComponentWriter.java582 Set<MethodSignature> interfaceMethods = Sets.newHashSet(); in implementInterfaceMethods()
591 MethodSignature signature = MethodSignature.fromExecutableType( in implementInterfaceMethods()
/external/javassist/src/main/javassist/bytecode/
DSignatureAttribute.java226 public static class MethodSignature { class in SignatureAttribute
232 MethodSignature(TypeParameter[] tp, Type[] p, Type ret, ObjectType[] ex) { in MethodSignature() method in SignatureAttribute.MethodSignature
629 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()
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
DSmaliMethod.java45 import com.intellij.psi.util.MethodSignature;
192 @NotNull @Override public MethodSignature getSignature(@NotNull PsiSubstitutor substitutor) { in getSignature()