Lines Matching refs:std
28 std::cerr << "Construct Dummy{0x" << (void *) this in Dummy()
30 << std::endl; in Dummy()
39 std::cerr << "CopyConstruct Dummy{0x" << (void *) this in Dummy()
41 << "}" << std::endl; in Dummy()
47 std::cerr << "MoveConstruct Dummy{0x" << (void *) this in Dummy()
49 << "}" << std::endl; in Dummy()
60 std::cerr << "CopyAssign Dummy{0x" << (void *) this in operator =()
62 << "}" << std::endl; in operator =()
70 std::cerr << "MoveAssign Dummy{0x" << (void *) this in operator =()
72 << "}" << std::endl; in operator =()
77 std::cerr << "Destruct Dummy{0x" << (void *) this in ~Dummy()
79 << std::endl; in ~Dummy()
90 Maybe<std::string> val2 = make_nothing<std::string>(); in TEST()
93 val2 = make_nothing<std::string>(); in TEST()
102 Maybe<std::string> val2 = make_value(std::string("hey")); in TEST()
104 EXPECT_EQ(std::string("hey"), val2.value()); in TEST()
117 val = std::move(val2); in TEST()