Lines Matching defs:alpha
44 ImmutableString from_cstr("alpha");
46 CU_ASSERT(0 == strcmp("alpha", from_cstr.c_str()));
49 CU_ASSERT("alpha" == from_cstr);
50 CU_ASSERT(from_cstr == "alpha");
51 CU_ASSERT(std::string("alpha") == from_cstr);
52 CU_ASSERT(from_cstr == std::string("alpha"));
79 CU_ASSERT("alpha" == move);
128 std::string a = "alpha";
142 std::string alpha = "alpha";
144 StringRef ref(alpha);
146 CU_ASSERT("alpha" == ref);
147 CU_ASSERT(ref == "alpha");
148 CU_ASSERT(alpha == ref);
149 CU_ASSERT(ref == alpha);
153 auto from_lit = StringRef::from_lit("alpha");
155 CU_ASSERT("alpha" == from_lit);
197 std::string a = "alpha";