Home
last modified time | relevance | path

Searched refs:candidateList (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/src/sksl/
DSkSLInliner.cpp786 InlineCandidateList* candidateList) { in visit() argument
787 fCandidateList = candidateList; in visit()
1078 InlineCandidateList* candidateList) { in buildCandidateList() argument
1084 analyzer.visit(elements, symbols, candidateList); in buildCandidateList()
1087 std::vector<InlineCandidate>& candidates = candidateList->fCandidates; in buildCandidateList()
1152 InlineCandidateList candidateList; in analyze() local
1153 this->buildCandidateList(elements, symbols, usage, &candidateList); in analyze()
1161 for (const InlineCandidate& candidate : candidateList.fCandidates) { in analyze()
DSkSLInliner.h62 InlineCandidateList* candidateList);
/third_party/glslang/glslang/MachineIndependent/
DParseContextBase.cpp372 const TVector<const TFunction*> candidateList, in selectFunction() argument
415 for (auto it = candidateList.begin(); it != candidateList.end(); ++it) { in selectFunction()
DParseHelper.cpp7003 TVector<const TFunction*> candidateList; in findFunction120() local
7004 symbolTable.findFunctionNameList(call.getMangledName(), candidateList, builtIn); in findFunction120()
7006 for (auto it = candidateList.begin(); it != candidateList.end(); ++it) { in findFunction120()
7104 TVector<const TFunction*> candidateList; in findFunction400() local
7105 symbolTable.findFunctionNameList(call.getMangledName(), candidateList, builtIn); in findFunction400()
7151 const TFunction* bestMatch = selectFunction(candidateList, call, convertible, better, tie); in findFunction400()
7180 TVector<const TFunction*> candidateList; in findFunctionExplicitTypes() local
7181 symbolTable.findFunctionNameList(call.getMangledName(), candidateList, builtIn); in findFunctionExplicitTypes()
7241 const TFunction* bestMatch = selectFunction(candidateList, call, convertible, better, tie); in findFunctionExplicitTypes()
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.cpp7562 TVector<const TFunction*> candidateList; in findFunction() local
7563 symbolTable.findFunctionNameList(call.getMangledName(), candidateList, builtIn); in findFunction()
7566 if (candidateList.size() == 1 && builtIn && in findFunction()
7567 (candidateList[0]->getBuiltInOp() == EOpMethodAppend || in findFunction()
7568 candidateList[0]->getBuiltInOp() == EOpMethodRestartStrip || in findFunction()
7569 candidateList[0]->getBuiltInOp() == EOpMethodIncrementCounter || in findFunction()
7570 candidateList[0]->getBuiltInOp() == EOpMethodDecrementCounter || in findFunction()
7571 candidateList[0]->getBuiltInOp() == EOpMethodConsume)) { in findFunction()
7572 return candidateList[0]; in findFunction()
7737 bestMatch = selectFunction(candidateList, call, convertible, better, tie); in findFunction()
[all …]