Home
last modified time | relevance | path

Searched refs:beginsWith (Results 1 – 17 of 17) sorted by relevance

/external/deqp/framework/delibs/decpp/
DdeStringUtil.cpp117 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()
DdeStringUtil.hpp50 bool beginsWith (const std::string& s, const std::string& prefix);
/external/eigen/bench/btl/generic_bench/
Dbtl.hh118 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/
Dverify.py94 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/
DvktPipelineSamplerTests.cpp723 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()
DvktPipelineImageViewTests.cpp327 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName()
583 DE_ASSERT(de::beginsWith(fullName, "VK_COMPONENT_SWIZZLE_")); in getComponentSwizzleCaseName()
DvktPipelineDepthTests.cpp700 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName()
713 DE_ASSERT(de::beginsWith(fullOpName, "VK_COMPARE_OP_")); in getCompareOpsName()
DvktPipelineStencilTests.cpp760 DE_ASSERT(de::beginsWith(fullName, "VK_COMPARE_OP_")); in getShortName()
799 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName()
DvktPipelineImageTests.cpp379 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName()
DvktPipelineBlendTests.cpp949 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName()
DvktPipelineInputAssemblyTests.cpp1434 DE_ASSERT(de::beginsWith(fullName, "VK_PRIMITIVE_TOPOLOGY_")); in getPrimitiveTopologyCaseName()
/external/deqp/external/vulkancts/framework/vulkan/
DvkShaderToSpirV.cpp227 if (de::beginsWith(src, "#version")) in getShaderStageSource()
/external/deqp/modules/glshared/
DglsFboUtil.cpp188 if (de::beginsWith(extension, "GL_")) in checkExtensionSupport()
209 if (de::beginsWith(extension, "GL_")) in getExtensionDescription()
/external/deqp/modules/gles31/functional/
Des31fProgramInterfaceDefinition.cpp638 if (!de::beginsWith(m_xfbVaryings[ndx], "gl_")) in isValid()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp1024 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatShortString()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiFeatureInfo.cpp682 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/
Des2fNegativeShaderApiTests.cpp991 if (de::beginsWith((const char*)glGetString(GL_VERSION), "OpenGL ES 2.0 ")) in init()