Home | History | Annotate | Download | only in strings

Lines Matching defs:out

21 static void StringAppendVTestHelper(std::string* out, const char* format, ...) {
24 StringAppendV(out, format, ap);
91 std::string out;
92 SStringPrintf(&out, "%s", src);
93 EXPECT_STREQ(src, out.c_str());
113 std::string out;
114 SStringPrintf(&out, fmt, src, src, src, src, src, src, src);
124 EXPECT_STREQ(ref, out.c_str());
129 std::string out;
130 StringAppendVTestHelper(&out, "%d foo %s", 1, "bar");
131 EXPECT_EQ("1 foo bar", out);
147 std::string out;
148 SStringPrintf(&out, "%s", src);
150 EXPECT_STREQ(src, out.c_str());
162 std::wstring out;
163 SStringPrintf(&out, L"%ls", invalid);
165 EXPECT_STREQ(invalid, out.c_str());
167 EXPECT_STREQ(L"", out.c_str());
177 std::string out;
178 StringAppendVTestHelper(&out, "%d foo %s", 1, "bar");