Home | History | Annotate | Download | only in Support

Lines Matching refs:DESC

285 // desc - Modifier to set the description shown in the -help output...
286 struct desc {
287 const char *Desc;
288 desc(const char *Str) : Desc(Str) {}
289 void apply(Option &O) const { O.setDescription(Desc); }
295 const char *Desc;
296 value_desc(const char *Str) : Desc(Str) {}
297 void apply(Option &O) const { O.setValueStr(Desc); }
467 #define clEnumVal(ENUMVAL, DESC) #ENUMVAL, int(ENUMVAL), DESC
468 #define clEnumValN(ENUMVAL, FLAGNAME, DESC) FLAGNAME, int(ENUMVAL), DESC
484 ValuesClass(const char *EnumName, DataType Val, const char *Desc,
487 Values.push_back(std::make_pair(EnumName, std::make_pair(Val, Desc)));
508 const char *Desc, ...) {
510 va_start(ValueArgs, Desc);
511 ValuesClass<DataType> Vals(Arg, Val, Desc, ValueArgs);