Home | History | Annotate | Download | only in hlsl

Lines Matching refs:candidateList

7301     TVector<const TFunction*> candidateList;
7302 symbolTable.findFunctionNameList(call.getMangledName(), candidateList, builtIn);
7305 if (candidateList.size() == 1 && builtIn &&
7306 (candidateList[0]->getBuiltInOp() == EOpMethodAppend ||
7307 candidateList[0]->getBuiltInOp() == EOpMethodRestartStrip ||
7308 candidateList[0]->getBuiltInOp() == EOpMethodIncrementCounter ||
7309 candidateList[0]->getBuiltInOp() == EOpMethodDecrementCounter ||
7310 candidateList[0]->getBuiltInOp() == EOpMethodAppend ||
7311 candidateList[0]->getBuiltInOp() == EOpMethodConsume)) {
7312 return candidateList[0];
7467 const TFunction* bestMatch = selectFunction(candidateList, call, convertible, better, tie);
7474 bestMatch = selectFunction(candidateList, call, convertible, better, tie);
7546 bestMatch = selectFunction(candidateList, convertedCall, convertible, better, tie);
9519 TVector<const TFunction*> candidateList;
9521 symbolTable.findFunctionNameList(mangledName, candidateList, builtIn);
9525 if (candidateList.empty()) {
9533 if (candidateList.size() > 1) {
9538 return candidateList[0];