Searched refs:caseName (Results 1 - 25 of 40) sorted by relevance

12

/external/deqp/framework/common/
H A DtcuCommandLine.hpp181 bool checkTestCaseName (const char* caseName) const;
H A DtcuTestExecutor.hpp143 bool matchCaseName (const char* caseName) const;
H A DtcuCommandLine.cpp520 bool matches (const string& caseName, bool allowPrefix=false) const;
602 bool CasePaths::matches (const string& caseName, bool allowPrefix) const argument
604 const vector<string> components = de::splitString(caseName, '.');
616 caseName.begin(), caseName.end(), allowPrefix))
870 bool CommandLine::checkTestCaseName (const char* caseName) const
873 return m_casePaths->matches(caseName, false);
875 return tcu::checkTestCaseName(m_caseTree, caseName);
H A DtcuTestExecutor.cpp296 string caseName = iter.node->getName(); local
311 attribs[numAttribs++] = qpSetStringAttrib("Name", caseName.c_str());
/external/deqp/executor/tools/
H A DxeBatchResultToJUnit.cpp114 std::string caseName = result.casePath.substr(sepPos+1); local
119 << Writer::Attribute("name", caseName)
H A DxeTestLogCompare.cpp313 const string& caseName = *caseIter; local
317 getTestResultHeaders(headers, results, caseName.c_str());
335 dst << caseName << "\n"; local
342 dst << caseName; local
/external/deqp/modules/gles2/scripts/
H A Dgen-swizzles.py236 caseName = "%s_%s_%s" % (precision, dataType, swizzle) variable
240 vectorSwizzleCases.append(SwizzleCase(caseName, precision, dataType, swizzle, [("%s in0" % dataType, inputs)], [("%s out0" % outType, outputs)]))
249 # caseName = "%s_%s_%s" % (precision, dataType, swizzle)
252 # vectorSwizzleCases.append(SwizzleCase(caseName, precision, dataType, swizzle, [("in0", inputs)], [("out0", outputs)]))
/external/deqp/modules/gles3/scripts/
H A Dgen-swizzles.py240 caseName = "%s_%s_%s" % (precision, dataType, swizzle) variable
244 vectorSwizzleCases.append(SwizzleCase(caseName, precision, dataType, swizzle, [("%s in0" % dataType, inputs)], [("%s out0" % outType, outputs)]))
253 # caseName = "%s_%s_%s" % (precision, dataType, swizzle)
256 # vectorSwizzleCases.append(SwizzleCase(caseName, precision, dataType, swizzle, [("in0", inputs)], [("out0", outputs)]))
/external/deqp/modules/glshared/
H A DglsShaderConstExprTests.cpp144 const string caseName = string(cases[caseNdx].name) + (minComponents==maxComponents ? "" : ("_" + typeName)); local
159 (caseName + "_vertex").c_str(),
170 (caseName + "_fragment").c_str(),
H A DglsShaderLibraryCase.hpp179 const char* caseName,
185 const char* caseName,
H A DglsShaderLibrary.cpp1131 string caseName = m_curTokenStr; local
1244 shaderNodeList.push_back(new ShaderCase(m_testCtx, m_renderCtx, m_contextInfo, (caseName + "_vertex").c_str(), description.c_str(), spec));
1252 shaderNodeList.push_back(new ShaderCase(m_testCtx, m_renderCtx, m_contextInfo, (caseName + "_fragment").c_str(), description.c_str(), spec));
1270 shaderNodeList.push_back(new ShaderCase(m_testCtx, m_renderCtx, m_contextInfo, caseName.c_str(), description.c_str(), spec));
1293 shaderNodeList.push_back(new ShaderCase(m_testCtx, m_renderCtx, m_contextInfo, caseName.c_str(), description.c_str(), spec));
/external/deqp/modules/gles2/functional/
H A Des2fShaderIndexingTests.cpp251 static ShaderIndexingCase* createVaryingArrayCase (Context& context, const char* caseName, const char* description, DataType varType, IndexAccessType vertAccess, IndexAccessType fragAccess) argument
371 return new ShaderIndexingCase(context, caseName, description, true, varType, evalFunc, requirements, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
374 static ShaderIndexingCase* createUniformArrayCase (Context& context, const char* caseName, const char* description, bool isVertexCase, DataType varType, IndexAccessType readAccess) argument
481 return new ShaderIndexingCase(context, caseName, description, isVertexCase, varType, evalFunc, requirements, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
484 static ShaderIndexingCase* createTmpArrayCase (Context& context, const char* caseName, const char* description, bool isVertexCase, DataType varType, IndexAccessType writeAccess, IndexAccessType readAccess) argument
629 return new ShaderIndexingCase(context, caseName, description, isVertexCase, varType, evalFunc, requirements, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
648 static ShaderIndexingCase* createVectorSubscriptCase (Context& context, const char* caseName, const char* description, bool isVertexCase, DataType varType, VectorAccessType writeAccess, VectorAccessType readAccess) argument
815 return new ShaderIndexingCase(context, caseName, description, isVertexCase, varType, evalFunc, requirements, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
834 static ShaderIndexingCase* createMatrixSubscriptCase (Context& context, const char* caseName, const char* description, bool isVertexCase, DataType varType, IndexAccessType writeAccess, IndexAccessType readAccess) argument
987 return new ShaderIndexingCase(context, caseName, descriptio
[all...]
H A Des2fShaderAlgorithmTests.cpp73 static ShaderAlgorithmCase* createExpressionCase (Context& context, const char* caseName, const char* description, bool isVertexCase, ShaderEvalFunc evalFunc, LineStream& shaderBody) argument
136 return new ShaderAlgorithmCase(context, caseName, description, isVertexCase, evalFunc, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
H A Des2fShaderApiTests.cpp866 const std::string caseName = name + "_" + shaderTypeName; local
869 group->addChild(new T(context, caseName.c_str(), caseDesc.c_str(), shaderType));
1060 const std::string caseName = std::string("replace_source") + ((shaderType == glu::SHADERTYPE_FRAGMENT) ? "_fragment" : "_vertex"); local
1063 shaderSourceGroup->addChild(new ShaderSourceReplaceCase(m_context, caseName.c_str(), caseDesc.c_str(), shaderType));
1079 const std::string caseName = "split_source_" local
1091 shaderSourceGroup->addChild(new ShaderSourceSplitCase(m_context, caseName.c_str(), caseDesc.c_str(), shaderType, numSlices, flags));
H A Des2fShaderBuiltinVarTests.cpp670 const char* caseName; member in struct:deqp::gles2::Functional::__anon19897
687 const char* caseName = builtinConstants[ndx].caseName; local
691 addChild(new ShaderBuiltinConstantCase(m_context, (string(caseName) + "_vertex").c_str(), varName, varName, paramName, true));
692 addChild(new ShaderBuiltinConstantCase(m_context, (string(caseName) + "_fragment").c_str(), varName, varName, paramName, false));
H A Des2fDitheringTests.cpp531 const string caseName = string("") + DitheringCase::getPatternTypeName(patternType) + "_" + caseColors[caseColorNdx].name;
533 group->addChild(new DitheringCase(m_context.getTestContext(), m_context.getRenderContext(), caseName.c_str(), "", ditheringEnabled, patternType, caseColors[caseColorNdx].color));
H A Des2fShaderLoopTests.cpp275 static ShaderLoopCase* createGenericLoopCase (Context& context, const char* caseName, const char* description, bool isVertexCase, LoopType loopType, LoopCountType loopCountType, Precision loopCountPrecision, DataType loopCountDataType) argument
479 return new ShaderLoopCase(context, caseName, description, isVertexCase, evalFunc, requirement, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
483 static ShaderLoopCase* createSpecialLoopCase (Context& context, const char* caseName, const char* description, bool isVertexCase, LoopCase loopCase, LoopType loopType, LoopCountType loopCountType) argument
1249 return new ShaderLoopCase(context, caseName, description, isVertexCase, evalFunc, requirement, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
/external/deqp/modules/gles3/functional/
H A Des3fShaderIndexingTests.cpp221 static ShaderIndexingCase* createVaryingArrayCase (Context& context, const char* caseName, const char* description, DataType varType, IndexAccessType vertAccess, IndexAccessType fragAccess) argument
333 return new ShaderIndexingCase(context, caseName, description, true, varType, evalFunc, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
336 static ShaderIndexingCase* createUniformArrayCase (Context& context, const char* caseName, const char* description, bool isVertexCase, DataType varType, IndexAccessType readAccess) argument
439 return new ShaderIndexingCase(context, caseName, description, isVertexCase, varType, evalFunc, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
442 static ShaderIndexingCase* createTmpArrayCase (Context& context, const char* caseName, const char* description, bool isVertexCase, DataType varType, IndexAccessType writeAccess, IndexAccessType readAccess) argument
583 return new ShaderIndexingCase(context, caseName, description, isVertexCase, varType, evalFunc, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
602 static ShaderIndexingCase* createVectorSubscriptCase (Context& context, const char* caseName, const char* description, bool isVertexCase, DataType varType, VectorAccessType writeAccess, VectorAccessType readAccess) argument
765 return new ShaderIndexingCase(context, caseName, description, isVertexCase, varType, evalFunc, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
802 static ShaderIndexingCase* createMatrixSubscriptCase (Context& context, const char* caseName, const char* description, bool isVertexCase, DataType varType, IndexAccessType writeAccess, IndexAccessType readAccess) argument
952 return new ShaderIndexingCase(context, caseName, descriptio
[all...]
H A Des3fShaderDerivateTests.cpp1695 ostringstream caseName; local
1700 caseName << glu::getDataTypeName(dataType) << "_" << glu::getPrecisionName(precision);
1702 linearCaseGroup->addChild(new LinearDerivateCase(m_context, caseName.str().c_str(), "", function, dataType, precision, hint, surfaceType, numSamples, source));
1723 ostringstream caseName; local
1728 caseName << glu::getDataTypeName(dataType) << "_" << glu::getPrecisionName(precision);
1730 fboGroup->addChild(new LinearDerivateCase(m_context, caseName.str().c_str(), "", function, dataType, precision, hint, surfaceType, numSamples, source));
1756 ostringstream caseName; local
1761 caseName << glu::getDataTypeName(dataType) << "_" << glu::getPrecisionName(precision);
1763 fboGroup->addChild(new LinearDerivateCase(m_context, caseName.str().c_str(), "", function, dataType, precision, hint, surfaceType, numSamples, source));
1788 ostringstream caseName; local
[all...]
H A Des3fShaderLoopTests.cpp243 static ShaderLoopCase* createGenericLoopCase (Context& context, const char* caseName, const char* description, bool isVertexCase, LoopType loopType, LoopCountType loopCountType, Precision loopCountPrecision, DataType loopCountDataType) argument
437 return new ShaderLoopCase(context, caseName, description, isVertexCase, evalFunc, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
441 static ShaderLoopCase* createSpecialLoopCase (Context& context, const char* caseName, const char* description, bool isVertexCase, LoopCase loopCase, LoopType loopType, LoopCountType loopCountType) argument
1125 return new ShaderLoopCase(context, caseName, description, isVertexCase, evalFunc, vertexShaderSource.c_str(), fragmentShaderSource.c_str());
H A Des3fDitheringTests.cpp531 const string caseName = string("") + DitheringCase::getPatternTypeName(patternType) + "_" + caseColors[caseColorNdx].name;
533 group->addChild(new DitheringCase(m_context.getTestContext(), m_context.getRenderContext(), caseName.c_str(), "", ditheringEnabled, patternType, caseColors[caseColorNdx].color));
H A Des3fShaderApiTests.cpp926 const std::string caseName = name + "_" + shaderTypeName; local
929 group->addChild(new T(context, caseName.c_str(), caseDesc.c_str(), shaderType));
1491 const std::string caseName = name + "_" + shaderTypeName; local
1494 group->addChild(new T(context, caseName.c_str(), caseDesc.c_str(), shaderType));
1686 const std::string caseName = std::string("replace_source_") + shaderTypeName; local
1689 shaderSourceGroup->addChild(new ShaderSourceReplaceCase(m_context, caseName.c_str(), caseDesc.c_str(), shaderType));
1705 const std::string caseName = "split_source_" local
1717 shaderSourceGroup->addChild(new ShaderSourceSplitCase(m_context, caseName.c_str(), caseDesc.c_str(), shaderType, numSlices, flags));
/external/deqp/scripts/
H A Drun_nightly.py160 for caseName in caseList:
164 result = resultMap[i][caseName] if caseName in resultMap[i] else None
168 results.append(MultiResult(caseName, statusCodes))
/external/deqp/modules/gles2/performance/
H A Des2pTextureUploadTests.cpp544 string caseName = string("") + uploadFunctions[uploadFunc].nameLower + "_" + textureCombinations[texCombination].name;
550 textureSizes[texSize].uploadCallGroup->addChild (new TextureUploadCallCase (m_context, caseName.c_str(), "", function, format, type, size));
551 textureSizes[texSize].uploadAndDrawGroup->addChild (new TextureUploadAndDrawCase (m_context, caseName.c_str(), "", function, format, type, size));
/external/deqp/modules/gles31/functional/
H A Des31fShaderHelperInvocationTests.cpp609 const char* caseName; member in struct:deqp::gles31::Functional::__anon20317
641 const string name = string(s_primTypes[primTypeNdx].caseName) + s_sampleCounts[sampleCountNdx].suffix;
659 const string name = string(s_primTypes[primTypeNdx].caseName) + s_sampleCounts[sampleCountNdx].suffix;

Completed in 298 milliseconds

12