HomeSort by relevance Sort by last modified time
    Searched refs:TestInfo (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium/base/test/
test_suite.h 18 class TestInfo;
26 typedef bool (*TestMatch)(const testing::TestInfo&);
32 static bool IsMarkedFlaky(const testing::TestInfo& test);
35 static bool IsMarkedFailing(const testing::TestInfo& test);
40 static bool IsMarkedMaybe(const testing::TestInfo& test);
43 static bool ShouldIgnoreFailure(const testing::TestInfo& test);
46 static bool NonIgnoredFailures(const testing::TestInfo& test);
test_suite.cc 38 virtual void OnTestStart(const testing::TestInfo& test_info) {
70 bool TestSuite::IsMarkedFlaky(const testing::TestInfo& test) {
75 bool TestSuite::IsMarkedFailing(const testing::TestInfo& test) {
80 bool TestSuite::IsMarkedMaybe(const testing::TestInfo& test) {
85 bool TestSuite::ShouldIgnoreFailure(const testing::TestInfo& test) {
92 bool TestSuite::NonIgnoredFailures(const testing::TestInfo& test) {
  /external/chromium/chrome/browser/diagnostics/
diagnostics_model.h 47 class TestInfo {
49 virtual ~TestInfo() {}
70 virtual TestInfo& GetTest(size_t id) = 0;
diagnostics_test.h 16 // It also Implements the TestInfo interface providing the storage
24 class DiagnosticTest : public DiagnosticsModel::TestInfo {
  /external/webkit/Source/WebKit/gtk/tests/
testhittestresult.c 30 } TestInfo;
36 TestInfo* info;
39 TestInfo*
42 TestInfo* info;
44 info = g_slice_new(TestInfo);
52 test_info_destroy(TestInfo* info)
55 g_slice_free(TestInfo, info);
63 fixture->info = (TestInfo*)data;
79 TestInfo* info = (TestInfo*)data
    [all...]
testcopyandpaste.c 33 } TestInfo;
39 TestInfo* info;
42 TestInfo*
45 TestInfo* info;
46 info = g_slice_new0(TestInfo);
54 test_info_destroy(TestInfo* info)
58 g_slice_free(TestInfo, info);
123 fixture->info = (TestInfo*)data;
200 fixture->info = (TestInfo*)data;
testkeyevents.c 35 } TestInfo;
41 TestInfo* info;
44 TestInfo*
47 TestInfo* info;
49 info = g_slice_new(TestInfo);
58 test_info_destroy(TestInfo* info)
62 g_slice_free(TestInfo, info);
130 fixture->info = (TestInfo*)data;
  /external/chromium/testing/gtest/samples/
sample9_unittest.cc 44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
sample10_unittest.cc 44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& /* test_info */) {
86 virtual void OnTestEnd(const TestInfo& /* test_info */) {
  /external/protobuf/gtest/samples/
sample9_unittest.cc 44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
sample10_unittest.cc 44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& test_info) {
86 virtual void OnTestEnd(const TestInfo& test_info) {
  /external/chromium/testing/gtest/test/
gtest_shuffle_test_.cc 43 using ::testing::TestInfo;
87 virtual void OnTestStart(const TestInfo& test_info) {
gtest-unittest-api_test.cc 86 static TestInfo const** const GetSortedTests(const TestCase* test_case) {
87 TestInfo const** const tests =
88 new const TestInfo*[test_case->total_test_count()];
94 LessByName<TestInfo>());
158 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case);
221 const TestInfo* const test_info = test_case->GetTestInfo(0);
280 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case);
gtest-listener_test.cc 45 using ::testing::TestInfo;
85 virtual void OnTestStart(const TestInfo& /*test_info*/) {
93 virtual void OnTestEnd(const TestInfo& /*test_info*/) {
  /external/protobuf/gtest/test/
gtest_shuffle_test_.cc 43 using ::testing::TestInfo;
87 virtual void OnTestStart(const TestInfo& test_info) {
gtest-unittest-api_test.cc 86 static TestInfo const** const GetSortedTests(const TestCase* test_case) {
87 TestInfo const** const tests =
88 new const TestInfo*[test_case->total_test_count()];
94 LessByName<TestInfo>());
157 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case);
221 const TestInfo* const test_info = test_case->GetTestInfo(0);
281 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case);
gtest-listener_test.cc 53 using ::testing::TestInfo;
94 virtual void OnTestStart(const TestInfo& /*test_info*/) {
102 virtual void OnTestEnd(const TestInfo& /*test_info*/) {
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 538 TestInfoImpl(TestInfo* parent, const char* test_case_name,
572 // Calls the given TestInfo object's Run() method.
573 static void RunTest(TestInfo * test_info) {
580 // Clears the test result in the given TestInfo object.
581 static void ClearTestResult(TestInfo * test_info) {
587 TestInfo* const parent_; // The owner of this object
636 internal::List<TestInfo*>& test_info_list() { return *test_info_list_; }
639 const internal::List<TestInfo *> & test_info_list() const {
667 // Adds a TestInfo to this test case. Will delete the TestInfo upo
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 600 TestInfoImpl(TestInfo* parent, const char* test_case_name,
641 // Calls the given TestInfo object's Run() method.
642 static void RunTest(TestInfo * test_info) {
649 // Clears the test result in the given TestInfo object.
650 static void ClearTestResult(TestInfo * test_info) {
656 TestInfo* const parent_; // The owner of this object
711 internal::List<TestInfo*>& test_info_list() { return *test_info_list_; }
714 const internal::List<TestInfo *> & test_info_list() const {
742 // Adds a TestInfo to this test case. Will delete the TestInfo upo
    [all...]
gtest.cc 499 virtual void OnTestStart(const TestInfo*) {}
502 virtual void OnTestEnd(const TestInfo*) {}
    [all...]
  /external/chromium/testing/gtest/include/gtest/
gtest.h 183 class TestInfo;
358 friend class TestInfo;
549 friend class TestInfo;
614 // A TestInfo object stores the following information about a test:
622 // The constructor of TestInfo registers itself with the UnitTest
625 class GTEST_API_ TestInfo {
627 // Destructs a TestInfo object. This function is not virtual, so
628 // don't inherit from TestInfo.
629 ~TestInfo();
682 friend TestInfo* internal::MakeAndRegisterTestInfo
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest.h 183 class TestInfo;
358 friend class TestInfo;
549 friend class TestInfo;
614 // A TestInfo object stores the following information about a test:
622 // The constructor of TestInfo registers itself with the UnitTest
625 class GTEST_API_ TestInfo {
627 // Destructs a TestInfo object. This function is not virtual, so
628 // don't inherit from TestInfo.
629 ~TestInfo();
682 friend TestInfo* internal::MakeAndRegisterTestInfo
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h 451 friend class TestInfo;
517 // A TestInfo object stores the following information about a test:
525 // The constructor of TestInfo registers itself with the UnitTest
528 class TestInfo {
530 // Destructs a TestInfo object. This function is not virtual, so
531 // don't inherit from TestInfo.
532 ~TestInfo();
575 friend TestInfo* internal::MakeAndRegisterTestInfo(
594 // Constructs a TestInfo object. The newly constructed instance assumes
596 TestInfo(const char* test_case_name, const char* name
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-internal.h 103 class TestInfo; // Information about a test.
112 class TestInfoImpl; // Opaque implementation of TestInfo
531 static ::testing::TestInfo* const test_info_;\
535 ::testing::TestInfo* const test_case_name##_##test_name##_Test::test_info_ =\
536 ::testing::TestInfo::MakeAndRegisterInstance(\
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.cc 434 virtual void OnTestStart(const TestInfo*) {}
437 virtual void OnTestEnd(const TestInfo*) {}
    [all...]

Completed in 1080 milliseconds

1 2 3