Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/reflect/
DConstructor.java56 private static final Comparator<Method> ORDER_BY_SIGNATURE = null; // Unused; must match Method. field in Constructor
DMethod.java61 public static final Comparator<Method> ORDER_BY_SIGNATURE = new Comparator<Method>() { field in Method
DProxy.java269 int comparison = Method.ORDER_BY_SIGNATURE.compare(a, b);
668 if (i > 0 && Method.ORDER_BY_SIGNATURE.compare(method, methods.get(i - 1)) == 0) { in deduplicateAndGetExceptions()
/libcore/ojluni/src/main/java/java/lang/
DClass.java1490 CollectionUtils.removeDuplicates(methods, Method.ORDER_BY_SIGNATURE); in getMethods()