Searched refs:exp_string (Results 1 – 1 of 1) sorted by relevance
30 typedef expected<std::string, std::string> exp_string; typedef92 exp_string e3(std::string("hello")); in TEST()93 exp_string e4 = std::move(e3); in TEST()129 exp_string e3 = std::string("hello"); in TEST()146 exp_string e = std::move(hello); in TEST()155 exp_string e2 = "hello"; // char* to std::string in TEST()170 exp_string::unexpected_type unexp3 = unexpected(std::string("error")); in TEST()171 exp_string e3 = unexp3; in TEST()189 exp_string e3 = unexpected(std::string("error")); in TEST()203 exp_string e(std::in_place, 5, 'a'); in TEST()[all …]