| 544 | void Parse_Split_PCRE(benchmark::State& state) { Parse1Split(state, Parse1PCRE); } |
| 545 | void Parse_Split_RE2(benchmark::State& state) { Parse1Split(state, Parse1RE2); } |
| 546 | void Parse_Split_BitState(benchmark::State& state) { Parse1Split(state, Parse1BitState); } |
| 547 | |
| 548 | BENCHMARK(Parse_Split_NFA)->ThreadRange(1, NumCPUs()); |
| 549 | BENCHMARK(Parse_Split_OnePass)->ThreadRange(1, NumCPUs()); |
nothing calls this directly
no test coverage detected