Lines Matching full:helpstring
20 * DEFINE_bool(name, defaultValue, helpString);
21 * DEFINE_string(name, defaultValue, helpString);
22 * DEFINE_int32(name, defaultValue, helpString);
23 * DEFINE_double(name, defaultValue, helpString);
45 * The helpString will be printed if the help flag (-h or -help) is used.
195 #define DEFINE_bool(name, defaultValue, helpString) \
201 helpString)
205 #define DEFINE_bool2(name, shortName, defaultValue, helpString) \
211 helpString)
215 #define DEFINE_string(name, defaultValue, helpString) \
221 helpString, nullptr)
222 #define DEFINE_extended_string(name, defaultValue, helpString, extendedHelpString) \
228 helpString, \
233 #define DEFINE_string2(name, shortName, defaultValue, helpString) \
239 helpString, nullptr)
246 #define DEFINE_int32(name, defaultValue, helpString) \
251 helpString)
253 #define DEFINE_int32_2(name, shortName, defaultValue, helpString) \
259 helpString)
263 #define DEFINE_double(name, defaultValue, helpString) \
268 helpString)
294 * @param helpString Explanation of what this flag changes in the program.
297 bool defaultValue, const char* helpString) {
298 SkFlagInfo* info = new SkFlagInfo(name, shortName, kBool_FlagType, helpString, nullptr);
312 const char* defaultValue, const char* helpString,
319 int32_t defaultValue, const char* helpString) {
320 SkFlagInfo* info = new SkFlagInfo(name, nullptr, kInt_FlagType, helpString, nullptr);
327 int32_t defaultValue, const char* helpString) {
328 SkFlagInfo* info = new SkFlagInfo(name, shortName, kInt_FlagType, helpString, nullptr);
338 double defaultValue, const char* helpString) {
339 SkFlagInfo* info = new SkFlagInfo(name, nullptr, kDouble_FlagType, helpString, nullptr);
448 SkFlagInfo(const char* name, const char* shortName, FlagTypes type, const char* helpString,
453 , fHelpString(helpString)