Searched defs:passed (Results 1 - 25 of 38) sorted by relevance

12

/external/expat/tests/
H A Dminicheck.c150 int passed = runner->nchecks - runner->nfailures; local
151 double percentage = ((double) passed) / runner->nchecks;
/external/google-breakpad/src/testing/gtest/include/gtest/
H A Dgtest-test-part.h88 // Returns true iff the test part passed.
89 bool passed() const { return type_ == kSuccess; } function in class:testing::TestPartResult
/external/gtest/include/gtest/
H A Dgtest-test-part.h90 // Returns true iff the test part passed.
91 bool passed() const { return type_ == kSuccess; } function in class:testing::TestPartResult
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-test-part.h88 // Returns true iff the test part passed.
89 bool passed() const { return type_ == kSuccess; } function in class:testing::TestPartResult
/external/mesa3d/src/gallium/tests/unit/
H A Dtranslate_test.c65 unsigned passed = 0; local
313 ++passed;
322 printf("%u/%u tests passed for translate_%s\n", passed, total, argv[1]);
323 return passed != total;
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-test-part.h88 // Returns true iff the test part passed.
89 bool passed() const { return type_ == kSuccess; } function in class:testing::TestPartResult
/external/protobuf/gtest/include/gtest/
H A Dgtest-test-part.h88 // Returns true iff the test part passed.
89 bool passed() const { return type_ == kSuccess; } function in class:testing::TestPartResult
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11_shared.c27 struct os_reltime now, passed; local
33 os_reltime_sub(&now, &sta->sa_query_start, &passed);
34 tu = (passed.sec * 1000000 + passed.usec) / 1024;
H A Dsta_info.c913 struct os_reltime now, passed; local
915 os_reltime_sub(&now, &sta->sa_query_start, &passed);
916 tu = (passed.sec * 1000000 + passed.usec) / 1024;
/external/wpa_supplicant_8/src/ap/
H A Dieee802_11_shared.c27 struct os_reltime now, passed; local
33 os_reltime_sub(&now, &sta->sa_query_start, &passed);
34 tu = (passed.sec * 1000000 + passed.usec) / 1024;
H A Dsta_info.c913 struct os_reltime now, passed; local
915 os_reltime_sub(&now, &sta->sa_query_start, &passed);
916 tu = (passed.sec * 1000000 + passed.usec) / 1024;
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_11_shared.c27 struct os_reltime now, passed; local
33 os_reltime_sub(&now, &sta->sa_query_start, &passed);
34 tu = (passed.sec * 1000000 + passed.usec) / 1024;
H A Dsta_info.c913 struct os_reltime now, passed; local
915 os_reltime_sub(&now, &sta->sa_query_start, &passed);
916 tu = (passed.sec * 1000000 + passed.usec) / 1024;
/external/icu/icu4c/source/test/cintltst/
H A Dcucdapi.c317 UBool passed = TRUE; local
326 passed = FALSE;
335 if(passed==FALSE){
/external/sonic/
H A Dwave.c294 int passed = 1; local
299 passed = 0;
305 passed = 0;
309 passed = 0;
315 passed = 0;
321 return passed;
/external/deqp/modules/gles31/functional/
H A Des31fFboNoAttachmentTests.cpp249 GLuint passed = 0; local
251 gl.getQueryObjectuiv(query, GL_QUERY_RESULT, &passed);
256 if (passed)
257 log << TestLog::Message << "Query passed" << TestLog::EndMessage;
261 return passed != 0;
H A Des31fMultisampleTests.cpp468 bool passed = tcu::pixelThresholdCompare(log, local
476 if (passed)
479 m_context.getTestContext().setTestResult(passed ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
480 passed ? "Passed" : "Failed");
/external/mesa3d/src/mesa/swrast/
H A Ds_depth.c50 passed++; \
73 GLuint passed = 0; local
105 return passed;
121 GLuint passed = 0; local
153 return passed;
280 * \return approx number of pixels that passed (only zero is reliable)
294 GLuint passed; local
351 passed = depth_test_span16(ctx, count, zBufferVals, fragZ, mask);
353 passed = depth_test_span32(ctx, count, zBufferVals, fragZ, mask);
396 if (passed < coun
[all...]
H A Ds_span.c717 GLuint passed = 0; local
723 passed += mask[i];
731 passed += mask[i];
734 return passed > 0;
1241 /* update count of 'passed' fragments */
/external/pdfium/samples/
H A Dimage_diff.cc230 const char* passed = percent > 0.0 ? "failed" : "passed"; local
231 printf("histogram diff: %01.2f%% %s\n", percent, passed);
236 const char* passed = percent > 0.0 ? "failed" : "passed"; local
237 printf("%s: %01.2f%% %s\n", diff_name, percent, passed);
282 printf("diff: %01.2f%% passed\n", percent);
/external/valgrind/callgrind/
H A Dbbcc.c570 Int passed = 0, csp; local
599 passed = CLG_(current_state).jmps_passed;
600 CLG_ASSERT(passed <= last_bb->cjmp_count);
601 jmpkind = last_bb->jmp[passed].jmpkind;
602 isConditionalJump = (passed < last_bb->cjmp_count);
607 last_bbcc->jmp[passed].ecounter++;
610 UInt instr_count = last_bb->jmp[passed].instr+1;
619 UInt instr_count = last_bb->jmp[passed].instr+1;
715 passed = top_ce->jcc->jmp;
865 /* FIXME: take the real passed coun
[all...]
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-death-test_test.cc826 int status, bool passed);
874 TestRole role, int status, bool passed) :
875 parent_(parent), role_(role), status_(status), passed_(passed) {
920 int status, bool passed) {
924 passed_ = passed;
873 MockDeathTest(MockDeathTestFactory *parent, TestRole role, int status, bool passed) argument
918 SetParameters(bool create, DeathTest::TestRole role, int status, bool passed) argument
/external/gtest/test/
H A Dgtest-death-test_test.cc824 int status, bool passed);
872 TestRole role, int status, bool passed) :
873 parent_(parent), role_(role), status_(status), passed_(passed) {
918 int status, bool passed) {
922 passed_ = passed;
871 MockDeathTest(MockDeathTestFactory *parent, TestRole role, int status, bool passed) argument
916 SetParameters(bool create, DeathTest::TestRole role, int status, bool passed) argument
/external/icu/icu4c/source/test/intltest/
H A Dtzregts.cpp402 UBool passed; local
407 passed = (tzOffset == (tzRawOffset + 3600000));
412 passed = (tzOffset == tzRawOffset);
423 if (passed)
428 if (passed)
434 return passed;
/external/libpng/contrib/libtests/
H A Dtarith.c612 int passed = 0; local
711 ++passed;
724 printf("%d tests including %d overflows, %d passed, %d failed (%d 64 bit "
725 "errors)\n", tested, overflow, passed, error, error64);

Completed in 5799 milliseconds

12