Lines Matching refs:interned_str
28 Interned<std::string> interned_str = interner.Intern("foo"); in TEST() local
29 ASSERT_EQ(interned_str.data(), "foo"); in TEST()
37 Interned<std::string> interned_str = interner.Intern("foo"); in TEST() local
39 ASSERT_EQ(interned_str.data(), "foo"); in TEST()
48 Interned<std::string> interned_str = interner.Intern("foo"); in TEST() local
49 ASSERT_EQ(interned_str.data(), "foo"); in TEST()
60 Interned<std::string> interned_str = interner.Intern("foo"); in TEST() local
62 Interned<std::string> interned_str2(std::move(interned_str)); in TEST()
73 Interned<std::string> interned_str = interner.Intern("foo"); in TEST() local
75 Interned<std::string> interned_str2(interned_str); in TEST()
80 ASSERT_EQ(interned_str.data(), "foo"); in TEST()
87 Interned<std::string> interned_str = interner.Intern("foo"); in TEST() local
89 Interned<std::string> interned_str2 = std::move(interned_str); in TEST()
100 Interned<std::string> interned_str = interner.Intern("foo"); in TEST() local
102 Interned<std::string> interned_str2 = interned_str; in TEST()
107 ASSERT_EQ(interned_str.data(), "foo"); in TEST()
113 Interned<std::string> interned_str = interner.Intern("foo"); in TEST() local
116 EXPECT_EQ(interned_str.id(), same_interned_str.id()); in TEST()
117 EXPECT_NE(interned_str.id(), other_interned_str.id()); in TEST()
123 Interned<std::string> interned_str = interner.Intern("foo"); in TEST() local
126 ASSERT_EQ(interned_str.id() + 1, other_interned_str.id()); in TEST()