Searched refs:FormatCountCapture (Results 1 - 3 of 3) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | str_format_test.cc | 126 TEST_F(FormatEntryPointTest, FormatCountCapture) { in TEST_F() 128 EXPECT_EQ("", StrFormat("%n", FormatCountCapture(&n))); in TEST_F() 130 EXPECT_EQ("123", StrFormat("%d%n", 123, FormatCountCapture(&n))); in TEST_F() 150 StrFormat("%5d%n%10d%n", 1, FormatCountCapture(&n1), 2, in TEST_F() 151 FormatCountCapture(&n2))); in TEST_F() 159 StrAppendFormat(&s, "%s: %n%s\n", "(1,1)", FormatCountCapture(&n), "(1,2)"); in TEST_F()
|
H A D | str_format.h | 127 // FormatCountCapture 141 // absl::FormatCountCapture(&n)); 143 class FormatCountCapture { class 145 explicit FormatCountCapture(int* p) : p_(p) {} in FormatCountCapture() function in absl::FormatCountCapture 213 // `absl::FormatCountCapture` type. 239 // "%s%d%n", "hello", 123, absl::FormatCountCapture(&n));
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
H A D | arg.h | 39 class FormatCountCapture; 256 // until after FormatCountCapture is fully defined. 260 const FormatCountCapture& v, FormatConversionSpecImpl conv, in ConvertHelper() 262 const absl::enable_if_t<sizeof(T) != 0, FormatCountCapture>& v2 = v; in ConvertHelper() 275 const FormatCountCapture& v, FormatConversionSpecImpl conv, in FormatConvertImpl()
|
Completed in 4 milliseconds