Searched defs:TestInfo (Results 1 - 18 of 18) sorted by relevance

/external/chromium/chrome/browser/diagnostics/
H A Ddiagnostics_model.h47 class TestInfo { class in class:DiagnosticsModel
49 virtual ~TestInfo() {}
70 virtual TestInfo& GetTest(size_t id) = 0;
/external/webkit/Source/WebKit/gtk/tests/
H A Dtesthittestresult.c30 } TestInfo; typedef in typeref:struct:__anon12088
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*)dat
[all...]
H A Dtestcopyandpaste.c33 } TestInfo; typedef in typeref:struct:__anon12083
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;
H A Dtestkeyevents.c35 } TestInfo; typedef in typeref:struct:__anon12090
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/sdch/open-vcdiff/src/gtest/
H A Dgtest.h318 // A TestInfo object stores the following information about a test:
326 // The constructor of TestInfo registers itself with the UnitTest
329 class TestInfo { class in namespace:testing
331 // Destructs a TestInfo object. This function is not virtual, so
332 // don't inherit from TestInfo.
333 ~TestInfo();
335 // Creates a TestInfo object and registers it with the UnitTest
349 static TestInfo* MakeAndRegisterInstance(
398 // Constructs a TestInfo object.
399 TestInfo(cons
[all...]
H A Dgtest.cc434 virtual void OnTestStart(const TestInfo*) {} argument
437 virtual void OnTestEnd(const TestInfo*) {} argument
1851 // class TestInfo
1853 // Constructs a TestInfo object.
1854 TestInfo::TestInfo(const char* test_case_name, function in class:testing::TestInfo
1862 // Destructs a TestInfo object.
1863 TestInfo::~TestInfo() {
1867 // Creates a TestInfo objec
[all...]
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h469 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
490 linked_ptr<TestInfo> test_info = *test_it;
525 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
526 TestInfo(const char* a_test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
537 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
/external/gtest/include/gtest/
H A Dgtest.h350 // A TestInfo object stores the following information about a test:
358 // The constructor of TestInfo registers itself with the UnitTest
361 class TestInfo { class in namespace:testing
363 // Destructs a TestInfo object. This function is not virtual, so
364 // don't inherit from TestInfo.
365 ~TestInfo();
405 friend TestInfo* internal::MakeAndRegisterTestInfo(
421 // Constructs a TestInfo object. The newly constructed instance assumes
423 TestInfo(const char* test_case_name, const char* name,
431 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo);
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-param-util.h478 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
499 linked_ptr<TestInfo> test_info = *test_it;
535 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
536 TestInfo(const char* test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
547 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h469 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
490 linked_ptr<TestInfo> test_info = *test_it;
525 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
526 TestInfo(const char* a_test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
537 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-param-util.h487 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
508 linked_ptr<TestInfo> test_info = *test_it;
544 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
545 TestInfo(const char* test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
556 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
/external/chromium/testing/gtest/include/gtest/
H A Dgtest.h183 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 { class in namespace:testing
627 // Destructs a TestInfo object. This function is not virtual, so
628 // don't inherit from TestInfo.
629 ~TestInfo();
682 friend TestInfo* interna
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h183 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 { class in namespace:testing
627 // Destructs a TestInfo object. This function is not virtual, so
628 // don't inherit from TestInfo.
629 ~TestInfo();
682 friend TestInfo* interna
[all...]
/external/protobuf/gtest/include/gtest/
H A Dgtest.h451 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 { class in namespace:testing
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(cons
[all...]
/external/chromium/testing/gtest/src/
H A Dgtest.cc1956 const TestInfo* const first_test_info = test_case->test_info_list()[0];
1961 const TestInfo* const this_test_info = impl->current_test_info();
2184 // class TestInfo
2186 // Constructs a TestInfo object. It assumes ownership of the test factory
2190 TestInfo::TestInfo(const char* a_test_case_name, function in class:testing::TestInfo
2207 // Destructs a TestInfo object.
2208 TestInfo::~TestInfo() { delete factory_; }
2212 // Creates a new TestInfo objec
[all...]
/external/gtest/src/
H A Dgtest.cc499 virtual void OnTestStart(const TestInfo*) {} argument
502 virtual void OnTestEnd(const TestInfo*) {} argument
2087 // class TestInfo
2089 // Constructs a TestInfo object. It assumes ownership of the test factory
2091 TestInfo::TestInfo(const char* test_case_name, function in class:testing::TestInfo
2102 // Destructs a TestInfo object.
2103 TestInfo::~TestInfo() {
2109 // Creates a new TestInfo objec
[all...]
/external/llvm/utils/unittest/googletest/
H A Dgtest.cc1956 const TestInfo* const first_test_info = test_case->test_info_list()[0];
1961 const TestInfo* const this_test_info = impl->current_test_info();
2184 // class TestInfo
2186 // Constructs a TestInfo object. It assumes ownership of the test factory
2190 TestInfo::TestInfo(const char* a_test_case_name, function in class:testing::TestInfo
2207 // Destructs a TestInfo object.
2208 TestInfo::~TestInfo() { delete factory_; }
2212 // Creates a new TestInfo objec
[all...]
/external/protobuf/gtest/src/
H A Dgtest.cc2092 // class TestInfo
2094 // Constructs a TestInfo object. It assumes ownership of the test factory
2096 TestInfo::TestInfo(const char* test_case_name, function in class:testing::TestInfo
2107 // Destructs a TestInfo object.
2108 TestInfo::~TestInfo() {
2114 // Creates a new TestInfo object and registers it with Google Test;
2129 // The newly created TestInfo instance will assume
2131 TestInfo* MakeAndRegisterTestInf
[all...]

Completed in 4228 milliseconds