Lines Matching defs:matches
99 * be exact matches.
123 /* Classes of parameter match, sorted (mostly) best matches first.
202 ir_function_signature **matches,
221 for (ir_function_signature **other = matches;
222 other < matches + num_matches; other++) {
263 ir_function_signature **matches,
270 return *matches;
273 * there is no overload resolution among multiple inexact matches. Note
280 for (ir_function_signature **sig = matches; sig < matches + num_matches; sig++) {
281 if (is_best_inexact_overload(actual_parameters, matches, num_matches, *sig))
357 * are multiple inexact matches, the call is ambiguous, which is an error.