Searched refs:ProgramName (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DExecutionUtils.cpp25 Optional<StringRef> ProgramName) {
29 ArgVStorage.reserve(Args.size() + (ProgramName ? 1 : 0));
30 ArgV.reserve(Args.size() + 1 + (ProgramName ? 1 : 0));
32 if (ProgramName) {
33 ArgVStorage.push_back(std::make_unique<char[]>(ProgramName->size() + 1));
34 llvm::copy(*ProgramName, &ArgVStorage.back()[0]);
35 ArgVStorage.back()[ProgramName->size()] = '\0';
47 return Main(Args.size() + !!ProgramName, ArgV.data());
24 runAsMain(int (*Main)(int, char *[]), ArrayRef<std::string> Args, Optional<StringRef> ProgramName) argument
/freebsd-13-stable/usr.sbin/cron/cron/
H A Dcron.h289 char *ProgramName, variable
307 *ProgramName,
H A Dcron.c109 ProgramName = argv[0];
/freebsd-13-stable/usr.sbin/cron/lib/
H A Dmisc.c453 openlog(ProgramName, LOG_PID, LOG_CRON);
455 openlog(ProgramName, LOG_PID);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp150 std::string ProgramName; member in class:__anon3779::CommandLineParser
182 errs() << ProgramName << ": CommandLine Error: Option '" << Name
217 errs() << ProgramName << ": CommandLine Error: Option '" << O->ArgStr
333 errs() << ProgramName << ": CommandLine Error: Option '" << O->ArgStr
401 ProgramName.clear();
1358 ProgramName = std::string(sys::path::filename(StringRef(argv[0])));
1425 *Errs << ProgramName << ": CommandLine Error: Option '" << Opt->ArgStr
1528 *Errs << ProgramName << ": Unknown command line argument '" << argv[i]
1533 *Errs << ProgramName << ": Did you mean '"
1564 *Errs << ProgramName
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutionUtils.h46 /// If the optional ProgramName argument is given then it will be inserted
53 Optional<StringRef> ProgramName = None);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DDriver.h377 void ParseDriverMode(StringRef ProgramName, ArrayRef<const char *> Args);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DSignals.inc731 StringRef ProgramName;
740 ProgramName = path::filename(MainExecutableName.c_str());
757 FindWERKey(Twine(LocalDumpsRegistryLocation) + "\\" + ProgramName));
786 Twine(DumpDirectory) + "\\" + ProgramName + ".%%%%%%.dmp", FD,
790 fs::createTemporaryFile(ProgramName, "dmp", FD, DumpPath))
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp340 static const char *ProgramName; variable
343 errs() << ProgramName << ": error: " << Msg << "\n";
957 ProgramName = argv[0];
/freebsd-13-stable/usr.sbin/cron/crontab/
H A Dcrontab.c94 ProgramName = argv[0];
/freebsd-13-stable/contrib/llvm-project/llvm/tools/opt/
H A Dopt.cpp516 TimeTracerRAII(StringRef ProgramName) { argument
518 timeTraceProfilerInitialize(TimeTraceGranularity, ProgramName);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp162 void Driver::ParseDriverMode(StringRef ProgramName, argument
165 ClangNameParts = ToolChain::getTargetAndModeFromProgramName(ProgramName);

Completed in 154 milliseconds