Lines Matching refs:set
39 * which will initially be set to false, and can be set to true by using the
40 * flag "--boolean" on the commandline. "--noboolean" will set FLAGS_boolean
41 * to false. FLAGS_boolean can also be set using "--boolean=true" or
63 * These flags can be set by specifying, for example, "--integer 7" and
106 * Call to set the help message to be displayed. Should be called before
151 void set(int i, const char* str) {
156 fStrings[i].set(str);
165 void append(const char* string) { fStrings.push_back().set(string); }
167 void append(const char* string, size_t length) { fStrings.push_back().set(string, length); }
265 * be referenced on the command line as "--name" to set the value of this flag.
267 * be referenced on the command line as "-shortName" to set the value of this flag.
268 * @param p<Type> Pointer to a global variable which holds the value set by CommandLineFlags.
270 * be set to this value initially. This is also displayed as part of the help output.
336 * For a boolean flag, also sets the value, since a boolean flag can be set in a number of ways