/external/deqp/framework/delibs/decpp/ |
D | deStringUtil.cpp | 117 bool beginsWith (const std::string& s, const std::string& prefix) in beginsWith() function 176 DE_TEST_ASSERT(beginsWith("foobar", "foobar")); in StringUtil_selfTest() 177 DE_TEST_ASSERT(beginsWith("foobar", "foo")); in StringUtil_selfTest() 178 DE_TEST_ASSERT(beginsWith("foobar", "f")); in StringUtil_selfTest() 179 DE_TEST_ASSERT(beginsWith("foobar", "")); in StringUtil_selfTest() 180 DE_TEST_ASSERT(beginsWith("", "")); in StringUtil_selfTest() 181 DE_TEST_ASSERT(!beginsWith("foobar", "bar")); in StringUtil_selfTest() 182 DE_TEST_ASSERT(!beginsWith("foobar", "foobarbaz")); in StringUtil_selfTest() 183 DE_TEST_ASSERT(!beginsWith("", "foo")); in StringUtil_selfTest()
|
D | deStringUtil.hpp | 50 bool beginsWith (const std::string& s, const std::string& prefix);
|
/external/eigen/bench/btl/generic_bench/ |
D | btl.hh | 118 bool beginsWith(const BtlString& str) const in beginsWith() function in BtlString 176 if (config[i].beginsWith("-a")) in BtlConfig() 187 else if (config[i].beginsWith("-t")) in BtlConfig() 198 else if (config[i].beginsWith("--overwrite")) in BtlConfig() 202 else if (config[i].beginsWith("--nocheck")) in BtlConfig() 206 else if (config[i].beginsWith("--real")) in BtlConfig()
|
/external/deqp/scripts/verify/ |
D | verify.py | 94 def beginsWith (str, prefix): function 109 if beginsWith(line, "CONFORM_VERSION:"): 116 elif beginsWith(line, "PRODUCT:"): 118 elif beginsWith(line, "CPU:"): 123 elif beginsWith(line, "OS:"):
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineSamplerTests.cpp | 723 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName() 766 DE_ASSERT(de::beginsWith(fullName, prefix)); in getShortComponentSwizzleName() 896 DE_ASSERT(de::beginsWith(fullName, "VK_SAMPLER_ADDRESS_")); in getAddressModesCaseName() 912 DE_ASSERT(de::beginsWith(fullNameU, "VK_SAMPLER_ADDRESS_")); in getAddressModesCaseName() 913 DE_ASSERT(de::beginsWith(fullNameV, "VK_SAMPLER_ADDRESS_")); in getAddressModesCaseName() 914 DE_ASSERT(de::beginsWith(fullNameW, "VK_SAMPLER_ADDRESS_")); in getAddressModesCaseName()
|
D | vktPipelineImageViewTests.cpp | 327 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName() 583 DE_ASSERT(de::beginsWith(fullName, "VK_COMPONENT_SWIZZLE_")); in getComponentSwizzleCaseName()
|
D | vktPipelineDepthTests.cpp | 700 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName() 713 DE_ASSERT(de::beginsWith(fullOpName, "VK_COMPARE_OP_")); in getCompareOpsName()
|
D | vktPipelineStencilTests.cpp | 760 DE_ASSERT(de::beginsWith(fullName, "VK_COMPARE_OP_")); in getShortName() 799 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName()
|
D | vktPipelineImageTests.cpp | 379 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName()
|
D | vktPipelineBlendTests.cpp | 949 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName()
|
D | vktPipelineInputAssemblyTests.cpp | 1434 DE_ASSERT(de::beginsWith(fullName, "VK_PRIMITIVE_TOPOLOGY_")); in getPrimitiveTopologyCaseName()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkShaderToSpirV.cpp | 227 if (de::beginsWith(src, "#version")) in getShaderStageSource()
|
/external/deqp/modules/glshared/ |
D | glsFboUtil.cpp | 188 if (de::beginsWith(extension, "GL_")) in checkExtensionSupport() 209 if (de::beginsWith(extension, "GL_")) in getExtensionDescription()
|
/external/deqp/modules/gles31/functional/ |
D | es31fProgramInterfaceDefinition.cpp | 638 if (!de::beginsWith(m_xfbVaryings[ndx], "gl_")) in isValid()
|
/external/deqp/external/vulkancts/modules/vulkan/image/ |
D | vktImageTestsUtil.cpp | 1024 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatShortString()
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiFeatureInfo.cpp | 682 if (de::beginsWith(*extIter, "VK_KHR_") && in checkKhrExtensions() 907 bool caseFailed = de::beginsWith(extensionName, "VK_KHX_"); in testNoKhxExtensions() 3720 const bool mustBeKnown = de::beginsWith(extensionName, "VK_GOOGLE_") || in checkExtensions() 3721 de::beginsWith(extensionName, "VK_ANDROID_"); in checkExtensions()
|
/external/deqp/modules/gles2/functional/ |
D | es2fNegativeShaderApiTests.cpp | 991 if (de::beginsWith((const char*)glGetString(GL_VERSION), "OpenGL ES 2.0 ")) in init()
|