Searched defs:isOk (Results 1 - 25 of 98) sorted by relevance

1234

/external/deqp/modules/internal/
H A DditSRGB8ConversionTest.cpp70 bool isOk = true; local
85 isOk = false;
88 if (isOk)
H A DditBuildInfoTests.cpp128 const bool isOk = valueName != DE_NULL; local
133 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
134 isOk ? "Pass" : "No enum name found");
157 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x01; local
159 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x02; local
167 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
168 isOk ? "Pass" : "Configured endianness inconsistent");
H A DditImageCompareTests.cpp96 const bool isOk = de::inRange(result, m_minBound, m_maxBound); local
97 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
98 isOk ? "Pass" : "Metric out of bounds");
142 const bool isOk = result == m_expectedResult; local
143 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
144 isOk ? "Pass" : "Wrong comparison result");
/external/deqp/modules/egl/
H A DteglClientExtensionTests.cpp188 bool isOk = true; local
220 isOk = false;
229 isOk = false;
233 if (isOk)
H A DteglRenderCase.cpp123 bool isOk = true; local
146 isOk = false;
170 isOk = false;
197 isOk = false;
202 if (!isOk && m_testCtx.getTestResult() == QP_TEST_RESULT_PASS)
H A DteglNativeColorMappingTests.cpp329 bool isOk = true; local
351 isOk = false;
363 return isOk;
372 bool isOk = true; local
392 isOk = false;
404 return isOk;
412 bool isOk = true; local
433 isOk = false;
445 return isOk;
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DDynamicTableModel.java183 private boolean isOk = true; field in class:DynamicTableModel.TableModelIterator
228 return isOk && lastElement < calculatedNumElements;
234 isOk = false;
272 isOk = false;
/external/deqp/modules/gles2/functional/
H A Des2fImplementationLimitTests.cpp162 const bool isOk = compare<T>(m_minRequiredValue, value); local
167 if (!isOk)
170 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
171 isOk ? "Pass" : "Requirement not satisfied");
H A Des2fDepthTests.cpp184 bool isOk = errorCodesOk && imagesOk; local
185 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
186 isOk ? "Pass" : failReason);
H A Des2fShaderFragDataTests.cpp76 const bool isOk = compareThreshold(resultColor, expectedColor, threshold); local
78 if (!isOk)
180 if (!program.isOk())
202 bool isOk; local
207 isOk = compareSingleColor(m_testCtx.getLog(), result, tcu::RGBA::green(), threshold);
209 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
210 isOk ? "Pass" : "Image comparison failed");
H A Des2fTextureSizeTests.cpp157 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold); local
159 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
160 isOk ? "Pass" : "Image comparison failed");
H A Des2fTextureWrapTests.cpp217 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold); local
219 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
220 isOk ? "Pass" : "Image comparison failed");
/external/deqp/modules/gles3/functional/
H A Des3fBufferCopyTests.cpp88 bool isOk = true; local
109 isOk = verifier.verify(srcBuf, srcRef.getPtr(), 0, m_srcSize, m_srcTarget) && isOk;
110 isOk = verifier.verify(dstBuf, dstRef.getPtr(), 0, m_dstSize, m_dstTarget) && isOk;
121 isOk = verifier.verify(srcBuf, srcRef.getPtr(), 0, m_srcSize, m_srcTarget) && isOk;
122 isOk = verifier.verify(dstBuf, dstRef.getPtr(), 0, m_dstSize, m_dstTarget) && isOk;
124 m_testCtx.setTestResult(isOk
172 bool isOk = true; local
[all...]
H A Des3fDepthTests.cpp187 bool isOk = errorCodesOk && imagesOk; local
188 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
189 isOk ? "Pass" : failReason);
H A Des3fFboTestCase.cpp116 bool isOk = compare(reference, result); local
117 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
118 isOk ? "Pass" : "Image comparison failed");
H A Des3fShaderFragDataTests.cpp76 const bool isOk = compareThreshold(resultColor, expectedColor, threshold); local
78 if (!isOk)
180 if (!program.isOk())
202 bool isOk; local
207 isOk = compareSingleColor(m_testCtx.getLog(), result, tcu::RGBA::green(), threshold);
209 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
210 isOk ? "Pass" : "Image comparison failed");
251 const int indexLoc = program.isOk() ? gl.getUniformLocation(program.getProgram(), "u_index") : -1;
280 if (!program.isOk())
H A Des3fTextureSizeTests.cpp157 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold); local
159 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
160 isOk ? "Pass" : "Image comparison failed");
H A Des3fTextureSwizzleTests.cpp216 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold); local
218 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
219 isOk ? "Pass" : "Image comparison failed");
/external/deqp/modules/gles31/functional/
H A Des31fFboTestCase.cpp120 bool isOk = compare(reference, result); local
121 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
122 isOk ? "Pass" : "Image comparison failed");
H A Des31fShaderBuiltinConstantTests.cpp229 if (!shaderExecutor->isOk())
268 const bool isOk = verifyInShaderType(glu::ShaderType(shaderType), reference); local
269 DE_ASSERT(isOk || m_testCtx.getTestResult() != QP_TEST_RESULT_PASS);
270 DE_UNREF(isOk);
/external/deqp/modules/glshared/
H A DglsSamplerObjectTest.cpp244 if (!m_program->isOk())
568 bool isOk = pixelThresholdCompare (log, "Sampler render result", "Result from rendering with sampler", samplerRef, samplerResult, tcu::RGBA(0, 0, 0, 0), tcu::COMPARE_LOG_RESULT); local
571 isOk = false;
573 if (!isOk)
763 if (!m_program->isOk())
1159 bool isOk = pixelThresholdCompare (log, "Sampler render result", "Result from rendering with sampler", samplerRef, samplerResult, tcu::RGBA(0, 0, 0, 0), tcu::COMPARE_LOG_RESULT); local
1162 isOk = false;
1164 if (!isOk)
/external/deqp/scripts/
H A Drun_nightly.py487 isOk = runNightly(config) variable
488 if not isOk:
/external/icu/icu4c/source/test/intltest/
H A Dbidiconf.cpp580 UBool isOk=TRUE; local
584 isOk=FALSE;
597 isOk=FALSE;
603 if(!isOk) {
617 return isOk;
626 UBool isOk=TRUE; local
644 isOk=FALSE;
651 if(isOk && orderingCount!=visualIndex) {
654 isOk=FALSE;
656 if(!isOk) {
[all...]
/external/deqp/framework/common/
H A DtcuImageCompare.cpp124 const bool isOk = boolAll(lessThanEqual(diff, threshold)); local
126 if (isOk)
143 const bool isOk = boolAll(lessThanEqual(diff, threshold)); local
145 pixelFoundForReference = isOk;
166 const bool isOk = boolAll(lessThanEqual(diff, threshold)); local
168 pixelFoundForResult = isOk;
221 bool isOk = difference <= threshold; local
225 if (!isOk || logMode == COMPARE_LOG_EVERYTHING)
234 if (!isOk)
253 return isOk;
509 const bool isOk = boolAll(lessThanEqual(diff, threshold)); local
596 bool isOk = boolAll(lessThanEqual(diff, threshold)); local
680 const bool isOk = boolAll(lessThanEqual(diff, threshold)); local
765 bool isOk = boolAll(lessThanEqual(diff, threshold)); local
1009 bool isOk = bilinearCompare(reference, result, errorMask, threshold); local
[all...]
/external/deqp/framework/opengl/
H A DgluShaderProgram.hpp190 bool isOk (void) const { return m_program.getLinkStatus(); } function in class:glu::ShaderProgram

Completed in 1096 milliseconds

1234