Searched refs:with_arg (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/kyua/utils/ |
H A D | optional_test.cpp | 119 const optional< int > with_arg(3); in ATF_TEST_CASE_BODY() local 120 ATF_REQUIRE(with_arg); in ATF_TEST_CASE_BODY() 121 ATF_REQUIRE_EQ(3, with_arg.get()); in ATF_TEST_CASE_BODY() 126 const optional< int > copy_arg(with_arg); in ATF_TEST_CASE_BODY() 141 const optional< std::string > with_arg("foo"); in ATF_TEST_CASE_BODY() local 142 ATF_REQUIRE(with_arg); in ATF_TEST_CASE_BODY() 143 ATF_REQUIRE_EQ("foo", with_arg.get()); in ATF_TEST_CASE_BODY() 148 const optional< std::string > copy_arg(with_arg); in ATF_TEST_CASE_BODY()
|
/freebsd/contrib/unbound/ |
H A D | aclocal.m4 | 9333 m4_pushdef([with_arg], m4_tolower([$1])) 9336 [m4_default([$5], [build with ]with_arg[ support])]) 9339 m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes]) 9340 m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no]) 9343 [yes],[m4_pushdef([with_without], [--without-]with_arg)], 9344 [m4_pushdef([with_without],[--with-]with_arg)]) 9346 AC_ARG_WITH(with_arg, optwith 9348 [AS_TR_SH([with_]with_arg)=def_arg]) 9350 AS_CASE([$AS_TR_SH([with_]with_arg)], 9356 m4_popdef([with_arg])
|