Home | History | Annotate | Download | only in extractstring

Lines Matching defs:rating

351      * Sort them by rating in the results map.
360 * The rating is reversed: the lowest rating integer is used for the best candidate.
364 * @param results The map that accumulates the rating=>expression results. The lower
365 * rating number is the best candidate.
394 Integer rating = Integer.valueOf(10000 + 1000 * superType + argsLen);
395 if (!results.containsKey(rating)) {
398 results.put(rating, mi);
414 Integer rating = Integer.valueOf(superType);
415 results.put(rating, mAst.newSimpleName(var.getName()));