Lines Matching defs:options
167 void* LookupImpl(Options* options) const override {
168 return original->LookupImpl((options->*get_child)());
286 Options* const options,
310 // Only allow --foo=bar notation for options starting with double dashes.
329 // Normalize by replacing `_` with `-` in options.
386 // Implications for negated options are defined with "--no-".
394 *imp->second.target_field->template Lookup<bool>(options) =
407 // Some V8 options can be negated and they are validated by V8 later.
441 *Lookup<bool>(info.field, options) = !is_negation;
444 *Lookup<int64_t>(info.field, options) = std::atoll(value.c_str());
447 *Lookup<uint64_t>(info.field, options) =
451 *Lookup<std::string>(info.field, options) = value;
454 Lookup<std::vector<std::string>>(info.field, options)
458 Lookup<HostPort>(info.field, options)
470 options->CheckOptions(errors, orig_args);