Lines Matching refs:field
349 bool Options::*field,
354 uint64_t Options::*field,
358 int64_t Options::*field,
362 std::string Options::*field,
366 std::vector<std::string> Options::*field,
370 HostPort Options::*field,
433 // Represents a field within `Options`.
445 // Represents a field of type T within `Options` that can be looked up
446 // as a C++ member field.
450 explicit SimpleOptionField(T Options::* field) : field_(field) {}
460 inline T* Lookup(std::shared_ptr<BaseOptionField> field,
462 return field->template Lookup<T>(options);
471 std::shared_ptr<BaseOptionField> field;