Lines Matching defs:value
413 std::string value;
416 value = arg.substr(equals_index + 1);
417 if (value.empty()) {
427 value = args.pop_first();
429 if (!value.empty() && value[0] == '-') {
433 if (!value.empty() && value[0] == '\\' && value[1] == '-')
434 value = value.substr(1); // Treat \- as escaping an -.
444 *Lookup<int64_t>(info.field, options) = std::atoll(value.c_str());
448 std::strtoull(value.c_str(), nullptr, 10);
451 *Lookup<std::string>(info.field, options) = value;
455 ->emplace_back(std::move(value));
459 ->Update(SplitHostPort(value, errors));