Home
last modified time | relevance | path

Searched refs:TestGroup (Results 1 – 25 of 32) sorted by relevance

12

/third_party/vk-gl-cts/executor/
DxeTestCase.cpp87 TestNode::TestNode (TestGroup* parent, TestNodeType nodeType, const char* name, const char* desc) in TestNode()
151 return static_cast<const TestGroup*>(this)->findChildNode(path); in find()
164 return static_cast<const TestGroup*>(this)->findChildNode(path + compLen + 1); in find()
180 TestGroup::TestGroup (TestGroup* parent, TestNodeType nodeType, const char* name, const char* descr… in TestGroup() function in xe::TestGroup
187 TestGroup::~TestGroup (void) in ~TestGroup()
193 TestGroup* TestGroup::createGroup (const char* name, const char* description) in createGroup()
195 return new TestGroup(this, TESTNODETYPE_GROUP, name, description); in createGroup()
198 TestCase* TestGroup::createCase (TestCaseType caseType, const char* name, const char* description) in createCase()
203 const TestNode* TestGroup::findChildNode (const char* path) const in findChildNode()
224 return static_cast<const TestGroup*>(matchingNode)->findChildNode(path + compLen + 1); in findChildNode()
[all …]
DxeTestCase.hpp57 class TestGroup;
67 const TestGroup* getParent (void) const { return m_parent; } in getParent()
76 TestNode (TestGroup* parent, TestNodeType nodeType, const char* name, const char* desc);
82 TestGroup* m_parent;
88 class TestGroup : public TestNode class
91 ~TestGroup (void);
100 TestGroup* createGroup (const char* name, const char* description);
104TestGroup (TestGroup* parent, TestNodeType nodeType, const char* name, const char* description);
114 class TestRoot : public TestGroup
127 …static TestCase* createAsChild (TestGroup* parent, TestCaseType caseType, const char* name, con…
[all …]
DxeTestCaseListParser.hpp41 void init (TestGroup* rootGroup);
51 TestGroup* m_root;
DxeTestCaseListParser.cpp73 void TestCaseListParser::init (TestGroup* rootGroup) in init()
112 …TestNode* node = isGroup ? static_cast<TestNode*>(static_cast<TestGroup*>(parent)->createGroup(n… in parse()
113 …: static_cast<TestNode*>(static_cast<TestGroup*>(parent)->createCase(getTestCaseType(caseType), na… in parse()
DxeBatchExecutor.cpp317 const TestGroup* group = static_cast<const TestGroup*>(node); in writeCaseListNode()
/third_party/boost/libs/hana/test/_include/laws/
Dgroup.hpp20 struct TestGroup : TestGroup<G, laws> { struct
21 using TestGroup<G, laws>::TestGroup;
25 struct TestGroup<G, laws> { struct
27 TestGroup(Xs xs) { in TestGroup() argument
71 struct TestGroup<C, when<Constant<C>::value>> struct
72 : TestGroup<C, laws>
75 TestGroup(Xs xs) : TestGroup<C, laws>{xs} { in TestGroup() argument
/third_party/mindspore/tests/ut/cpp/parallel/
Dgroup_manager_test.cc27 class TestGroup : public UT::Common { class
29 TestGroup() {} in TestGroup() function in mindspore::parallel::TestGroup
37 void TestGroup::SetUp() { gp = Group(); } in SetUp()
39 void TestGroup::TearDown() { in TearDown()
43 Status TestGroup::Init() { in Init()
54 TEST_F(TestGroup, test_Init) { ASSERT_EQ(Init(), Status::SUCCESS); } in TEST_F() argument
56 TEST_F(TestGroup, test_GetDevicesList) { in TEST_F() argument
65 TEST_F(TestGroup, test_IsInThisGroup) { in TEST_F() argument
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fLifetimeTests.cpp44 class TestGroup : public TestCaseGroup class
47 TestGroup (Context& context) in TestGroup() function in deqp::gles2::Functional::__anon56807dc40111::TestGroup
56 void TestGroup::init (void) in init()
69 return new TestGroup(context); in createLifetimeTests()
Des2fFboCompletenessTests.cpp379 class TestGroup : public TestCaseGroup class
382 TestGroup (Context& ctx);
389 TestGroup::TestGroup (Context& ctx) in TestGroup() function in deqp::gles2::Functional::TestGroup
403 void TestGroup::init (void) in init()
417 return new TestGroup(context); in createFboCompletenessTests()
/third_party/boost/libs/hana/test/
Dgroup.cpp16 hana::test::TestGroup<int>{hana::make_tuple(0,1,2,3,4,5)}; in main()
17 hana::test::TestGroup<long>{hana::make_tuple(0l,1l,2l,3l,4l,5l)}; in main()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fFboCompletenessTests.cpp454 class TestGroup : public TestCaseGroup class
457 TestGroup (Context& context);
464 void TestGroup::init (void) in init()
520 TestGroup::TestGroup (Context& ctx) in TestGroup() function in deqp::gles3::Functional::TestGroup
535 return new TestGroup(context); in createFboCompletenessTests()
Des3fLifetimeTests.cpp553 class TestGroup : public TestCaseGroup class
556 TestGroup (gles3::Context& context) in TestGroup() function in deqp::gles3::Functional::__anon3f8b28260111::TestGroup
564 void TestGroup::init (void) in init()
584 return new TestGroup(context); in createLifetimeTests()
/third_party/vk-gl-cts/executor/tools/
DxeCommandLineExecutor.cpp255 void readCaseList (xe::TestGroup* root, const char* filename) in readCaseList()
293 xe::TestGroup* package = root.createGroup(packageName.c_str(), ""); in readCaseLists()
305 void addMatchingCases (const xe::TestGroup& group, xe::TestSet& testSet, const char* filter) in addMatchingCases()
318 addMatchingCases(static_cast<const xe::TestGroup&>(*child), testSet, filter); in addMatchingCases()
329 void removeMatchingCases (const xe::TestGroup& group, xe::TestSet& testSet, const char* filter) in removeMatchingCases()
342 removeMatchingCases(static_cast<const xe::TestGroup&>(*child), testSet, filter); in removeMatchingCases()
DxeBatchResultToXml.cpp293 const xe::TestGroup* group = static_cast<const xe::TestGroup*>(testNode); in writeTestCaseListNode()
/third_party/boost/libs/hana/test/concept/constant/
Darithmetic.cpp26 hana::test::TestGroup<minimal_constant_tag<int>>{ints}; in main()
/third_party/boost/libs/hana/test/integral_constant/
Darithmetic.cpp26 hana::test::TestGroup<hana::integral_constant_tag<int>>{ints}; in main()
/third_party/boost/libs/hana/test/ext/std/integral_constant/
Darithmetic.cpp28 hana::test::TestGroup<hana::ext::std::integral_constant_tag<int>>{ints}; in main()
/third_party/boost/libs/hana/test/ext/boost/mpl/integral_c/
Darithmetic.cpp27 hana::test::TestGroup<hana::ext::boost::mpl::integral_c_tag<int>>{ints}; in main()
/third_party/boost/libs/hana/test/ext/std/ratio/
Dlaws.cpp34 hana::test::TestGroup<hana::ext::std::ratio_tag>{ratios}; in main()
/third_party/boost/libs/hana/test/detail/canonical_constant/
Dlaws.cpp39 hana::test::TestGroup<hana::detail::CanonicalConstant<int>>{ints}; in main()
/third_party/protobuf/js/compatibility_tests/v3.0.0/
Dtest.proto175 message TestGroup { message
192 optional TestGroup.RepeatedGroup group = 1;
/third_party/protobuf/js/compatibility_tests/v3.1.0/
Dtest.proto175 message TestGroup { message
192 optional TestGroup.RepeatedGroup group = 1;
Dmessage_test.js703 var group = new proto.jspb.test.TestGroup();
704 var someGroup = new proto.jspb.test.TestGroup.RepeatedGroup();
/third_party/protobuf/js/
Dtest.proto198 message TestGroup { message
215 optional TestGroup.RepeatedGroup group = 1;
/third_party/vk-gl-cts/scripts/
Dmustpass.py81 class TestGroup: class
272 nextNode = TestGroup(component)

12