Home | History | Annotate | Download | only in hlsl

Lines Matching refs:bestMatch

7467     const TFunction* bestMatch = selectFunction(candidateList, call, convertible, better, tie);
7469 if (bestMatch == nullptr) {
7474 bestMatch = selectFunction(candidateList, call, convertible, better, tie);
7477 if (bestMatch == nullptr) {
7489 if (call.getMangledName() == bestMatch->getMangledName())
7490 return bestMatch;
7500 promote = new TIntermUnary(bestMatch->getBuiltInOp());
7503 promote = new TIntermAggregate(bestMatch->getBuiltInOp());
7546 bestMatch = selectFunction(candidateList, convertedCall, convertible, better, tie);
7555 if (!tie && bestMatch != nullptr) {
7556 for (int defParam = call.getParamCount(); defParam < bestMatch->getParamCount(); ++defParam) {
7557 handleFunctionArgument(&call, args, (*bestMatch)[defParam].defaultValue);
7561 return bestMatch;