Home
last modified time | relevance | path

Searched refs:lvalue_rvalue_detector (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/variant/test/
Dconst_ref_apply_visitor.cpp72 struct lvalue_rvalue_detector : boost::static_visitor<std::string> struct
132 BOOST_TEST(boost::apply_visitor(lvalue_rvalue_detector(), test_var) == "lvalue reference"); in test_const_ref_parameter()
139 …BOOST_TEST(boost::apply_visitor(lvalue_rvalue_detector(), test_var, test_var2) == "lvalue referenc… in test_const_ref_parameter2()
146 …BOOST_TEST(boost::apply_visitor(lvalue_rvalue_detector(), test_var, test_var2, test_var3, test_var… in test_const_ref_parameter4()
157 …BOOST_TEST(boost::apply_visitor(lvalue_rvalue_detector(), std::move(test_var)) == "rvalue referenc… in test_rvalue_parameter()
164 …BOOST_TEST(boost::apply_visitor(lvalue_rvalue_detector(), std::move(test_var), std::move(test_var2… in test_rvalue_parameter2()
172 …auto result = boost::apply_visitor(lvalue_rvalue_detector(), std::move(test_var), std::move(test_v… in test_rvalue_parameter4()
193 …BOOST_TEST(boost::apply_visitor([](auto&& v) { return lvalue_rvalue_detector()(FORWARD(v)); }, tes… in test_cpp14_visitor()
200 …BOOST_TEST(boost::apply_visitor([](auto&& v) mutable -> auto { return lvalue_rvalue_detector()(FOR… in test_cpp14_mutable_visitor()
207 …BOOST_TEST(boost::apply_visitor([](auto&& v, auto&& vv) { return lvalue_rvalue_detector()(FORWARD(… in test_cpp14_visitor()
[all …]