Searched refs:should_run (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/testing/gtest/test/
H A Dgtest-unittest-api_test.cc153 EXPECT_TRUE(test_case->should_run());
164 EXPECT_FALSE(tests[0]->should_run());
170 EXPECT_TRUE(tests[1]->should_run());
176 EXPECT_TRUE(tests[2]->should_run());
182 EXPECT_TRUE(tests[3]->should_run());
193 EXPECT_TRUE(test_case->should_run());
204 EXPECT_TRUE(tests[0]->should_run());
216 EXPECT_FALSE(test_case->should_run());
226 EXPECT_FALSE(test_info->should_run());
251 EXPECT_TRUE(test_cases[0]->should_run());
[all...]
/external/gtest/test/
H A Dgtest-unittest-api_test.cc153 EXPECT_TRUE(test_case->should_run());
164 EXPECT_FALSE(tests[0]->should_run());
170 EXPECT_TRUE(tests[1]->should_run());
176 EXPECT_TRUE(tests[2]->should_run());
182 EXPECT_TRUE(tests[3]->should_run());
193 EXPECT_TRUE(test_case->should_run());
204 EXPECT_TRUE(tests[0]->should_run());
216 EXPECT_FALSE(test_case->should_run());
226 EXPECT_FALSE(test_info->should_run());
251 EXPECT_TRUE(test_cases[0]->should_run());
[all...]
/external/protobuf/gtest/test/
H A Dgtest-unittest-api_test.cc152 EXPECT_TRUE(test_case->should_run());
163 EXPECT_FALSE(tests[0]->should_run());
169 EXPECT_TRUE(tests[1]->should_run());
175 EXPECT_TRUE(tests[2]->should_run());
181 EXPECT_TRUE(tests[3]->should_run());
192 EXPECT_TRUE(test_case->should_run());
204 EXPECT_TRUE(tests[0]->should_run());
216 EXPECT_FALSE(test_case->should_run());
226 EXPECT_FALSE(test_info->should_run());
251 EXPECT_TRUE(test_cases[0]->should_run());
[all...]
/external/chromium_org/third_party/skia/tests/
H A Dskia_test.cpp104 static bool should_run(const char* testName, bool isGPUTest) { function
166 if (should_run(test->getName(), test->isGPUTest())) {
184 if (!should_run(test->getName(), test->isGPUTest())) {
/external/skia/tests/
H A Dskia_test.cpp121 static bool should_run(const char* testName, bool isGPUTest) { function
185 if (should_run(test->getName(), test->isGPUTest())) {
202 if (!should_run(test->getName(), test->isGPUTest())) {
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest.h669 bool should_run() const { return should_run_; } function in class:testing::TestInfo
773 bool should_run() const { return should_run_; } function in class:testing::TestCase
819 // Sets the should_run member.
847 return test_info->should_run() && test_info->result()->Passed();
852 return test_info->should_run() && test_info->result()->Failed();
862 return test_info->should_run();
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h669 bool should_run() const { return should_run_; } function in class:testing::TestInfo
773 bool should_run() const { return should_run_; } function in class:testing::TestCase
819 // Sets the should_run member.
847 return test_info->should_run() && test_info->result()->Passed();
852 return test_info->should_run() && test_info->result()->Failed();
862 return test_info->should_run();
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest.h669 bool should_run() const { return should_run_; } function in class:testing::TestInfo
773 bool should_run() const { return should_run_; } function in class:testing::TestCase
819 // Sets the should_run member.
847 return test_info->should_run() && test_info->result()->Passed();
852 return test_info->should_run() && test_info->result()->Failed();
862 return test_info->should_run();
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest.h689 bool should_run() const { return should_run_; } function in class:testing::TestInfo
803 bool should_run() const { return should_run_; } function in class:testing::TestCase
859 // Sets the should_run member.
887 return test_info->should_run() && test_info->result()->Passed();
892 return test_info->should_run() && test_info->result()->Failed();
913 return test_info->should_run();
/external/gtest/include/gtest/
H A Dgtest.h665 bool should_run() const { return should_run_; } function in class:testing::TestInfo
779 bool should_run() const { return should_run_; } function in class:testing::TestCase
835 // Sets the should_run member.
863 return test_info->should_run() && test_info->result()->Passed();
868 return test_info->should_run() && test_info->result()->Failed();
889 return test_info->should_run();
/external/protobuf/gtest/src/
H A Dgtest.cc306 return test_case->should_run() && test_case->Passed();
311 return test_case->should_run() && test_case->Failed();
317 return test_case->should_run();
2187 bool TestInfo::should_run() const { return impl_->should_run(); } function in class:testing::TestInfo
2414 return impl->should_run() && impl->result()->Passed();
2420 return impl->should_run() && impl->result()->Failed();
2430 return test_info->impl()->should_run();
2786 if (!test_case.should_run() || (test_case.failed_test_count() == 0)) {
2791 if (!test_info.should_run() || test_inf
[all...]
H A Dgtest-internal-inl.h523 bool should_run() const { return should_run_; } function in class:testing::internal::TestInfoImpl
525 // Sets the should_run member.
/external/protobuf/gtest/include/gtest/
H A Dgtest.h562 bool should_run() const;
636 bool should_run() const { return should_run_; } function in class:testing::TestCase
682 // Sets the should_run member.
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc336 return test_case->should_run() && test_case->Passed();
341 return test_case->should_run() && test_case->Failed();
347 return test_case->should_run();
3127 if (!test_case.should_run() || (test_case.failed_test_count() == 0)) {
3132 if (!test_info.should_run() || test_info.result()->Passed()) {
3584 test_info.should_run() ? "run" : "notrun");
4778 test_case->set_should_run(test_case->should_run() || is_selected);
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest.cc325 return test_case->should_run() && test_case->Passed();
330 return test_case->should_run() && test_case->Failed();
336 return test_case->should_run();
2838 if (!test_case.should_run() || (test_case.failed_test_count() == 0)) {
2843 if (!test_info.should_run() || test_info.result()->Passed()) {
3241 << (test_info.should_run() ? "run" : "notrun")
4424 test_case->set_should_run(test_case->should_run() || is_selected);
/external/gtest/src/
H A Dgtest.cc332 return test_case->should_run() && test_case->Passed();
337 return test_case->should_run() && test_case->Failed();
343 return test_case->should_run();
2840 if (!test_case.should_run() || (test_case.failed_test_count() == 0)) {
2845 if (!test_info.should_run() || test_info.result()->Passed()) {
3301 test_info.should_run() ? "run" : "notrun");
4502 test_case->set_should_run(test_case->should_run() || is_selected);
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc325 return test_case->should_run() && test_case->Passed();
330 return test_case->should_run() && test_case->Failed();
336 return test_case->should_run();
2810 if (!test_case.should_run() || (test_case.failed_test_count() == 0)) {
2815 if (!test_info.should_run() || test_info.result()->Passed()) {
3213 << (test_info.should_run() ? "run" : "notrun")
4392 test_case->set_should_run(test_case->should_run() || is_selected);
/external/mesa3d/src/gtest/src/
H A Dgtest.cc325 return test_case->should_run() && test_case->Passed();
330 return test_case->should_run() && test_case->Failed();
336 return test_case->should_run();
2838 if (!test_case.should_run() || (test_case.failed_test_count() == 0)) {
2843 if (!test_info.should_run() || test_info.result()->Passed()) {
3241 << (test_info.should_run() ? "run" : "notrun")
4424 test_case->set_should_run(test_case->should_run() || is_selected);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1816 return test_case->should_run() && test_case->Passed();
1821 return test_case->should_run() && test_case->Failed();
1827 return test_case->should_run();
4324 if (!test_case.should_run() || (test_case.failed_test_count() == 0)) {
4329 if (!test_info.should_run() || test_info.result()->Passed()) {
4785 test_info.should_run() ? "run" : "notrun");
5986 test_case->set_should_run(test_case->should_run() || is_selected);
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1816 return test_case->should_run() && test_case->Passed();
1821 return test_case->should_run() && test_case->Failed();
1827 return test_case->should_run();
4324 if (!test_case.should_run() || (test_case.failed_test_count() == 0)) {
4329 if (!test_info.should_run() || test_info.result()->Passed()) {
4785 test_info.should_run() ? "run" : "notrun");
5986 test_case->set_should_run(test_case->should_run() || is_selected);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h18078 bool should_run() const { return should_run_; } function in class:testing::TestInfo
18192 bool should_run() const { return should_run_; } function in class:testing::TestCase
18248 // Sets the should_run member.
18276 return test_info->should_run() && test_info->result()->Passed();
18281 return test_info->should_run() && test_info->result()->Failed();
18302 return test_info->should_run();
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h18078 bool should_run() const { return should_run_; } function in class:testing::TestInfo
18192 bool should_run() const { return should_run_; } function in class:testing::TestCase
18248 // Sets the should_run member.
18276 return test_info->should_run() && test_info->result()->Passed();
18281 return test_info->should_run() && test_info->result()->Failed();
18302 return test_info->should_run();

Completed in 2220 milliseconds