Lines Matching refs:vformat
406 EXPECT_EQ("42 and abc1 and 1.5", fmt::vformat("{} and {} and {}", store)); in TEST()
418 std::string result = fmt::vformat("{} and {} and {}", store); in TEST()
448 std::string result = fmt::vformat("{} and {} and {}", store); in TEST()
455 EXPECT_EQ("42", fmt::vformat("{a1}", store)); in TEST()
464 EXPECT_EQ("1234567890 and X234567890", fmt::vformat("{a1} and {a2}", store)); in TEST()
485 std::string result = fmt::vformat("{a1_} and {} and {} and {}", store); in TEST()
498 std::string result = fmt::vformat("{c1} and {c2} and {c_ref}", store); in TEST()
506 std::string result = fmt::vformat("{}", store); in TEST()
510 result = fmt::vformat("{} and {}", store); in TEST()
515 result = fmt::vformat("{}", store); in TEST()
524 std::string result = fmt::vformat("{a1} and {}", store); in TEST()
551 EXPECT_EQ(fmt::vformat("{}", store), "foo"); in TEST()