Lines Matching refs:exp_string
30 typedef expected<std::string, std::string> exp_string; typedef
92 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()
207 exp_string e2({'a', 'b', 'c'}); in TEST()
266 exp_string e3 = "hello"; in TEST()
287 exp_string e3 = "hello"; in TEST()
300 exp_string e = "hello"; in TEST()
310 exp_string e = "hello"; in TEST()
787 expected<exp_string, std::string> e = "hello"; in TEST()
795 expected<exp_string, std::string> e2 = unexpected("world"); in TEST()
800 expected<exp_string, std::string> e3 = exp_string(unexpected("world")); in TEST()