Lines Matching refs:shortName
205 #define DEFINE_bool2(name, shortName, defaultValue, helpString) \ argument
208 TO_STRING(shortName),\
233 #define DEFINE_string2(name, shortName, defaultValue, helpString) \ argument
236 TO_STRING(shortName), \
253 #define DEFINE_int32_2(name, shortName, defaultValue, helpString) \ argument
256 TO_STRING(shortName), \
296 static bool CreateBoolFlag(const char* name, const char* shortName, bool* pBool, in CreateBoolFlag() argument
298 SkFlagInfo* info = new SkFlagInfo(name, shortName, kBool_FlagType, helpString, nullptr); in CreateBoolFlag()
310 static bool CreateStringFlag(const char* name, const char* shortName,
326 static bool CreateIntFlag(const char* name, const char* shortName, int32_t* pInt, in CreateIntFlag() argument
328 SkFlagInfo* info = new SkFlagInfo(name, shortName, kInt_FlagType, helpString, nullptr); in CreateIntFlag()
406 const SkString& shortName() const { return fShortName; } in shortName() function
448 SkFlagInfo(const char* name, const char* shortName, FlagTypes type, const char* helpString, in SkFlagInfo() argument
451 , fShortName(shortName) in SkFlagInfo()
465 SkASSERT(nullptr == shortName || 1 == strlen(shortName)); in SkFlagInfo()