Lines Matching refs:matches
98 * be exact matches.
122 /* Classes of parameter match, sorted (mostly) best matches first.
201 ir_function_signature **matches,
220 for (ir_function_signature **other = matches;
221 other < matches + num_matches; other++) {
262 ir_function_signature **matches,
269 return *matches;
272 * there is no overload resolution among multiple inexact matches. Note
278 for (ir_function_signature **sig = matches; sig < matches + num_matches; sig++) {
279 if (is_best_inexact_overload(actual_parameters, matches, num_matches, *sig))
352 * are multiple inexact matches, the call is ambiguous, which is an error.