Searched refs:test_info_list_ (Results 1 - 20 of 20) sorted by relevance

/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest.cc1945 internal::ListNode<TestInfo *> * const node = test_info_list_->FindIf(
2023 return test_info_list_->CountIf(TestPassed);
2028 return test_info_list_->CountIf(TestFailed);
2032 return test_info_list_->CountIf(TestDisabled);
2037 return test_info_list_->CountIf(ShouldRunTest);
2042 return test_info_list_->size();
2060 test_info_list_ = new internal::List<TestInfo *>;
2066 test_info_list_->ForEach(internal::Delete<TestInfo>);
2069 delete test_info_list_;
2070 test_info_list_
[all...]
/external/chromium/sdch/open-vcdiff/src/gtest/src/
H A Dgtest-internal-inl.h636 internal::List<TestInfo*>& test_info_list() { return *test_info_list_; }
640 return *test_info_list_;
715 internal::List<TestInfo*>* test_info_list_; member in class:testing::TestCase
/external/chromium/testing/gtest/include/gtest/
H A Dgtest.h808 std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
812 return test_info_list_;
878 std::vector<TestInfo*> test_info_list_; member in class:testing::TestCase
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest.h800 std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
804 return test_info_list_;
870 std::vector<TestInfo*> test_info_list_; member in class:testing::TestCase
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest.h808 std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
812 return test_info_list_;
878 std::vector<TestInfo*> test_info_list_; member in class:testing::TestCase
/external/gtest/include/gtest/
H A Dgtest.h808 std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
812 return test_info_list_;
878 std::vector<TestInfo*> test_info_list_; member in class:testing::TestCase
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h808 std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
812 return test_info_list_;
878 std::vector<TestInfo*> test_info_list_; member in class:testing::TestCase
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest.h808 std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
812 return test_info_list_;
878 std::vector<TestInfo*> test_info_list_; member in class:testing::TestCase
/external/open-vcdiff/gtest/include/gtest/
H A Dgtest.h753 internal::Vector<TestInfo*>& test_info_list() { return *test_info_list_; }
757 return *test_info_list_;
806 const internal::scoped_ptr<internal::Vector<TestInfo*> > test_info_list_; member in class:testing::TestCase
/external/protobuf/gtest/include/gtest/
H A Dgtest.h671 internal::Vector<TestInfo*>& test_info_list() { return *test_info_list_; }
675 return *test_info_list_;
724 const internal::scoped_ptr<internal::Vector<TestInfo*> > test_info_list_; member in class:testing::TestCase
/external/open-vcdiff/gtest/src/
H A Dgtest.cc2342 return test_info_list_->CountIf(TestPassed);
2347 return test_info_list_->CountIf(TestFailed);
2351 return test_info_list_->CountIf(TestDisabled);
2356 return test_info_list_->CountIf(ShouldRunTest);
2361 return test_info_list_->size();
2376 test_info_list_(new internal::Vector<TestInfo*>),
2387 test_info_list_->ForEach(internal::Delete<TestInfo>);
2394 return index < 0 ? NULL : test_info_list_->GetElement(index);
2401 return index < 0 ? NULL : test_info_list_->GetElement(index);
2407 test_info_list_
[all...]
/external/protobuf/gtest/src/
H A Dgtest.cc2312 return test_info_list_->CountIf(TestPassed);
2317 return test_info_list_->CountIf(TestFailed);
2321 return test_info_list_->CountIf(TestDisabled);
2326 return test_info_list_->CountIf(ShouldRunTest);
2331 return test_info_list_->size();
2346 test_info_list_(new internal::Vector<TestInfo*>),
2357 test_info_list_->ForEach(internal::Delete<TestInfo>);
2364 return index < 0 ? NULL : test_info_list_->GetElement(index);
2371 return index < 0 ? NULL : test_info_list_->GetElement(index);
2377 test_info_list_
[all...]
/external/chromium/testing/gtest/src/
H A Dgtest.cc2360 return CountIf(test_info_list_, TestPassed);
2365 return CountIf(test_info_list_, TestFailed);
2369 return CountIf(test_info_list_, TestDisabled);
2374 return CountIf(test_info_list_, ShouldRunTest);
2379 return static_cast<int>(test_info_list_.size());
2405 ForEach(test_info_list_, internal::Delete<TestInfo>);
2412 return index < 0 ? NULL : test_info_list_[index];
2419 return index < 0 ? NULL : test_info_list_[index];
2425 test_info_list_.push_back(test_info);
2459 ForEach(test_info_list_, TestInf
[all...]
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc2259 return CountIf(test_info_list_, TestPassed);
2264 return CountIf(test_info_list_, TestFailed);
2268 return CountIf(test_info_list_, TestDisabled);
2273 return CountIf(test_info_list_, ShouldRunTest);
2278 return static_cast<int>(test_info_list_.size());
2304 ForEach(test_info_list_, internal::Delete<TestInfo>);
2311 return index < 0 ? NULL : test_info_list_[index];
2318 return index < 0 ? NULL : test_info_list_[index];
2324 test_info_list_.push_back(test_info);
2358 ForEach(test_info_list_, TestInf
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest.cc2360 return CountIf(test_info_list_, TestPassed);
2365 return CountIf(test_info_list_, TestFailed);
2369 return CountIf(test_info_list_, TestDisabled);
2374 return CountIf(test_info_list_, ShouldRunTest);
2379 return static_cast<int>(test_info_list_.size());
2405 ForEach(test_info_list_, internal::Delete<TestInfo>);
2412 return index < 0 ? NULL : test_info_list_[index];
2419 return index < 0 ? NULL : test_info_list_[index];
2425 test_info_list_.push_back(test_info);
2459 ForEach(test_info_list_, TestInf
[all...]
/external/gtest/src/
H A Dgtest.cc2360 return CountIf(test_info_list_, TestPassed);
2365 return CountIf(test_info_list_, TestFailed);
2369 return CountIf(test_info_list_, TestDisabled);
2374 return CountIf(test_info_list_, ShouldRunTest);
2379 return static_cast<int>(test_info_list_.size());
2405 ForEach(test_info_list_, internal::Delete<TestInfo>);
2412 return index < 0 ? NULL : test_info_list_[index];
2419 return index < 0 ? NULL : test_info_list_[index];
2425 test_info_list_.push_back(test_info);
2459 ForEach(test_info_list_, TestInf
[all...]
/external/llvm/utils/unittest/googletest/
H A Dgtest.cc2331 return CountIf(test_info_list_, TestPassed);
2336 return CountIf(test_info_list_, TestFailed);
2340 return CountIf(test_info_list_, TestDisabled);
2345 return CountIf(test_info_list_, ShouldRunTest);
2350 return static_cast<int>(test_info_list_.size());
2376 ForEach(test_info_list_, internal::Delete<TestInfo>);
2383 return index < 0 ? NULL : test_info_list_[index];
2390 return index < 0 ? NULL : test_info_list_[index];
2396 test_info_list_.push_back(test_info);
2430 ForEach(test_info_list_, TestInf
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest.cc2360 return CountIf(test_info_list_, TestPassed);
2365 return CountIf(test_info_list_, TestFailed);
2369 return CountIf(test_info_list_, TestDisabled);
2374 return CountIf(test_info_list_, ShouldRunTest);
2379 return static_cast<int>(test_info_list_.size());
2405 ForEach(test_info_list_, internal::Delete<TestInfo>);
2412 return index < 0 ? NULL : test_info_list_[index];
2419 return index < 0 ? NULL : test_info_list_[index];
2425 test_info_list_.push_back(test_info);
2459 ForEach(test_info_list_, TestInf
[all...]
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc3832 return CountIf(test_info_list_, TestPassed);
3837 return CountIf(test_info_list_, TestFailed);
3842 return CountIf(test_info_list_, TestReportableDisabled);
3847 return CountIf(test_info_list_, TestDisabled);
3852 return CountIf(test_info_list_, TestReportable);
3857 return CountIf(test_info_list_, ShouldRunTest);
3862 return static_cast<int>(test_info_list_.size());
3888 ForEach(test_info_list_, internal::Delete<TestInfo>);
3895 return index < 0 ? NULL : test_info_list_[index];
3902 return index < 0 ? NULL : test_info_list_[inde
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h18237 std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
18241 return test_info_list_;
18318 std::vector<TestInfo*> test_info_list_; member in class:testing::TestCase

Completed in 456 milliseconds