Home | History | Annotate | Download | only in primitives

Lines Matching refs:title

27     " Overrides are specified as \"title=option text\" for choices and "
28 "\"title=value\" for regular inputs. Note that the program will stop if "
40 InputBuilder::InputBuilder(const std::string& title,
44 override_registry_(override_registry), default_value_(""), title_(title) {
137 bool OverrideRegistry::HasOverrideFor(const std::string& title) const {
138 return overrides_.find(title) != overrides_.end();
142 const std::string& title) const {
143 assert(HasOverrideFor(title));
144 return (*overrides_.find(title)).second;
147 InputBuilder TypedInput(const std::string& title) {
150 title, new AcceptAllNonEmptyValidator(), override_registry_);