Home
last modified time | relevance | path

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

/external/llvm/lib/LineEditor/
DLineEditor.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()
/external/llvm/tools/llvm-mc/
Dllvm-mc.cpp187 static const Target *GetTarget(const char *ProgName) { in GetTarget() argument
198 errs() << ProgName << ": " << Error; in GetTarget()
319 static int AssembleInput(const char *ProgName, const Target *TheTarget, in AssembleInput() argument
329 errs() << ProgName in AssembleInput()
365 const char *ProgName = argv[0]; in main() local
366 const Target *TheTarget = GetTarget(ProgName); in main()
373 errs() << ProgName << ": " << EC.message() << '\n'; in main()
395 errs() << ProgName in main()
415 errs() << ProgName << ": Dwarf version " << DwarfVersion in main()
496 Res = AssembleInput(ProgName, TheTarget, SrcMgr, Ctx, *Str, *MAI, *STI, in main()
/external/llvm/tools/llvm-profdata/
Dllvm-profdata.cpp252 StringRef ProgName(sys::path::filename(argv[0])); in main() local
262 std::string Invocation(ProgName.str() + " " + argv[1]); in main()
272 << "USAGE: " << ProgName << " <command> [args...]\n" in main()
273 << "USAGE: " << ProgName << " <command> -help\n\n" in main()
280 errs() << ProgName << ": No command specified!\n"; in main()
282 errs() << ProgName << ": Unknown command!\n"; in main()
284 errs() << "USAGE: " << ProgName << " <merge|show> [args...]\n"; in main()
/external/clang/tools/driver/
Ddriver.cpp208 static const DriverSuffix *FindDriverSuffix(StringRef ProgName) { in FindDriverSuffix() argument
228 if (ProgName.endswith(DriverSuffixes[i].Suffix)) in FindDriverSuffix()
243 std::string ProgName =llvm::sys::path::stem(ArgVector[0]); in ParseProgName() local
246 ProgName = StringRef(ProgName).lower(); in ParseProgName()
249 StringRef ProgNameRef = ProgName; in ParseProgName()
/external/llvm/include/llvm/LineEditor/
DLineEditor.h33 LineEditor(StringRef ProgName, StringRef HistoryPath = "", FILE *In = stdin,
45 static std::string getDefaultHistoryPath(StringRef ProgName);
/external/llvm/lib/Fuzzer/
DFuzzerDriver.cpp59 static const char *ProgName; variable
62 std::cerr << "Usage: " << ProgName in PrintHelp()
187 ProgName = argv[0]; in FuzzerDriver()
/external/llvm/lib/Support/
DSourceMgr.cpp335 void SMDiagnostic::print(const char *ProgName, raw_ostream &S, in print() argument
343 if (ProgName && ProgName[0]) in print()
344 S << ProgName << ": "; in print()
/external/llvm/include/llvm/Support/
DSourceMgr.h279 void print(const char *ProgName, raw_ostream &S,
/external/llvm/tools/llc/
Dllc.cpp102 const char *ProgName) { in GetOutputStream() argument