Lines Matching refs:shortName

222 #define DEFINE_bool2(name, shortName, defaultValue, helpString)             \  argument
225 TO_STRING(shortName),\
250 #define DEFINE_string2(name, shortName, defaultValue, helpString) \ argument
253 TO_STRING(shortName), \
270 #define DEFINE_int32_2(name, shortName, defaultValue, helpString) \ argument
273 TO_STRING(shortName), \
288 #define DEFINE_uint32_2(name, shortName, defaultValue, helpString) \ argument
291 TO_STRING(shortName),\
333 static bool CreateBoolFlag(const char* name, const char* shortName, bool* pBool, in CreateBoolFlag() argument
335 SkFlagInfo* info = new SkFlagInfo(name, shortName, kBool_FlagType, helpString, nullptr); in CreateBoolFlag()
347 static bool CreateStringFlag(const char* name, const char* shortName,
363 static bool CreateIntFlag(const char* name, const char* shortName, int32_t* pInt, in CreateIntFlag() argument
365 SkFlagInfo* info = new SkFlagInfo(name, shortName, kInt_FlagType, helpString, nullptr); in CreateIntFlag()
382 static bool CreateUintFlag(const char* name, const char* shortName, uint32_t* pUint, in CreateUintFlag() argument
384 SkFlagInfo* info = new SkFlagInfo(name, shortName, kUint_FlagType, helpString, nullptr); in CreateUintFlag()
470 const SkString& shortName() const { return fShortName; } in shortName() function
517 SkFlagInfo(const char* name, const char* shortName, FlagTypes type, const char* helpString, in SkFlagInfo() argument
520 , fShortName(shortName) in SkFlagInfo()
536 SkASSERT(nullptr == shortName || 1 == strlen(shortName)); in SkFlagInfo()