/third_party/vk-gl-cts/executor/ |
D | xeTestCase.cpp | 87 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 …]
|
D | xeTestCase.hpp | 57 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); 104 … TestGroup (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 …]
|
D | xeTestCaseListParser.hpp | 41 void init (TestGroup* rootGroup); 51 TestGroup* m_root;
|
D | xeTestCaseListParser.cpp | 73 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()
|
D | xeBatchExecutor.cpp | 317 const TestGroup* group = static_cast<const TestGroup*>(node); in writeCaseListNode()
|
/third_party/boost/libs/hana/test/_include/laws/ |
D | group.hpp | 20 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/ |
D | group_manager_test.cc | 27 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/ |
D | es2fLifetimeTests.cpp | 44 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()
|
D | es2fFboCompletenessTests.cpp | 379 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/ |
D | group.cpp | 16 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/ |
D | es3fFboCompletenessTests.cpp | 454 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()
|
D | es3fLifetimeTests.cpp | 553 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/ |
D | xeCommandLineExecutor.cpp | 255 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()
|
D | xeBatchResultToXml.cpp | 293 const xe::TestGroup* group = static_cast<const xe::TestGroup*>(testNode); in writeTestCaseListNode()
|
/third_party/boost/libs/hana/test/concept/constant/ |
D | arithmetic.cpp | 26 hana::test::TestGroup<minimal_constant_tag<int>>{ints}; in main()
|
/third_party/boost/libs/hana/test/integral_constant/ |
D | arithmetic.cpp | 26 hana::test::TestGroup<hana::integral_constant_tag<int>>{ints}; in main()
|
/third_party/boost/libs/hana/test/ext/std/integral_constant/ |
D | arithmetic.cpp | 28 hana::test::TestGroup<hana::ext::std::integral_constant_tag<int>>{ints}; in main()
|
/third_party/boost/libs/hana/test/ext/boost/mpl/integral_c/ |
D | arithmetic.cpp | 27 hana::test::TestGroup<hana::ext::boost::mpl::integral_c_tag<int>>{ints}; in main()
|
/third_party/boost/libs/hana/test/ext/std/ratio/ |
D | laws.cpp | 34 hana::test::TestGroup<hana::ext::std::ratio_tag>{ratios}; in main()
|
/third_party/boost/libs/hana/test/detail/canonical_constant/ |
D | laws.cpp | 39 hana::test::TestGroup<hana::detail::CanonicalConstant<int>>{ints}; in main()
|
/third_party/protobuf/js/compatibility_tests/v3.0.0/ |
D | test.proto | 175 message TestGroup { message 192 optional TestGroup.RepeatedGroup group = 1;
|
/third_party/protobuf/js/compatibility_tests/v3.1.0/ |
D | test.proto | 175 message TestGroup { message 192 optional TestGroup.RepeatedGroup group = 1;
|
D | message_test.js | 703 var group = new proto.jspb.test.TestGroup(); 704 var someGroup = new proto.jspb.test.TestGroup.RepeatedGroup();
|
/third_party/protobuf/js/ |
D | test.proto | 198 message TestGroup { message 215 optional TestGroup.RepeatedGroup group = 1;
|
/third_party/vk-gl-cts/scripts/ |
D | mustpass.py | 81 class TestGroup: class 272 nextNode = TestGroup(component)
|