HomeSort by relevance Sort by last modified time
    Searched defs:ProgName (Results 1 - 3 of 3) sorted by null

  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 191 static const Target *GetTarget(const char *ProgName) {
202 errs() << ProgName << ": " << Error;
323 static int AssembleInput(const char *ProgName, const Target *TheTarget,
330 errs() << ProgName
364 const char *ProgName = argv[0];
365 const Target *TheTarget = GetTarget(ProgName);
371 errs() << ProgName << ": " << ec.message() << '\n';
465 Res = AssembleInput(ProgName, TheTarget, SrcMgr, Ctx, *Str, *MAI, *STI);
  /external/llvm/lib/Support/
SourceMgr.cpp 343 void SMDiagnostic::print(const char *ProgName, raw_ostream &S,
351 if (ProgName && ProgName[0])
352 S << ProgName << ": ";
CommandLine.cpp 463 /// from the caller (as PROGNAME) and its command-line arguments from
466 void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
469 assert(progName && "Program name not specified");
480 newArgv.push_back(strdup(progName));
549 // Copy the program name into ProgName, making sure not to overflow it.
550 std::string ProgName = sys::path::filename(argv[0]);
551 size_t Len = std::min(ProgName.size(), size_t(79));
552 memcpy(ProgramName, ProgName.data(), Len);
    [all...]

Completed in 577 milliseconds