Lines Matching defs:strategy
127 --repeated-pass-strategy=
134 - random: each time a fuzzer pass is requested, this strategy
251 } else if (0 == strncmp(cur_arg, "--repeated-pass-strategy=",
252 sizeof("--repeated-pass-strategy=") - 1)) {
253 std::string strategy = spvtools::utils::SplitFlagArgs(cur_arg).second;
254 if (strategy == "looped") {
257 } else if (strategy == "random") {
260 } else if (strategy == "simple") {
265 ss << "Unknown repeated pass strategy '" << strategy << "'"