Home
last modified time | relevance | path

Searched refs:ProgName (Results 1 – 8 of 8) sorted by relevance

/NextBSD/contrib/llvm/lib/LineEditor/
HDLineEditor.cpp22 std::string LineEditor::getDefaultHistoryPath(StringRef ProgName) { in getDefaultHistoryPath() argument
25 sys::path::append(Path, "." + ProgName + "-history"); in getDefaultHistoryPath()
193 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, in LineEditor() argument
195 : Prompt((ProgName + "> ").str()), HistoryPath(HistoryPath), in LineEditor()
198 this->HistoryPath = getDefaultHistoryPath(ProgName); in LineEditor()
206 Data->EL = ::el_init(ProgName.str().c_str(), In, Out, Err); in LineEditor()
281 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, in LineEditor() argument
283 : Prompt((ProgName + "> ").str()), Data(new InternalData) { in LineEditor()
/NextBSD/contrib/llvm/tools/llvm-mc/
HDllvm-mc.cpp190 static const Target *GetTarget(const char *ProgName) { in GetTarget() argument
201 errs() << ProgName << ": " << Error; in GetTarget()
342 static int AssembleInput(const char *ProgName, const Target *TheTarget, in AssembleInput() argument
352 errs() << ProgName in AssembleInput()
390 const char *ProgName = argv[0]; in main() local
391 const Target *TheTarget = GetTarget(ProgName); in main()
401 errs() << ProgName << ": " << EC.message() << '\n'; in main()
423 errs() << ProgName in main()
443 errs() << ProgName << ": Dwarf version " << DwarfVersion in main()
527 Res = AssembleInput(ProgName, TheTarget, SrcMgr, Ctx, *Str, *MAI, *STI, in main()
/NextBSD/contrib/llvm/tools/llvm-profdata/
HDllvm-profdata.cpp254 StringRef ProgName(sys::path::filename(argv[0])); in main() local
264 std::string Invocation(ProgName.str() + " " + argv[1]); in main()
274 << "USAGE: " << ProgName << " <command> [args...]\n" in main()
275 << "USAGE: " << ProgName << " <command> -help\n\n" in main()
282 errs() << ProgName << ": No command specified!\n"; in main()
284 errs() << ProgName << ": Unknown command!\n"; in main()
286 errs() << "USAGE: " << ProgName << " <merge|show> [args...]\n"; in main()
/NextBSD/contrib/llvm/tools/clang/tools/driver/
HDdriver.cpp209 static const DriverSuffix *FindDriverSuffix(StringRef ProgName) { in FindDriverSuffix() argument
229 if (ProgName.endswith(DriverSuffixes[i].Suffix)) in FindDriverSuffix()
244 std::string ProgName =llvm::sys::path::stem(ArgVector[0]); in ParseProgName() local
247 ProgName = StringRef(ProgName).lower(); in ParseProgName()
250 StringRef ProgNameRef = ProgName; in ParseProgName()
/NextBSD/contrib/llvm/include/llvm/LineEditor/
HDLineEditor.h33 LineEditor(StringRef ProgName, StringRef HistoryPath = "", FILE *In = stdin,
45 static std::string getDefaultHistoryPath(StringRef ProgName);
/NextBSD/contrib/llvm/lib/Support/
HDSourceMgr.cpp335 void SMDiagnostic::print(const char *ProgName, raw_ostream &S, bool ShowColors, in print() argument
343 if (ProgName && ProgName[0]) in print()
344 S << ProgName << ": "; in print()
/NextBSD/contrib/llvm/include/llvm/Support/
HDSourceMgr.h279 void print(const char *ProgName, raw_ostream &S, bool ShowColors = true,
/NextBSD/contrib/llvm/tools/llc/
HDllc.cpp103 const char *ProgName) { in GetOutputStream() argument