Home | History | Annotate | Download | only in internal

Lines Matching defs:Signature

130     Multimap<Signature, Method> methodsBySignature = HashMultimap.create();
140 methodsBySignature.put(new Signature(method), method);
153 for (Method matchingSignature : methodsBySignature.get(new Signature(method))) {
154 // matching signature is in the same class or a super class, therefore method cannot be
159 // now we know matching signature is in a subtype of method.getDeclaringClass()
201 private final class Signature {
206 Signature(Method method) {
223 if (obj instanceof Signature) {
224 Signature other = (Signature) obj;