Home
last modified time | relevance | path

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

/libcore/ojluni/annotations/hiddenapi/java/lang/reflect/
DConstructor.java147 private static final java.util.Comparator<java.lang.reflect.Method> ORDER_BY_SIGNATURE; field in Constructor
150 ORDER_BY_SIGNATURE = null;
/libcore/ojluni/src/main/java/java/lang/reflect/
DConstructor.java62 private static final Comparator<Method> ORDER_BY_SIGNATURE = null; // Unused; must match Method. field in Constructor
DMethod.java67 public static final Comparator<Method> ORDER_BY_SIGNATURE = new Comparator<Method>() { field in Method
DProxy.java580 int comparison = Method.ORDER_BY_SIGNATURE.compare(a, b);
713 if (i > 0 && Method.ORDER_BY_SIGNATURE.compare(method, methods.get(i - 1)) == 0) { in deduplicateAndGetExceptions()
/libcore/ojluni/src/main/java/java/lang/
DClass.java1524 CollectionUtils.removeDuplicates(methods, Method.ORDER_BY_SIGNATURE); in getMethods()