/third_party/boost/libs/intrusive/test/ |
D | generic_assoc_test.hpp | 63 assoc_type testset(values.begin(), values.end()); in test_container_from_iterator() local 67 sz_type sz = testset.size(); in test_container_from_iterator() 68 for(it_type b(testset.begin()), e(testset.end()); b != e; ++b) in test_container_from_iterator() 73 BOOST_TEST(&s == &testset); in test_container_from_iterator() 75 BOOST_TEST(testset.size() == (sz-1)); in test_container_from_iterator() 77 BOOST_TEST(testset.size() == sz); in test_container_from_iterator() 96 assoc_type testset (values.begin(), values.begin() + values.size()); in test_insert_erase_burst() local 97 TEST_INTRUSIVE_SEQUENCE_EXPECTED(testset, testset.begin()); in test_insert_erase_burst() 98 testset.check(); in test_insert_erase_burst() 99 iterator it(testset.begin()), itend(testset.end()); in test_insert_erase_burst() [all …]
|
D | generic_set_test.hpp | 59 set_type testset(values.begin(), values.end()); in test_all() local 60 test::test_container(testset); in test_all() 61 testset.clear(); in test_all() 62 testset.insert(values.begin(), values.end()); in test_all() 63 test::test_common_unordered_and_associative_container(testset, values); in test_all() 64 testset.clear(); in test_all() 65 testset.insert(values.begin(), values.end()); in test_all() 66 test::test_associative_container(testset, values); in test_all() 67 testset.clear(); in test_all() 68 testset.insert(values.begin(), values.end()); in test_all() [all …]
|
D | generic_multiset_test.hpp | 52 multiset_type testset(values.begin(), values.end()); in test_all() local 53 test::test_container(testset); in test_all() 54 testset.clear(); in test_all() 55 testset.insert(values.begin(), values.end()); in test_all() 56 test::test_common_unordered_and_associative_container(testset, values); in test_all() 57 testset.clear(); in test_all() 58 testset.insert(values.begin(), values.end()); in test_all() 59 test::test_associative_container(testset, values); in test_all() 60 testset.clear(); in test_all() 61 testset.insert(values.begin(), values.end()); in test_all() [all …]
|
D | unordered_test.hpp | 57 unordered_type testset in test_all() local 59 testset.insert(values.begin(), values.end()); in test_all() 60 test::test_container(testset); in test_all() 61 testset.clear(); in test_all() 62 testset.insert(values.begin(), values.end()); in test_all() 63 test::test_common_unordered_and_associative_container(testset, values); in test_all() 64 testset.clear(); in test_all() 65 testset.insert(values.begin(), values.end()); in test_all() 66 test::test_unordered_associative_container(testset, values); in test_all() 67 testset.clear(); in test_all() [all …]
|
/third_party/unity/test/tests/ |
D | test_generate_test_runner.rb | 1228 RUNNER_TESTS.each do |testset| 1229 basename = File.basename(testset[:testfile], C_EXTENSION) 1230 testset_name = "Runner_#{basename}_#{testset[:name]}" 1232 runner_name = OUT_FILE + testset[:name] + '_runner.c' 1236 if (testset[:yaml]) 1237 File.open("build/runner_options.yml",'w') {|f| f << { :unity => testset[:yaml] }.to_yaml } 1242 if (testset[:cmdline]) 1243 …str = "ruby ../auto/generate_test_runner.rb #{yaml_option} #{testset[:cmdline]} \"#{testset[:testf… 1246 UnityTestRunnerGenerator.new(testset[:options]).run(testset[:testfile], runner_name) 1250 …if (runner_test(testset[:testfile], runner_name, testset[:expected], testset[:testdefines], testse…
|
/third_party/cJSON/tests/unity/test/tests/ |
D | test_generate_test_runner.rb | 1220 RUNNER_TESTS.each do |testset| 1221 basename = File.basename(testset[:testfile], C_EXTENSION) 1222 testset_name = "Runner_#{basename}_#{testset[:name]}" 1224 runner_name = OUT_FILE + testset[:name] + '_runner.c' 1228 if (testset[:yaml]) 1229 File.open("build/runner_options.yml",'w') {|f| f << { :unity => testset[:yaml] }.to_yaml } 1234 if (testset[:cmdline]) 1235 …str = "ruby ../auto/generate_test_runner.rb #{yaml_option} #{testset[:cmdline]} \"#{testset[:testf… 1238 UnityTestRunnerGenerator.new(testset[:options]).run(testset[:testfile], runner_name) 1242 …if (runner_test(testset[:testfile], runner_name, testset[:expected], testset[:testdefines], testse…
|
/third_party/boost/libs/geometry/index/test/rtree/interprocess/ |
D | test_interprocess.hpp | 34 namespace testset { namespace interprocess { namespace 49 testset::modifiers<Indexable>(parameters, shmem_alloc(segment.get_segment_manager())); in modifiers() 65 testset::queries<Indexable>(parameters, shmem_alloc(segment.get_segment_manager())); in queries() 81 testset::additional<Indexable>(parameters, shmem_alloc(segment.get_segment_manager())); in additional() 97 testset::modifiers<Indexable>(parameters, shmem_alloc(segment.get_segment_manager())); in modifiers_and_additional() 98 testset::additional<Indexable>(parameters, shmem_alloc(segment.get_segment_manager())); in modifiers_and_additional()
|
D | rtree_interprocess_linear.cpp | 16 testset::interprocess::modifiers_and_additional<P2f>(bgi::linear<32, 8>()); in test_main()
|
D | rtree_interprocess_linear_dyn.cpp | 16 testset::interprocess::modifiers_and_additional<P2f>(bgi::dynamic_linear(32, 8)); in test_main()
|
D | rtree_interprocess_rstar_dyn.cpp | 16 testset::interprocess::modifiers_and_additional<P2f>(bgi::dynamic_rstar(32, 8)); in test_main()
|
D | rtree_interprocess_quadratic_dyn.cpp | 16 testset::interprocess::modifiers_and_additional<P2f>(bgi::dynamic_quadratic(32, 8)); in test_main()
|
D | rtree_interprocess_quadratic.cpp | 16 testset::interprocess::modifiers_and_additional<P2f>(bgi::quadratic<32, 8>()); in test_main()
|
D | rtree_interprocess_rstar.cpp | 16 testset::interprocess::modifiers_and_additional<P2f>(bgi::rstar<32, 8>()); in test_main()
|
/third_party/vk-gl-cts/scripts/ |
D | run_nightly.py | 87 …def __init__(self, name, buildConfig, generator, binaryName, testset, args = [], exclude = [], ign… argument 92 self.testset = testset 304 '--testset=%s' % string.join(config.testset, ","), 369 testset = ["dEQP-GLES2.info.*", "dEQP-GLES2.functional.*", "dEQP-GLES2.usecases.*"], 383 testset = ["dEQP-GLES3.info.*", "dEQP-GLES3.functional.*", "dEQP-GLES3.usecases.*"], 402 testset = ["dEQP-GLES31.*"], 425 testset = ["dEQP-GL3.info.*", "dEQP-GL3.functional.*"], 441 testset = ["dEQP-EGL.info.*", "dEQP-EGL.functional.*"], 454 testset = ["dEQP-CL.*"],
|
/third_party/flutter/skia/tools/skqp/src/ |
D | skqp.cpp | 65 std::unordered_set<std::string> testset; in get_unit_tests() local 66 auto insert = [&testset](const char* s, size_t l) { in get_unit_tests() 72 testset.insert(std::string(s, l)); in get_unit_tests() 79 if ((testset.empty() || testset.count(std::string(test.name)) > 0) && test.needsGpu) { in get_unit_tests()
|
/third_party/skia/tools/skqp/src/ |
D | skqp.cpp | 69 std::unordered_set<std::string> testset; in get_unit_tests() local 70 auto insert = [&testset](const char* s, size_t l) { in get_unit_tests() 76 testset.insert(std::string(s, l)); in get_unit_tests() 83 if ((testset.empty() || testset.count(std::string(test.fName)) > 0) && test.fNeedsGpu) { in get_unit_tests()
|
/third_party/boost/libs/geometry/index/test/rtree/generated/p2d/ |
D | rtree_lin_que_p2d.cpp | 15 testset::queries<Indexable>(bgi::linear<5, 2>(), std::allocator<int>()); in test_main()
|
D | rtree_qua_mod_p2d.cpp | 15 testset::modifiers<Indexable>(bgi::quadratic<5, 2>(), std::allocator<int>()); in test_main()
|
D | rtree_dqua_add_p2d.cpp | 15 testset::additional<Indexable>(bgi::dynamic_quadratic(5, 2), std::allocator<int>()); in test_main()
|
D | rtree_drst_add_p2d.cpp | 15 testset::additional<Indexable>(bgi::dynamic_rstar(5, 2), std::allocator<int>()); in test_main()
|
D | rtree_dlin_que_p2d.cpp | 15 testset::queries<Indexable>(bgi::dynamic_linear(5, 2), std::allocator<int>()); in test_main()
|
/third_party/boost/libs/geometry/index/test/rtree/generated/p3d/ |
D | rtree_dqua_mod_p3d.cpp | 15 testset::modifiers<Indexable>(bgi::dynamic_quadratic(5, 2), std::allocator<int>()); in test_main()
|
D | rtree_dqua_que_p3d.cpp | 15 testset::queries<Indexable>(bgi::dynamic_quadratic(5, 2), std::allocator<int>()); in test_main()
|
D | rtree_dlin_que_p3d.cpp | 15 testset::queries<Indexable>(bgi::dynamic_linear(5, 2), std::allocator<int>()); in test_main()
|
D | rtree_lin_add_p3d.cpp | 15 testset::additional<Indexable>(bgi::linear<5, 2>(), std::allocator<int>()); in test_main()
|