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

/external/webkit/WebKit/gtk/tests/
H A Dtesthittestresult.c30 } TestInfo; typedef in typeref:struct:__anon5752
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 Dtestkeyevents.c31 } TestInfo; typedef in typeref:struct:__anon5754
37 TestInfo* info;
40 TestInfo*
43 TestInfo* info;
45 info = g_slice_new(TestInfo);
53 test_info_destroy(TestInfo* info)
56 g_slice_free(TestInfo, info);
130 fixture->info = (TestInfo*)data;
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
H A Drun_chromium_webkit_tests.py89 class TestInfo: class in inherits:
407 """Returns the appropriate TestInfo object for the file. Mostly this
411 return TestInfo(self._port, test_file,
413 return TestInfo(self._port, test_file, self._options.time_out_ms)
425 The Queue of lists of TestInfo objects.
/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/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...]

Completed in 31 milliseconds