Lines Matching full:short_name
35 * @param short_name short form name e.g. -o
41 option_base(char const * option_name, char short_name,
132 option_imp(bool & value, char const * option_name, char short_name,
152 option_imp(int & value, char const * option_name, char short_name,
167 char short_name, char const * help_str,
190 char const * option_name, char short_name,
213 option::option(bool & value, char const * name, char short_name, char const * help)
214 : the_option(new option_imp<void>(value, name, short_name, help))
221 option::option(int & value, char const * name, char short_name,
224 (value, name, short_name, help, arg_help))
231 option::option(string & value, char const * name, char short_name,
234 (value, name, short_name, help, arg_help))
241 option::option(vector<string> & value, char const * name, char short_name,
244 (value, name, short_name, help, arg_help))
249 option_base::option_base(char const * name, char short_name,
254 poptOption const opt = { name, short_name, popt_flags,
263 option_imp<void>::option_imp(bool & val, char const * name, char short_name,
265 : option_base(name, short_name, help, 0, &popt_value, POPT_ARG_NONE),
282 option_imp<int>::option_imp(int & value, char const * name, char short_name,
284 : option_base(name, short_name, help, arg_help, &value, POPT_ARG_INT)
289 option_imp<string>::option_imp(string & val, char const * name, char short_name,
291 : option_base(name, short_name, help, arg_help,
308 char const * name, char short_name,
311 : option_base(name, short_name, help, arg_help,