HomeSort by relevance Sort by last modified time
    Searched defs:isOk (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/deqp/modules/egl/
teglClientExtensionTests.cpp 189 bool isOk = true;
214 isOk = false;
223 isOk = false;
227 if (isOk)
teglNativeColorMappingTests.cpp 323 bool isOk = true;
345 isOk = false;
357 return isOk;
365 bool isOk = true;
385 isOk = false;
397 return isOk;
405 bool isOk = true;
426 isOk = false;
438 return isOk;
teglQueryContextTests.cpp 99 bool isOk = true;
119 isOk = false;
143 isOk = false;
173 isOk = false;
180 if (!isOk && m_testCtx.getTestResult() == QP_TEST_RESULT_PASS)
teglRenderCase.cpp 139 bool isOk = true;
159 isOk = false;
181 isOk = false;
206 isOk = false;
211 if (!isOk && m_testCtx.getTestResult() == QP_TEST_RESULT_PASS)
  /external/deqp/modules/gles2/functional/
es2fImplementationLimitTests.cpp 162 const bool isOk = compare<T>(m_minRequiredValue, value);
167 if (!isOk)
170 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
171 isOk ? "Pass" : "Requirement not satisfied");
es2fDepthTests.cpp 184 bool isOk = errorCodesOk && imagesOk;
185 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
186 isOk ? "Pass" : failReason);
es2fShaderFragDataTests.cpp 76 const bool isOk = compareThreshold(resultColor, expectedColor, threshold);
78 if (!isOk)
180 if (!program.isOk())
202 bool isOk;
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");
es2fBufferTestUtil.cpp 77 bool isOk = true;
93 isOk = false;
131 log << TestLog::Message << (isOk ? "Verification passed." : "Verification FAILED!") << TestLog::EndMessage;
134 return isOk;
298 if (!m_program->isOk())
418 bool isOk = true;
471 isOk = false;
481 return isOk;
508 if (!m_program->isOk())
586 bool isOk = true
    [all...]
es2fTextureFormatTests.cpp 194 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
196 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
197 isOk ? "Pass" : "Image comparison failed");
484 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
486 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
487 isOk ? "Pass" : "Image comparison failed");
es2fTextureSizeTests.cpp 157 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
159 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
160 isOk ? "Pass" : "Image comparison failed");
es2fTextureWrapTests.cpp 217 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
219 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
220 isOk ? "Pass" : "Image comparison failed");
  /external/deqp/modules/internal/
ditBuildInfoTests.cpp 128 const bool isOk = valueName != DE_NULL;
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;
159 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x02;
167 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
168 isOk ? "Pass" : "Configured endianness inconsistent");
ditImageCompareTests.cpp 92 const bool isOk = de::inRange(result, m_minBound, m_maxBound);
93 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
94 isOk ? "Pass" : "Metric out of bounds");
138 const bool isOk = result == m_expectedResult;
139 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
140 isOk ? "Pass" : "Wrong comparison result");
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapResponse.java 61 public boolean isOk() {
  /external/deqp/modules/gles3/functional/
es3fDepthTests.cpp 187 bool isOk = errorCodesOk && imagesOk;
188 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
189 isOk ? "Pass" : failReason);
es3fBufferCopyTests.cpp 88 bool isOk = true;
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 ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL
    [all...]
es3fBufferMapTests.cpp 70 bool isOk = false;
86 isOk = compareByteArrays(log, (const deUint8*)ptr, refBuf.getPtr(m_mapOffset), m_mapSize);
93 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
94 isOk ? "Pass" : "Buffer verification failed");
141 bool isOk = verifier.verify(buf, refBuf.getPtr(), 0, m_size, m_bufferTarget);
144 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
145 isOk ? "Pass" : "Buffer verification failed");
195 bool isOk = verifier.verify(buf, refBuf.getPtr(), 0, m_bufferSize, m_bufferTarget);
198 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
199 isOk ? "Pass" : "Buffer verification failed")
    [all...]
es3fFboTestCase.cpp 116 bool isOk = compare(reference, result);
117 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
118 isOk ? "Pass" : "Image comparison failed");
es3fImplementationLimitTests.cpp 246 const bool isOk = compare<T>(m_minRequiredValue, value);
251 if (!isOk)
254 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
255 isOk ? "Pass" : "Requirement not satisfied");
393 const bool isOk = compareExtensionLists(nonIndexedExts, indexedExts);
399 if (!isOk)
408 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
409 isOk ? "Pass" : "Invalid extension list");
es3fShaderFragDataTests.cpp 76 const bool isOk = compareThreshold(resultColor, expectedColor, threshold);
78 if (!isOk)
180 if (!program.isOk())
202 bool isOk;
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())
es3fTextureSizeTests.cpp 157 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
159 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
160 isOk ? "Pass" : "Image comparison failed");
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapResponseParserTest.java 231 assertTrue(r.isOk());
235 assertTrue(r.isOk());
239 assertTrue(r.isOk());
374 assertTrue(p.readResponse().isOk());
  /external/chromium_org/third_party/icu/source/test/intltest/
bidiconf.cpp 616 UBool isOk=TRUE;
620 isOk=FALSE;
633 isOk=FALSE;
639 if(!isOk) {
653 return isOk;
662 UBool isOk=TRUE;
680 isOk=FALSE;
687 if(isOk && orderingCount!=visualIndex) {
690 isOk=FALSE;
692 if(!isOk) {
    [all...]
  /external/deqp/framework/common/
tcuImageCompare.cpp 111 const bool isOk = boolAll(lessThanEqual(diff, threshold));
113 if (isOk)
145 const bool isOk = boolAll(lessThanEqual(diff, threshold));
147 pixelFoundForReference |= isOk;
158 const bool isOk = boolAll(lessThanEqual(diff, threshold));
160 pixelFoundForResult |= isOk;
214 bool isOk = difference <= threshold;
218 if (!isOk || logMode == COMPARE_LOG_EVERYTHING)
227 if (!isOk)
246 return isOk;
    [all...]
  /external/deqp/framework/opengl/
gluShaderProgram.hpp 177 bool isOk (void) const { return m_program.getLinkStatus(); }

Completed in 1147 milliseconds

1 2 3 4