Home
last modified time | relevance | path

Searched refs:HelpStr (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Support/
DCommandLine.cpp1131 errs() << HelpStr; // Be nice for positional arguments in error()
1178 static void printHelpStr(StringRef HelpStr, size_t Indent, in printHelpStr() argument
1180 std::pair<StringRef, StringRef> Split = HelpStr.split('\n'); in printHelpStr()
1191 printHelpStr(HelpStr, GlobalWidth, std::strlen(ArgStr) + 6); in printOptionInfo()
1220 printHelpStr(O.HelpStr, GlobalWidth, getOptionWidth(O)); in printOptionInfo()
1359 printHelpStr(O.HelpStr, GlobalWidth, std::strlen(O.ArgStr) + 6); in printOptionInfo()
1367 if (O.HelpStr[0]) in printOptionInfo()
1368 outs() << " " << O.HelpStr << '\n'; in printOptionInfo()
1531 outs() << " " << Opt->HelpStr; in operator =()
1536 outs() << " " << GlobalParser->ConsumeAfterOpt->HelpStr; in operator =()
/external/llvm/include/llvm/Support/
DCommandLine.h207 const char *HelpStr; // The descriptive text message for -help variable
235 void setDescription(const char *S) { HelpStr = S; } in setDescription()
250 AdditionalVals(0), ArgStr(""), HelpStr(""), ValueStr(""), in Option()
558 : Name(name), HelpStr(helpStr) {}
560 const char *HelpStr;
666 return Values[N].HelpStr;
694 void addLiteralOption(const char *Name, const DT &V, const char *HelpStr) {
696 OptionInfo X(Name, static_cast<DataType>(V), HelpStr);
/external/llvm/unittests/Support/
DCommandLineTest.cpp96 ASSERT_STREQ(Retrieved->HelpStr, Description) << in TEST()