Lines Matching defs:arg
123 std::optional<std::string> FindArgValue(const char* arg,
131 // if the previous argument matches `arg`, and after the above increment the
133 if (previous == arg && current != args.end()) {
143 for (auto arg : args) {
144 if (!arg.compare(0, prefix.size(), prefix)) {
145 auto value = arg.substr(prefix.size());
156 for (auto arg : args) {
157 if (!arg.compare(0, prefix.size(), prefix)) {
158 auto value = arg.substr(prefix.size());
308 for (auto& arg : crate.CompilerArgs()) {
314 base::EscapeJSONString(arg, false, &escaped_arg);