Home
last modified time | relevance | path

Searched refs:getBool (Results 1 – 25 of 79) sorted by relevance

1234

/external/clang/test/PCH/
Dthread-safety-attrs.cpp104 bool getBool();
162 if (getBool()) in sls_fun_8()
169 if (getBool()) in sls_fun_9()
177 if (getBool()) { in sls_fun_good_6()
180 if (getBool()) { in sls_fun_good_6()
181 getBool(); // EMPTY in sls_fun_good_6()
183 getBool(); // EMPTY in sls_fun_good_6()
192 while (getBool()) { in sls_fun_good_7()
194 if (getBool()) { in sls_fun_good_7()
195 if (getBool()) { in sls_fun_good_7()
[all …]
/external/clang/test/Analysis/
Dlive-variables.cpp9 int getBool();
18 if (p != 0 && getBool() && foo().m && getBool()) { in test()
Dlive-variables.m8 int getBool(); function
19 if ((p != 0) && (getBool()) && ([filename lastPathComponent]) && (getBool())) {
Dsvalbuilder-logic.c13 extern int getBool(); in pr15863()
14 _Bool a = getBool(); in pr15863()
/external/deqp/modules/egl/
DteglChooseConfigTests.cpp371 static EGLint getBool (de::Random& rnd) in getBool() function in deqp::egl::ChooseConfigRandomCase
373 return rnd.getBool() ? EGL_TRUE : EGL_FALSE; in getBool()
391 api |= rnd.getBool() ? EGL_OPENGL_BIT : 0; in getApiBits()
392 api |= rnd.getBool() ? EGL_OPENGL_ES_BIT : 0; in getApiBits()
393 api |= rnd.getBool() ? EGL_OPENGL_ES2_BIT : 0; in getApiBits()
394 api |= rnd.getBool() ? EGL_OPENVG_BIT : 0; in getApiBits()
401 bits |= rnd.getBool() ? EGL_WINDOW_BIT : 0; in getSurfaceType()
402 bits |= rnd.getBool() ? EGL_PIXMAP_BIT : 0; in getSurfaceType()
403 bits |= rnd.getBool() ? EGL_PBUFFER_BIT : 0; in getSurfaceType()
424 { EGL_BIND_TO_TEXTURE_RGB, ChooseConfigRandomCase::getBool, }, in genRandomAttributes()
[all …]
/external/deqp/modules/gles2/functional/
Des2fDebugMarkerTests.cpp128 const bool nullTerminate = rnd.getBool(); in iterate()
129 const bool passLength = rnd.getBool(); in iterate()
130 const bool complexMsg = rnd.getBool(); in iterate()
/external/clang/test/SemaCXX/
Dwarn-thread-safety-analysis.cpp147 bool getBool();
203 if (getBool()) in sls_fun_8()
210 if (getBool()) in sls_fun_9()
218 if (getBool()) { in sls_fun_good_6()
221 if (getBool()) { in sls_fun_good_6()
222 getBool(); // EMPTY in sls_fun_good_6()
224 getBool(); // EMPTY in sls_fun_good_6()
233 while (getBool()) { in sls_fun_good_7()
235 if (getBool()) { in sls_fun_good_7()
236 if (getBool()) { in sls_fun_good_7()
[all …]
Dwarn-logical-not-compare.cpp4 bool getBool();
117 ret = !getBool() == b1; in test1()
/external/deqp/framework/randomshaders/
DrsgToken.hpp150 bool getBool (void) const;
217 inline bool Token::getBool (void) const in getBool() function in rsg::Token
DrsgPrettyPrinter.cpp166 m_line += (token.getBool() ? "true" : "false"); in processToken()
DrsgUtils.cpp195 bool minVal = rnd.getBool(); in computeRandomValueRange()
196 bool maxVal = minVal ? true : rnd.getBool(); in computeRandomValueRange()
/external/deqp/framework/delibs/decpp/
DdeBlockBuffer.cpp148 if (rnd.getBool()) in run()
250 if (rnd.getBool()) in run()
313 if (rnd.getBool()) in runTest()
DdeRingBuffer.cpp56 bool doRead = canRead && (!canWrite || rnd.getBool()); in RingBuffer_selfTest()
DdeRandom.cpp57 DE_TEST_ASSERT(expected[i] == rnd.getBool()); in Random_selfTest()
DdeRandom.hpp46 bool getBool (void) { return deRandom_getBool(&m_rnd) == DE_TRUE; } in getBool() function in de::Random
/external/deqp/framework/opengl/
DgluContextInfo.hpp81 virtual bool getBool (int param) const;
DgluContextInfo.cpp223 bool ContextInfo::getBool (int param) const in getBool() function in glu::ContextInfo
/external/deqp/modules/gles31/functional/
Des31fDrawBuffersIndexedTests.cpp1260 if (rng.getBool()) in genRandomBlendState()
1261 blendState.enableBlend = rng.getBool(); in genRandomBlendState()
1263 if (rng.getBool()) in genRandomBlendState()
1265 if (rng.getBool()) in genRandomBlendState()
1276 if (rng.getBool()) in genRandomBlendState()
1278 if (rng.getBool()) in genRandomBlendState()
1289 if (rng.getBool()) in genRandomBlendState()
1291 const bool red = rng.getBool(); in genRandomBlendState()
1292 const bool green = rng.getBool(); in genRandomBlendState()
1293 const bool blue = rng.getBool(); in genRandomBlendState()
[all …]
Des31fSeparateShaderTests.cpp197 return rnd.getBool() ? BINDING_LOCATION : BINDING_NAME; in randomBinding()
431 oss << (rnd.getBool() ? "true" : "false"); in printRandomInitializer()
878 params.initSingle = rnd.getBool(); in genParams()
879 params.switchVtx = rnd.getBool(); in genParams()
880 params.switchFrg = rnd.getBool(); in genParams()
881 params.useUniform = rnd.getBool(); in genParams()
882 params.useProgramUniform = params.useUniform && rnd.getBool(); in genParams()
883 params.useCreateHelper = rnd.getBool(); in genParams()
884 params.useSameName = rnd.getBool(); in genParams()
Des31fProgramInterfaceQueryTests.cpp4423 if (rnd.getBool()) in generateRandomCoreShaderSet()
4426 shaderSet->setStage(glu::SHADERTYPE_FRAGMENT, rnd.getBool()); in generateRandomCoreShaderSet()
4430 shaderSet->setStage(glu::SHADERTYPE_VERTEX, rnd.getBool()); in generateRandomCoreShaderSet()
4440 …const glu::ShaderType shaderType = (rnd.getBool()) ? (glu::SHADERTYPE_VERTEX) : (glu::SHADERT… in generateRandomCoreShaderSet()
4454 shaderSet->setStage(glu::SHADERTYPE_VERTEX, rnd.getBool()); in generateRandomExtShaderSet()
4455 shaderSet->setStage(glu::SHADERTYPE_FRAGMENT, rnd.getBool()); in generateRandomExtShaderSet()
4459 if (rnd.getBool()) in generateRandomExtShaderSet()
4463 if (rnd.getBool()) in generateRandomExtShaderSet()
4465 shaderSet->setStage(glu::SHADERTYPE_TESSELLATION_CONTROL, rnd.getBool()); in generateRandomExtShaderSet()
4466 shaderSet->setStage(glu::SHADERTYPE_TESSELLATION_EVALUATION, rnd.getBool()); in generateRandomExtShaderSet()
[all …]
/external/deqp/modules/glshared/
DglsInteractionTestUtil.cpp240 bool flipX = rnd.getBool(); in computeRandomQuad()
241 bool flipY = rnd.getBool(); in computeRandomQuad()
/external/deqp/modules/gles2/stress/
Des2sDrawTests.cpp339 attribSpec.normalize = random.getBool(); in init()
341 attribSpec.useDefaultAttribute = random.getBool(); in init()
/external/deqp/modules/gles3/functional/
Des3fUniformApiTests.cpp713 result.val.boolV[i] = rnd.getBool(); in generateRandomVarValue()
2510 bool performGetActiveUniforms = rnd.getBool(); in test()
2511 const bool performGetActiveUniformsiv = rnd.getBool(); in test()
2512 …rmVsUniformsivComparison = performGetActiveUniforms && performGetActiveUniformsiv && rnd.getBool(); in test()
2513 const bool performGetUniforms = rnd.getBool(); in test()
2514 const bool performCheckUniformDefaultValues = performGetUniforms && rnd.getBool(); in test()
2515 const bool performAssignUniforms = rnd.getBool(); in test()
2516 …ool performCompareUniformValues = performGetUniforms && performAssignUniforms && rnd.getBool(); in test()
2517 const bool performRenderTest = renderingPossible && performAssignUniforms && rnd.getBool(); in test()
/external/deqp/modules/gles31/stress/
Des31sDrawTests.cpp487 attribSpec.normalize = random.getBool(); in init()
489 attribSpec.useDefaultAttribute = random.getBool(); in init()
/external/deqp/external/vulkancts/modules/vulkan/ubo/
DvktRandomUniformBlockCase.cpp106 if (numInstances > 0 || rnd.getBool()) in generateBlock()

1234