Searched defs:Failed (Results 51 - 58 of 58) sorted by relevance

123

/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc330 return test_case->should_run() && test_case->Failed();
1853 bool TestResult::Failed() const { function in class:testing::TestResult
2769 if (test_info.result()->Failed())
3676 bool UnitTest::Failed() const { return impl()->Failed(); } function in class:testing::UnitTest
/external/mesa3d/src/gtest/src/
H A Dgtest.cc330 return test_case->should_run() && test_case->Failed();
1853 bool TestResult::Failed() const { function in class:testing::TestResult
2797 if (test_info.result()->Failed())
3704 bool UnitTest::Failed() const { return impl()->Failed(); } function in class:testing::UnitTest
/external/protobuf/gtest/src/
H A Dgtest.cc311 return test_case->should_run() && test_case->Failed();
1848 bool TestResult::Failed() const { function in class:testing::TestResult
2420 return impl->should_run() && impl->result()->Failed();
3480 bool UnitTest::Failed() const { return impl()->Failed(); } function in class:testing::UnitTest
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc977 bool Passed() const { return !Failed(); }
981 bool Failed() const { function in class:testing::internal::UnitTestImpl
982 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
1068 << "Failed to get the current working directory.";
1821 return test_case->should_run() && test_case->Failed();
3331 bool TestResult::Failed() const { function in class:testing::TestResult
4284 if (test_info.result()->Failed())
5212 bool UnitTest::Failed() const { return impl()->Failed(); } function in class:testing::UnitTest
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp2037 bool Failed = D.getMutableDeclSpec().SetTypeQual( local
2039 (void)Failed;
2040 assert(!Failed && "Making a constexpr member const shouldn't fail");
11498 bool Failed) {
11501 !Failed) {
11506 Failed = true;
11509 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
11512 Failed = true;
11514 if (!Failed && !Cond) {
11521 Failed
11494 BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc, Expr *AssertExpr, StringLiteral *AssertMessage, SourceLocation RParenLoc, bool Failed) argument
[all...]
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc977 bool Passed() const { return !Failed(); }
981 bool Failed() const { function in class:testing::internal::UnitTestImpl
982 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
1068 << "Failed to get the current working directory.";
1821 return test_case->should_run() && test_case->Failed();
3331 bool TestResult::Failed() const { function in class:testing::TestResult
4284 if (test_info.result()->Failed())
5212 bool UnitTest::Failed() const { return impl()->Failed(); } function in class:testing::UnitTest
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h8524 // << "Failed to die on request " << i;
17096 kNonFatalFailure, // Failed but the test can continue.
17097 kFatalFailure // Failed and the test should be terminated.
17929 bool Passed() const { return !Failed(); }
17932 bool Failed() const;
18216 bool Passed() const { return !Failed(); }
18219 bool Failed() const { return failed_test_count() > 0; } function in class:testing::TestCase
18281 return test_info->should_run() && test_info->result()->Failed();
18619 bool Failed() const;
19276 #define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed")
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h8524 // << "Failed to die on request " << i;
17096 kNonFatalFailure, // Failed but the test can continue.
17097 kFatalFailure // Failed and the test should be terminated.
17929 bool Passed() const { return !Failed(); }
17932 bool Failed() const;
18216 bool Passed() const { return !Failed(); }
18219 bool Failed() const { return failed_test_count() > 0; } function in class:testing::TestCase
18281 return test_info->should_run() && test_info->result()->Failed();
18619 bool Failed() const;
19276 #define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed")
[all...]

Completed in 494 milliseconds

123