/third_party/boost/boost/test/utils/runtime/ |
D | finalize.hpp | 36 if( !args.has( param->p_name ) ) { in finalize_arguments() 40 if( !args.has( param->p_name ) ) { in finalize_arguments() 42 …missing_req_arg( param->p_name ) << "Missing argument for required parameter " << param->p_name <<… in finalize_arguments() 46 if( args.has( param->p_name ) && !!param->p_callback ) in finalize_arguments() 47 param->p_callback( param->p_name ); in finalize_arguments()
|
D | parameter.hpp | 136 : p_name( name.begin(), name.end() ) in basic_param() 154 std::string const p_name; member in boost::runtime::basic_param 190 ostr << p_name; in usage() 331 m_arg_factory.produce_argument( token, this->p_name, store ); in produce_argument() 338 m_arg_factory.produce_default( this->p_name, store ); in produce_default() 377 store.set( p_name, !negative_form ); in produce_argument() 380 … format_error( p_name ) << "Can't set value to negative form of the argument." ); in produce_argument() 382 m_arg_factory.produce_argument( token, p_name, store ); in produce_argument() 388 m_arg_factory.produce_default( p_name, store ); in produce_default() 493 BOOST_TEST_I_ASSRT( m_parameters.insert( std::make_pair( cstring(p->p_name), p ) ).second, in add() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/network/ |
D | proto.c | 68 p.p_name = (char *)&test_protos[test_index + 1]; in test_getprotoent() 69 test_index += strlen(p.p_name) + TEST_TERMINATE_SIZE; in test_getprotoent() 90 EXPECT_STREQ("getprotobyname_0100", ret->p_name, "tcp"); in getprotobyname_0100() 116 EXPECT_STREQ("getprotobynumber_0100", ret->p_name, "tcp"); in getprotobynumber_0100() 149 EXPECT_STREQ("getprotoent_0100", dst->p_name, src->p_name); in getprotoent_0100()
|
D | setprotoent.c | 37 strcpy(buf, result->p_name); in setprotoent_0100() 45 if (strcmp(result->p_name, buf)) { in setprotoent_0100() 46 t_error("%s failed: result->p_name = %s\n", __func__, result->p_name); in setprotoent_0100()
|
/third_party/mesa3d/src/gallium/frontends/clover/api/ |
D | platform.cpp | 117 const char *p_name) try { in GetExtensionFunctionAddressForPlatform() argument 119 return GetExtensionFunctionAddress(p_name); in GetExtensionFunctionAddressForPlatform() 223 clover::GetExtensionFunctionAddress(const char *p_name) try { in GetExtensionFunctionAddress() argument 224 return ext_funcs.at(p_name); in GetExtensionFunctionAddress() 242 clGetExtensionFunctionAddress(const char *p_name) { in clGetExtensionFunctionAddress() argument 243 return GetExtensionFunctionAddress(p_name); in clGetExtensionFunctionAddress() 248 const char *p_name) { in clGetExtensionFunctionAddressForPlatform() argument 249 return GetExtensionFunctionAddressForPlatform(d_platform, p_name); in clGetExtensionFunctionAddressForPlatform()
|
D | dispatch.hpp | 40 GetExtensionFunctionAddress(const char *p_name); 44 const char *p_name);
|
/third_party/weston/libweston/backend-drm/ |
D | state-propose.c | 309 const char *p_name = drm_output_get_plane_type_name(plane); in drm_output_prepare_cursor_view() local 337 "unsuitable transform\n", p_name, ev, p_name); in drm_output_prepare_cursor_view() 348 p_name, ev, p_name); in drm_output_prepare_cursor_view() 374 drm_debug(b, "\t\t\t\t[%s] copying new content to cursor BO\n", p_name); in drm_output_prepare_cursor_view() 388 p_name, ev); in drm_output_prepare_cursor_view() 415 const char *p_name = drm_output_get_plane_type_name(scanout_plane); in drm_output_prepare_scanout_view() local 426 p_name, ev, p_name); in drm_output_prepare_scanout_view() 435 "no in-fence support\n", p_name, ev, p_name); in drm_output_prepare_scanout_view() 441 " couldn't get fb\n", p_name, ev, p_name); in drm_output_prepare_scanout_view() 460 "unsuitable transform\n", p_name, ev, p_name); in drm_output_prepare_scanout_view() [all …]
|
/third_party/boost/libs/test/test/test-organization-ts/ |
D | test-tree-management-test.cpp | 117 BOOST_TEST( tc1->p_name == const_string( "empty_" ) ); in BOOST_AUTO_TEST_CASE() 129 BOOST_TEST( tc2->p_name == const_string( "my test case" ) ); in BOOST_AUTO_TEST_CASE() 156 BOOST_TEST( ts1->p_name == const_string( "TestSuite" ) ); in BOOST_AUTO_TEST_CASE() 288 BOOST_TEST( tc1->p_name == const_string( "A__test_methodA1" ) ); in BOOST_AUTO_TEST_CASE() 289 BOOST_TEST( tc2->p_name == const_string( "A__test_methodA2" ) ); in BOOST_AUTO_TEST_CASE() 301 BOOST_TEST( tc3->p_name == const_string( "A__test_methodA1" ) ); in BOOST_AUTO_TEST_CASE() 302 BOOST_TEST( tc4->p_name == const_string( "B__test_methodB" ) ); in BOOST_AUTO_TEST_CASE() 313 BOOST_TEST( tc5->p_name == const_string( "C__test_method" ) ); in BOOST_AUTO_TEST_CASE() 321 BOOST_TEST( tc6->p_name == const_string( "C__test_method" ) ); in BOOST_AUTO_TEST_CASE()
|
D | test_unit-sanitize-names.cpp | 27 BOOST_TEST( t_suite1->p_name.value == "_suite1" ); in BOOST_AUTO_TEST_CASE() 33 BOOST_TEST( t_suite2->p_name.value == "_suite2__label" ); in BOOST_AUTO_TEST_CASE() 40 BOOST_TEST( t_suite3->p_name.value == "_suite3__label" ); in BOOST_AUTO_TEST_CASE()
|
/third_party/musl/porting/liteos_a/user/src/network/ |
D | proto.c | 62 p.p_name = (char *)&protos[idx+1]; in getprotoent() 64 idx += strlen(p.p_name) + 2; in getprotoent() 73 while (p && strcmp(name, p->p_name)); in getprotobyname()
|
/third_party/musl/src/network/ |
D | proto.c | 62 p.p_name = (char *)&protos[idx+1]; in getprotoent() 64 idx += strlen(p.p_name) + 2; in getprotoent() 73 while (p && strcmp(name, p->p_name)); in getprotobyname()
|
/third_party/flutter/skia/modules/skottie/src/ |
D | SkottieAdapter.h | 67 #define ADAPTER_PROPERTY(p_name, p_type, p_default) \ argument 68 const p_type& get##p_name() const { \ 69 return f##p_name; \ 71 void set##p_name(const p_type& p) { \ 72 if (p == f##p_name) return; \ 73 f##p_name = p; \ 77 p_type f##p_name = p_default; \
|
/third_party/boost/boost/test/utils/runtime/env/ |
D | fetch.hpp | 72 if( args.has( param->p_name ) || param->p_env_var.empty() ) in fetch_absent() 82 format_error( param->p_name ) in fetch_absent() 83 << "Missing an argument value for the parameter " << param->p_name in fetch_absent()
|
/third_party/boost/boost/test/utils/runtime/cla/ |
D | parser.hpp | 206 format_error( found_param->p_name ) in parse() 225 format_error( found_param->p_name ) in parse() 227 << found_param->p_name in parse() 240 format_error( found_param->p_name ) in parse() 242 << found_param->p_name in parse() 281 BOOST_TEST_I_ASSRT( !res.has( found_param->p_name ) || found_param->p_repeatable, in parse() 282 duplicate_arg( found_param->p_name ) in parse() 284 << found_param->p_name in parse()
|
/third_party/boost/boost/test/impl/ |
D | test_tree.ipp | 56 , p_name( std::string( name.begin(), name.size() ) ) 73 , p_name( std::string( module_name.begin(), module_name.size() ) ) 167 return p_name; 172 res.append( p_name ); 326 std::string name = framework::get(*it, TUT_ANY).p_name; 332 + this->p_name.value 356 if( tu_name == framework::get( id, ut_detail::test_id_2_unit_type( id ) ).p_name.get() )
|
D | unit_test_main.ipp | 63 m_os << std::setw( m_indent ) << "" << tu.p_name; 110 m_os << ",label=\"" << tu.p_name << "\"];\n"; 112 … m_os << ",label=\"" << tu.p_name << "|" << tu.p_file_name << "(" << tu.p_line_num << ")";
|
/third_party/boost/libs/test/doc/examples/ |
D | example15.run.cpp | 19 framework::master_test_suite().p_name.value = "my master test suite name"; in init_unit_test_suite()
|
/third_party/boost/libs/test/test/usage-variants-ts/ |
D | single-header-custom-init-test.cpp | 28 boost::unit_test::framework::master_test_suite().p_name.value = "Custom init func"; in init_unit_test()
|
D | static-library-custom-init-test.cpp | 28 boost::unit_test::framework::master_test_suite().p_name.value = "Custom init func"; in init_unit_test_suite()
|
D | shared-library-custom-init-test.cpp | 27 boost::unit_test::framework::master_test_suite().p_name.value = "Custom init func"; in init_unit_test()
|
/third_party/boost/libs/test/example/ |
D | unit_test_example_02.cpp | 33 framework::master_test_suite().p_name.value = "Unit test example 02"; in init_unit_test_suite()
|
D | unit_test_example_03.cpp | 47 framework::master_test_suite().p_name.value = "Unit test example 03"; in init_unit_test_suite()
|
D | unit_test_example_11.cpp | 34 framework::master_test_suite().p_name.value = "Unit test example 11"; in init_unit_test_suite()
|
/third_party/boost/libs/test/tools/console_test_runner/test/ |
D | test_runner_test.cpp | 44 framework::master_test_suite().p_name.value = "Test runner test"; in init_unit_test()
|
/third_party/boost/libs/test/test/utils-ts/ |
D | runtime-param-test.cpp | 150 BOOST_TEST( p1.p_name == "P1" ); in BOOST_AUTO_TEST_CASE() 162 BOOST_TEST( p2.p_name == "P2" ); in BOOST_AUTO_TEST_CASE() 174 BOOST_TEST( p4.p_name == "P4" ); in BOOST_AUTO_TEST_CASE() 187 BOOST_TEST( p5.p_name == "P5" ); in BOOST_AUTO_TEST_CASE() 201 BOOST_TEST( p6.p_name == "P6" ); in BOOST_AUTO_TEST_CASE() 269 BOOST_TEST( S.get("P1")->p_name == "P1" ); in BOOST_AUTO_TEST_CASE() 270 BOOST_TEST( S.get("P2")->p_name == "P2" ); in BOOST_AUTO_TEST_CASE()
|