Lines Matching full:defaultvalue
20 * DEFINE_bool(name, defaultValue, helpString);
21 * DEFINE_string(name, defaultValue, helpString);
22 * DEFINE_int32(name, defaultValue, helpString);
23 * DEFINE_double(name, defaultValue, helpString);
195 #define DEFINE_bool(name, defaultValue, helpString) \
200 defaultValue, \
205 #define DEFINE_bool2(name, shortName, defaultValue, helpString) \
210 defaultValue, \
215 #define DEFINE_string(name, defaultValue, helpString) \
220 defaultValue, \
222 #define DEFINE_extended_string(name, defaultValue, helpString, extendedHelpString) \
227 defaultValue, \
233 #define DEFINE_string2(name, shortName, defaultValue, helpString) \
238 defaultValue, \
246 #define DEFINE_int32(name, defaultValue, helpString) \
250 defaultValue, \
253 #define DEFINE_int32_2(name, shortName, defaultValue, helpString) \
258 defaultValue, \
263 #define DEFINE_double(name, defaultValue, helpString) \
267 defaultValue, \
292 * @param defaultValue The default value of this flag. The variable pointed to by p<Type> will
297 bool defaultValue, const char* helpString) {
300 *info->fBoolValue = info->fDefaultBool = defaultValue;
307 * @param defaultValue Thise default will be parsed so that strings separated by spaces
312 const char* defaultValue, const char* helpString,
319 int32_t defaultValue, const char* helpString) {
322 *info->fIntValue = info->fDefaultInt = defaultValue;
327 int32_t defaultValue, const char* helpString) {
330 *info->fIntValue = info->fDefaultInt = defaultValue;
338 double defaultValue, const char* helpString) {
341 *info->fDoubleValue = info->fDefaultDouble = defaultValue;
411 SkString defaultValue() const {