Home
last modified time | relevance | path

Searched refs:shortName (Results 1 - 25 of 45) sorted by relevance

12

/third_party/skia/tools/flags/
H A DCommandLineFlags.h200 // bool 2 allows specifying a short name. No check is done to ensure that shortName
202 #define DEFINE_bool2(name, shortName, defaultValue, helpString) \
205 TO_STRING(name), TO_STRING(shortName), &FLAGS_##name, defaultValue, helpString)
218 // string2 allows specifying a short name. There is an assert that shortName
220 #define DEFINE_string2(name, shortName, defaultValue, helpString) \
223 TO_STRING(shortName), \
236 #define DEFINE_int_2(name, shortName, defaultValue, helpString) \
239 TO_STRING(name), TO_STRING(shortName), &FLAGS_##name, defaultValue, helpString)
266 * @param shortName Short version (one character) of the name of the flag. This name can
267 * be referenced on the command line as "-shortName" t
273 CreateBoolFlag(const char* name, const char* shortName, bool* pBool, bool defaultValue, const char* helpString) CreateBoolFlag() argument
310 CreateIntFlag(const char* name, const char* shortName, int* pInt, int defaultValue, const char* helpString) CreateIntFlag() argument
395 const SkString& shortName() const { return fShortName; } shortName() function in SkFlagInfo
425 SkFlagInfo(const char* name, const char* shortName, FlagTypes type, const char* helpString, const char* extendedHelpString) SkFlagInfo() argument
[all...]
H A DCommandLineFlags.cpp17 const char* shortName, in CreateStringFlag()
23 new SkFlagInfo(name, shortName, kString_FlagType, helpString, extendedHelpString); in CreateStringFlag()
189 const SkString& shortName = flag->shortName(); in print_help_for_flag() local
190 if (shortName.size() > 0) { in print_help_for_flag()
191 SkDebugf(" or -%s", shortName.c_str()); in print_help_for_flag()
265 flag->shortName().equals(helpFlags[k])) { in Parse()
16 CreateStringFlag(const char* name, const char* shortName, CommandLineFlags::StringArray* pStrings, const char* defaultValue, const char* helpString, const char* extendedHelpString) CreateStringFlag() argument
/third_party/popt/src/
H A Dpopthelp.c39 if (key->shortName == '?') in displayArgs()
143 for (; opt->longName || opt->shortName || opt->arg; opt++) { in getTableTranslationDomain()
293 /* Display shortName iff printable non-space. */ in singleOptionHelp()
294 int prtshort = (int)(isprint((int)opt->shortName) && opt->shortName != ' '); in singleOptionHelp()
317 left[1] = opt->shortName; in singleOptionHelp()
321 left[1] = opt->shortName; in singleOptionHelp()
496 while (opt->longName || opt->shortName || opt->arg) { in maxArgWidth()
554 if ((opt->longName || opt->shortName) && !F_ISSET(opt, DOC_HIDDEN)) in itemHelp()
582 for (opt = table; opt->longName || opt->shortName || op in singleTableHelp()
[all...]
H A Dpopt.c75 for (; opt->longName || opt->shortName || opt->arg; opt++) { in invokeCallbacksPRE()
95 for (; opt->longName || opt->shortName || opt->arg; opt++) { in invokeCallbacksPOST()
121 for (; opt->longName || opt->shortName || opt->arg; opt++) { in invokeCallbacksOPTION()
138 if ((myOpt->shortName && opt->shortName && shorty && in invokeCallbacksOPTION()
139 myOpt->shortName == opt->shortName) in invokeCallbacksOPTION()
238 /* Only one of longName, shortName should be set, not both. */
240 const char * longName, char shortName) in handleExec()
253 else if (shortName ! in handleExec()
239 handleExec(poptContext con, const char * longName, char shortName) handleExec() argument
333 handleAlias(poptContext con, const char * longName, size_t longNameLen, char shortName, const char * nextArg) handleAlias() argument
553 findOption(const struct poptOption * opt, const char * longName, size_t longNameLen, char shortName, poptCallbackType * callback, const void ** callbackData, unsigned int argInfo) findOption() argument
[all...]
H A Dpopt.h113 char shortName; /*!< may be '\0' */ member
126 char shortName; /*!< may be NUL */ member
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeCommandLine.hpp58 const char* shortName; member
70 : shortName (shortName_) in Option()
82 : shortName (shortName_) in Option()
94 : shortName (shortName_) in Option()
107 : shortName (shortName_) in Option()
269 const char* shortName; member
285 : shortName (DE_NULL) in OptInfo()
377 opt.shortName = option.shortName; in addOption()
H A DdeCommandLine.cpp130 DE_ASSERT(opt.shortName || opt.longName); in parse()
132 if (opt.shortName) in parse()
134 DE_ASSERT(shortOptMap.find(opt.shortName) == shortOptMap.end()); in parse()
135 shortOptMap[opt.shortName] = &opt; in parse()
252 if (opt.shortName) in help()
253 str << "-" << opt.shortName; in help()
255 if (opt.shortName && opt.longName) in help()
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Duoptions.h58 char shortName; /* 'f' for -f */ member
64 #define UOPTION_DEF(longName, shortName, hasArg) \
65 { longName, NULL, NULL, NULL, shortName, hasArg, 0 }
H A Duoptions.cpp82 if(c==options[j].shortName) { in u_parseArgs()
/third_party/icu/icu4c/source/tools/toolutil/
H A Duoptions.h58 char shortName; /* 'f' for -f */ member
64 #define UOPTION_DEF(longName, shortName, hasArg) \
65 { longName, NULL, NULL, NULL, shortName, hasArg, 0 }
H A Duoptions.cpp82 if(c==options[j].shortName) { in u_parseArgs()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Duoptions.h58 char shortName; /* 'f' for -f */ member
64 #define UOPTION_DEF(longName, shortName, hasArg) \
65 { longName, NULL, NULL, NULL, shortName, hasArg, 0 }
H A Duoptions.cpp82 if(c==options[j].shortName) { in u_parseArgs()
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/
H A DBenchmarkDatasetConfig.cs59 public BenchmarkDatasetConfig(string resource, string shortName = null) in BenchmarkDatasetConfig()
70 Name = shortName ?? dataset.Name; in BenchmarkDatasetConfig()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/
H A DUOption.java34 public char shortName; field in UOption
191 if(c==options[j].shortName) { in parseArgs()
267 shortName = aShortName; in UOption()
/third_party/node/deps/icu-small/source/tools/pkgdata/
H A Dpkgdata.cpp352 options[i].shortName, in main()
377 o.shortName = options[NAME].value; in main()
379 int32_t len = (int32_t)uprv_strlen(o.shortName); in main()
384 if (*(sp = o.shortName)) { in main()
398 o.libName = o.shortName; in main()
588 if (o->shortName != nullptr) { in pkg_executeOptions()
590 uprv_strcat(targetDir, o->shortName); in pkg_executeOptions()
610 uprv_strcpy(datFileName, o->shortName); in pkg_executeOptions()
1658 createCommonDataFile(o->tmpDir, o->shortName, o->entryName, nullptr, o->srcDir, o->comment, o->fileListFiles->str, 0, true, o->verbose, gencmnFile); in pkg_createWithoutAssemblyCode()
1714 o->shortName, in pkg_createWithoutAssemblyCode()
[all...]
H A Dpkgtypes.h113 const char *shortName; /* name of what we're building */ member
126 const char *libName; /* name for library (default: shortName) */
/third_party/icu/icu4c/source/tools/pkgdata/
H A Dpkgdata.cpp352 options[i].shortName, in main()
377 o.shortName = options[NAME].value; in main()
379 int32_t len = (int32_t)uprv_strlen(o.shortName); in main()
384 if (*(sp = o.shortName)) { in main()
398 o.libName = o.shortName; in main()
585 if (o->shortName != NULL) { in pkg_executeOptions()
587 uprv_strcat(targetDir, o->shortName); in pkg_executeOptions()
607 uprv_strcpy(datFileName, o->shortName); in pkg_executeOptions()
1655 createCommonDataFile(o->tmpDir, o->shortName, o->entryName, NULL, o->srcDir, o->comment, o->fileListFiles->str, 0, true, o->verbose, gencmnFile); in pkg_createWithoutAssemblyCode()
1711 o->shortName, in pkg_createWithoutAssemblyCode()
[all...]
H A Dpkgtypes.h113 const char *shortName; /* name of what we're building */ member
126 const char *libName; /* name for library (default: shortName) */
/third_party/skia/third_party/externals/icu/source/tools/pkgdata/
H A Dpkgdata.cpp352 options[i].shortName, in main()
377 o.shortName = options[NAME].value; in main()
379 int32_t len = (int32_t)uprv_strlen(o.shortName); in main()
384 if (*(sp = o.shortName)) { in main()
398 o.libName = o.shortName; in main()
585 if (o->shortName != NULL) { in pkg_executeOptions()
587 uprv_strcat(targetDir, o->shortName); in pkg_executeOptions()
607 uprv_strcpy(datFileName, o->shortName); in pkg_executeOptions()
1655 createCommonDataFile(o->tmpDir, o->shortName, o->entryName, NULL, o->srcDir, o->comment, o->fileListFiles->str, 0, TRUE, o->verbose, gencmnFile); in pkg_createWithoutAssemblyCode()
1711 o->shortName, in pkg_createWithoutAssemblyCode()
[all...]
H A Dpkgtypes.h113 const char *shortName; /* name of what we're building */ member
126 const char *libName; /* name for library (default: shortName) */
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DDataDrivenUScriptTest.java317 String shortName = UScript.getShortName(testCode); in TestGetShortName()
318 if (!expected.equals(shortName)) { in TestGetShortName()
319 errln("Error testing UScript.getShortName(). Got: " + shortName + " Expected: " + expected); in TestGetShortName()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DDataDrivenUScriptTest.java320 String shortName = UScript.getShortName(testCode); in TestGetShortName()
321 if (!expected.equals(shortName)) { in TestGetShortName()
322 errln("Error testing UScript.getShortName(). Got: " + shortName + " Expected: " + expected); in TestGetShortName()
/third_party/ffmpeg/libpostproc/
H A Dpostprocess_internal.h85 const char *shortName; member
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_xmp_sdk.h68 const char * shortName; member

Completed in 19 milliseconds

12