| 321 | BENCHMARK(BM_Utf8CodePointCount_Cord_AsciiTen); |
| 322 | |
| 323 | void BM_Utf8CodePointCount_String_JapaneseTen(benchmark::State& state) { |
| 324 | for (auto s : state) { |
| 325 | benchmark::DoNotOptimize(Utf8CodePointCount( |
| 326 | "\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa" |
| 327 | "\x9e\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e\xe6\x97\xa5")); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | BENCHMARK(BM_Utf8CodePointCount_String_JapaneseTen); |
| 332 |
nothing calls this directly
no test coverage detected