Lines Matching refs:Format

18 struct Format : public FormatAdapter<int> {  struct
19 Format(int N) : FormatAdapter<int>(std::move(N)) {} in Format() argument
26 static_assert(uses_format_member<Format>::value, "");
27 static_assert(uses_format_member<Format &>::value, "");
28 static_assert(uses_format_member<Format &&>::value, "");
29 static_assert(uses_format_member<const Format>::value, "");
30 static_assert(uses_format_member<const Format &>::value, "");
31 static_assert(uses_format_member<const volatile Format>::value, "");
32 static_assert(uses_format_member<const volatile Format &>::value, "");
81 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
88 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
97 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
106 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
115 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
124 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
133 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
142 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
153 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
163 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
174 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
184 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
194 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
204 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
216 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
224 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
232 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
245 EXPECT_EQ(ReplacementType::Format, Replacements[0].Type); in TEST()
256 EXPECT_EQ(ReplacementType::Format, Replacements[2].Type); in TEST()
267 EXPECT_EQ(ReplacementType::Format, Replacements[4].Type); in TEST()
643 EXPECT_EQ("Format", formatv("{0}", Format(1)).str()); in TEST()
645 Format var(1); in TEST()