HomeSort by relevance Sort by last modified time
    Searched defs:TestInfo (Results 1 - 18 of 18) sorted by null

  /external/chromium/chrome/browser/diagnostics/
diagnostics_model.h 47 class TestInfo {
49 virtual ~TestInfo() {}
70 virtual TestInfo& GetTest(size_t id) = 0;
  /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/sdch/open-vcdiff/src/gtest/
gtest.h 318 // A TestInfo object stores the following information about a test:
326 // The constructor of TestInfo registers itself with the UnitTest
329 class TestInfo {
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(const char* test_case_name, const char* name
    [all...]
gtest.cc 434 virtual void OnTestStart(const TestInfo*) {}
437 virtual void OnTestEnd(const TestInfo*) {}
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-param-util.h 469 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
490 linked_ptr<TestInfo> test_info = *test_it;
525 struct TestInfo {
526 TestInfo(const char* a_test_case_base_name,
537 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
  /external/gtest/include/gtest/
gtest.h 350 // A TestInfo object stores the following information about a test:
358 // The constructor of TestInfo registers itself with the UnitTest
361 class TestInfo {
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/
gtest-param-util.h 478 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
499 linked_ptr<TestInfo> test_info = *test_it;
535 struct TestInfo {
536 TestInfo(const char* test_case_base_name,
547 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 469 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
490 linked_ptr<TestInfo> test_info = *test_it;
525 struct TestInfo {
526 TestInfo(const char* a_test_case_base_name,
537 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 487 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
508 linked_ptr<TestInfo> test_info = *test_it;
544 struct TestInfo {
545 TestInfo(const char* test_case_base_name,
556 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
  /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/testing/gtest/src/
gtest.cc     [all...]
  /external/gtest/src/
gtest.cc 499 virtual void OnTestStart(const TestInfo*) {}
502 virtual void OnTestEnd(const TestInfo*) {}
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest.cc     [all...]
  /external/protobuf/gtest/src/
gtest.cc     [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...]

Completed in 109 milliseconds