| 342 | BENCHMARK(BM_Utf8CodePointCount_Cord_JapaneseTen); |
| 343 | |
| 344 | void BM_Utf8IsValid_String_AsciiTen(benchmark::State& state) { |
| 345 | for (auto s : state) { |
| 346 | benchmark::DoNotOptimize(Utf8IsValid("0123456789")); |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | BENCHMARK(BM_Utf8IsValid_String_AsciiTen); |
| 351 |
nothing calls this directly
no test coverage detected